TRUE, ); /** * View/Update the site configuration */ public function action_edit() { $o = Company::instance()->so(); if ($this->request->post() AND $o->values($this->request->post())->changed() AND (! $this->save($o))) $o->reload(); Block::factory() ->title('Update Site Configuration') ->title_icon('fa fa-wrench') ->type('form-horizontal') ->body(View::factory('setup/admin/edit')->set('o',$o)); Block::factory() ->title('Update Module Configuration') ->title_icon('fa fa-wrench') ->type('form-horizontal') ->body(View::factory('setup/admin/module')->set('o',$o)->set('mid',NULL)); } } ?>