本文整理汇总了PHP中SettingsForm::run方法的典型用法代码示例。如果您正苦于以下问题:PHP SettingsForm::run方法的具体用法?PHP SettingsForm::run怎么用?PHP SettingsForm::run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SettingsForm
的用法示例。
在下文中一共展示了SettingsForm::run方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
{
parent::MailForm();
$this->parseSettings('inc/app/devnotes/forms/settings/settings.php');
$this->widgets['notes']->setValues(array('on' => intl_get('On'), 'off' => intl_get('Off'), 'date' => intl_get('Until date')));
$this->widgets['submit_button']->setValues(intl_get('Save Changes'));
$this->widgets['notes_date']->setValue(date('Y-m-d'));
if (DEVNOTES === true) {
$this->widgets['notes']->setValue('on');
} elseif (DEVNOTES === false) {
$this->widgets['notes']->setValue('off');
} else {
$this->widgets['notes']->setValue('date');
$this->widgets['notes_date']->setValue(DEVNOTES);
}
$this->widgets['contact']->setValue(appconf('contact'));
$this->widgets['ignore_list']->setValue(join(', ', appconf('ignore')));
}
function onSubmit($vals)
{
// update devnotes_config table and respond
if ($vals['notes'] == 'date') {
$vals['notes'] = $vals['notes_date'];
}
db_execute('update devnotes_config set notes = ?, contact = ?, ignore_list = ?', $vals['notes'], $vals['contact'], $vals['ignore_list']);
header('Location: ' . site_prefix() . '/index/devnotes-admin-action');
exit;
}
}
$form = new SettingsForm();
echo $form->run();