本文整理匯總了PHP中SetupBlock類的典型用法代碼示例。如果您正苦於以下問題:PHP SetupBlock類的具體用法?PHP SetupBlock怎麽用?PHP SetupBlock使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了SetupBlock類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: onSetupBuilding
public function onSetupBuilding(SetupBuildingEvent $event)
{
$sb = new SetupBlock("Banned Phrases");
$sb->add_label("One per line, lines that start with slashes are treated as regex<br/>");
$sb->add_longtext_option("banned_words");
$event->panel->add_block($sb);
}
示例2: onSetupBuilding
public function onSetupBuilding(SetupBuildingEvent $event)
{
$sb = new SetupBlock("Downtime");
$sb->add_bool_option("downtime", "Disable non-admin access: ");
$sb->add_longtext_option("downtime_message", "<br>");
$event->panel->add_block($sb);
}
示例3: onSetupBuilding
public function onSetupBuilding(SetupBuildingEvent $event)
{
$sb = new SetupBlock("Site Description");
$sb->add_text_option("site_description", "Description: ");
$sb->add_text_option("site_keywords", "<br>Keywords: ");
$event->panel->add_block($sb);
}
示例4: onSetupBuilding
public function onSetupBuilding(SetupBuildingEvent $event)
{
global $config;
$sb = new SetupBlock("Holiday Theme");
$sb->add_bool_option("holiday_aprilfools", "Enable April Fools");
$event->panel->add_block($sb);
}
示例5: onSetupBuilding
public function onSetupBuilding($event)
{
$sb = new SetupBlock("Archive Handler Options");
$sb->add_text_option("archive_tmp_dir", "Temporary folder: ");
$sb->add_text_option("archive_extract_command", "<br>Extraction command: ");
$sb->add_label("<br>%f for archive, %d for temporary directory");
$event->panel->add_block($sb);
}
示例6: compileCodeShouldCallExpressionTransformer
/**
* @test
*/
public function compileCodeShouldCallExpressionTransformer()
{
$transformer = \Mockery::mock('PhpSpock\\Specification\\ExpressionTransformer');
$transformer->shouldReceive('transform')->with('$foo = 1')->andReturn('baz');
$block = new SetupBlock();
$block->setExpressionTransformer($transformer);
$block->setExpressions(array('$foo = 1'));
$this->assertEquals('baz;', $block->compileCode());
}
示例7: receive_event
public function receive_event(Event $event)
{
if ($event instanceof TextFormattingEvent) {
$event->formatted = $this->filter($event->formatted);
$event->stripped = $this->filter($event->stripped);
}
if ($event instanceof SetupBuildingEvent) {
$sb = new SetupBlock("Word Filter");
$sb->add_longtext_option("word_filter");
$sb->add_label("<br>(each line should be search term and replace term, separated by a comma)");
$event->panel->add_block($sb);
}
}
示例8: receive_event
public function receive_event(Event $event)
{
global $config, $database, $page, $user;
if (is_null($this->theme)) {
$this->theme = get_theme_object($this);
}
if ($event instanceof SetupBuildingEvent) {
$sb = new SetupBlock("Downtime");
$sb->add_bool_option("downtime", "Disable non-admin access: ");
$sb->add_longtext_option("downtime_message", "<br>");
$event->panel->add_block($sb);
}
if ($event instanceof PageRequestEvent) {
if ($config->get_bool("downtime")) {
$this->check_downtime($event);
$this->theme->display_notification($page);
}
}
}
示例9: compileCode
public function compileCode()
{
return '
try {
' . parent::compileCode() . '
} catch(\\Exception $e) {
$__specification_Exception = $e;
}
';
}