本文整理汇总了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;
}
';
}