本文整理匯總了PHP中FormUI::success方法的典型用法代碼示例。如果您正苦於以下問題:PHP FormUI::success方法的具體用法?PHP FormUI::success怎麽用?PHP FormUI::success使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類FormUI
的用法示例。
在下文中一共展示了FormUI::success方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: configure
public function configure()
{
$ui = new FormUI('staticfront');
$page = $ui->append('select', 'page', 'staticfront__page', _t('The page to show for the home page: ', 'staticfront'));
$page->options['none'] = _t('Show Normal Posts', 'staticfront');
foreach ($this->get_all_pages() as $post) {
$page->options[$post->slug] = $post->title;
}
$blog_index = $ui->append('text', 'blog_index', 'staticfront__blog_index', sprintf(_t('Show normal posts at this URL: <b>%s</b>', 'staticfront'), Site::get_url('habari', true)));
$blog_index->add_validator('validate_required');
$keep_pages = $ui->append('checkbox', 'keep_pages', 'staticfront__keep_pages', _t('Show static pages at base url: ', 'staticfront'));
$ui->append('submit', 'save', _t('Save'));
$ui->success(array($this, 'updated_config'));
return $ui;
}