dreamhost_control_panel / branches / master / controllers / settings_controller.php

history
<?php

class SettingsController extends AppController {
	
	var $name = 'Settings';
	var $uses = array('Setting');
	
	function config() {
		if (!empty($this->data)) {
			if ($this->Setting->save($this->data)) {
				$this->redirect(array('controller' => 'crons', 'action' => 'setup'), null, false);
			}
		}
	}
}
?>