Ejemplo n.º 1
0
 /**
  * Staff Profiles
  * 
  * @author David Stansfield
  */
 public function action_index()
 {
     // -- Get a list of staff
     // ----------------------
     $staffList = array();
     $staffList = Model_Employee::listStaff();
     $this->template->title = 'Staff List | Human Resources';
     $this->template->content = \View::forge('profiles/index', array('staffList' => $staffList));
 }