TRUE, ); /** * View/Update the site configuration */ public function action_edit() { $o = Company::instance()->so(); // Store our new values $o->values($_POST); // Run validation and save if ($o->changed()) if ($o->check() AND $o->save()) SystemMessage::factory() ->title('Record updated') ->type('success') ->body(_('Your setup record has been updated.')); Block::factory() ->title('Update Site Configuration') ->title_icon('icon-wrench') ->type('form-horizontal') ->body(View::factory('setup/admin/edit')->set('o',$o)); Block::factory() ->title('Update Module Configuration') ->title_icon('icon-wrench') ->type('form-horizontal') ->body(View::factory('setup/admin/module')->set('o',$o)->set('mid',NULL)); } } ?>