Ejemplo n.º 1
0
 function handler_admin_education_degree($page, $action = 'list', $id = null)
 {
     $page->setTitle('Administration - Niveau de formation');
     $page->assign('title', 'Gestion des niveau de formation');
     $table_editor = new PLTableEditor('admin/education_degree', 'profile_education_degree_enum', 'id');
     $table_editor->add_join_table('profile_education_degree', 'degreeid', true);
     $table_editor->add_join_table('profile_education', 'degreeid', true);
     $table_editor->describe('degree', 'niveau', true);
     $table_editor->apply($page, $action, $id);
 }