當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SetupBlock類代碼示例

本文整理匯總了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);
 }
開發者ID:jackrabbitjoey,項目名稱:shimmie2,代碼行數:7,代碼來源:main.php

示例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);
 }
開發者ID:thelectronicnub,項目名稱:shimmie2,代碼行數:7,代碼來源:main.php

示例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);
 }
開發者ID:nsuan,項目名稱:shimmie2,代碼行數:7,代碼來源:main.php

示例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);
 }
開發者ID:JarJak,項目名稱:shimmie2,代碼行數:7,代碼來源:main.php

示例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);
 }
開發者ID:kmcasto,項目名稱:shimmie2,代碼行數:8,代碼來源:main.php

示例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());
 }
開發者ID:aleczhang,項目名稱:phpspock,代碼行數:12,代碼來源:SetupBlockTest.php

示例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);
     }
 }
開發者ID:nsuan,項目名稱:shimmie2,代碼行數:13,代碼來源:main.php

示例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);
         }
     }
 }
開發者ID:kmcasto,項目名稱:shimmie2,代碼行數:19,代碼來源:main.php

示例9: compileCode

 public function compileCode()
 {
     return '
     try {
         ' . parent::compileCode() . '
     } catch(\\Exception $e) {
         $__specification_Exception = $e;
     }
     ';
 }
開發者ID:aleczhang,項目名稱:phpspock,代碼行數:10,代碼來源:WhenBlock.php


注:本文中的SetupBlock類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。