Example #1
0
 public function do_form_submit()
 {
     controller::do_database_repair();
     parent::do_form_submit();
 }
Example #2
0
 public function get_view()
 {
     $html = node::create('div.container-fluid', [], node::create('h2.page-header', [], 'New Module') . node::create('p', [], 'Create a new module and nest it under a group.') . $this->module->get_admin_new_module_form());
     return $html;
 }
Example #3
0
 public function get_view()
 {
     $html = node::create('div', [], node::create('h2.page-header.container-fluid', [], 'View all ' . ucwords(get::__class_name($this->module->current)) . 's') . $this->module->get_inner());
     return $html;
 }