PHP Classes

File: familytree/apps/frontend/views/person/person_menu.php

Recommend this page to a friend!
  Classes of Ssaurz Acharya   FedUni PHP Family Tree App   familytree/apps/frontend/views/person/person_menu.php   Download  
File: familytree/apps/frontend/views/person/person_menu.php
Role: Example script
Content type: text/plain
Description: Example script
Class: FedUni PHP Family Tree App
Manage and display a tree of family people
Author: By
Last change:
Date: 2 years ago
Size: 917 bytes
 

Contents

Class file image Download
<input type="button" value="All Person" id="all_person" name="all_person" onclick="location.href='http://localhost/familytree/person'"/>
<?php
$auth
= Registry::getObject("authentication");
if(
$auth->isLoggedIn() && $auth->isAdmin()):
?>
<input type="button" id="create_person_btn" name="create_person_btn" value="Create Person" onclick="location.href='http://localhost/familytree/person/create'"/>
    <input type="button" id="add_reln_btn" name="add_reln_btn" value="Add a Relationship" onclick="location.href='http://localhost/familytree/person/addrelation'"/>
<?php
endif;
?>
<input type="button" value="View All Grandparents" id="view_gp_btn" name="view_gp_btn" onclick="location.href='http://localhost/familytree/person/grandparents'"/>
<input type="button" value="Single Parent Child" id="view_sp_ch" name="view_sp_ch" onclick="location.href='http://localhost/familytree/person/onlyoneparent'"/>