当前位置: 首页>>代码示例>>PHP>>正文


PHP Base::init方法代码示例

本文整理汇总了PHP中Base::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Base::init方法的具体用法?PHP Base::init怎么用?PHP Base::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Base的用法示例。


在下文中一共展示了Base::init方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: init

 protected function init()
 {
     parent::init();
     $log = $this->getLog();
     $log->add("\n\n-----------------------Hello world service----------------------------");
     $log->flush();
 }
开发者ID:ZhuJingfa,项目名称:HuiLib,代码行数:7,代码来源:SampleModule.php

示例2: init

 public function init()
 {
     parent::init();
     if (!$this->refine) {
         $this->refine = [$this, 'refine'];
     }
 }
开发者ID:pahanini,项目名称:yii2-refiner,代码行数:7,代码来源:Match.php

示例3: init

 public function init()
 {
     parent::init();
     $this->tempFile = tempnam($this->tempPath, 'php-auto-update-');
     $this->archive = new \ZipArchive();
     $this->createZipFile();
 }
开发者ID:sam-it,项目名称:php-auto-update,代码行数:7,代码来源:Update.php

示例4: init

 /**
  * init 
  * 
  * @return void
  */
 public function init()
 {
     parent::init();
     $this->removeElement('userId');
     $this->getElement('submit')->setLabel($this->translate('register'));
     //$this->removeElement('role');
 }
开发者ID:GeeH,项目名称:zf2-sandbox,代码行数:12,代码来源:Register.php

示例5: init

 protected function init()
 {
     parent::init();
     if (! file_exists($this->http_load)) {
         $this->outln("File not found: '{$this->http_load}'.");
         exit(1);
     }
 }
开发者ID:pmjones,项目名称:php-framework-benchmarks,代码行数:8,代码来源:HttpLoad.php

示例6: init

 public function init()
 {
     parent::init();
     $this->addElement('text', 'title', array('required' => true, 'validators' => array(array('NotEmpty', true, array('messages' => 'Titre obligatoire'))), 'attribs' => array('class' => 'text medium')));
     $this->addElement('textarea', 'text', array('required' => true, 'validators' => array(array('NotEmpty', true, array('messages' => 'Contenu obligatoire'))), 'attribs' => array('class' => 'wysiwyg')));
     $this->addElement('hidden', 'filename', array('required' => true, 'validators' => array(array('UploadExists', true, array('messages' => 'Aperçu incorrect')), array('NotEmpty', true, array('messages' => 'Image obligatoire')))));
     $this->getElement('filename')->setDecorators(array(array('ViewScript', array('viewScript' => '_upload.phtml'))));
     $this->defaultFilters();
 }
开发者ID:nicolas-brousse,项目名称:lightMonitor,代码行数:9,代码来源:Setting_Server_Form.php

示例7: init

 /** @inheritdoc */
 public function init()
 {
     parent::init();
     if ($this->envFolder === null) {
         $this->envFolder = realpath(__DIR__ . '/../../environments');
     }
     if (!is_array($this->envDescription)) {
         $this->envDescription = [];
     }
 }
开发者ID:ekup,项目名称:yii2-installer,代码行数:11,代码来源:CreateStructure.php

示例8: init

 public function init()
 {
     parent::init();
     $this->sourceHash = $this->git('rev-parse', ['--verify', $this->source . '^{commit}']);
     $this->targetHash = $this->git('rev-parse', ['--verify', $this->target . '^{commit}']);
     if (!isset($this->sourceHash) || !isset($this->targetHash)) {
         throw new \Exception("Source or target commit not found.");
     }
     $this->initChanges();
 }
开发者ID:sam-it,项目名称:php-auto-update,代码行数:10,代码来源:Git.php

示例9: define

<?php

define('DEBUG', 1);
define('PATH', dirname(__FILE__));
require_once PATH . '/app/Core/autoload.php';
Base::init();
开发者ID:nytr0gen,项目名称:plur-music-explorer,代码行数:6,代码来源:index.php

示例10:

<?php

/*
Plugin Name: WP Plugin Base
Plugin URI: http://khaledsaikat.com
Description: Base files for creating new WordPress plugin
Author: Khaled Hossain
Version: 1.0-alpha
Author URI: http://khaledsaikat.com
*/
namespace PluginBase;

require __DIR__ . '/vendor/autoload.php';
Base::init(__FILE__);
Base::load_controllers();
开发者ID:khaledsaikat,项目名称:wp-plugin-base,代码行数:15,代码来源:init.php

示例11: init

 protected function init($account)
 {
     parent::init($account);
     $this->accumulator = 0;
 }
开发者ID:jschaedl,项目名称:bav,代码行数:5,代码来源:Iteration.php

示例12: init

 function init()
 {
     parent::init();
     $this->uid = cookie('adminUid');
     $this->uname = cookie('adminUser');
 }
开发者ID:sunkangtaichi,项目名称:PHPAPPLISTION_START,代码行数:6,代码来源:Login.php

示例13: shortcodes_to_exempt_from_wptexturize

<?php

require_once get_template_directory() . '/base/base.php';
require_once get_template_directory() . '/base/custom/config.php';
$theme = new Base();
$theme->init($theme_config);
add_filter('no_texturize_shortcodes', 'shortcodes_to_exempt_from_wptexturize');
function shortcodes_to_exempt_from_wptexturize($shortcodes)
{
    $shortcodes[] = 'accordions';
    $shortcodes[] = 'tabs';
    return $shortcodes;
}
开发者ID:ahoymehearties,项目名称:responsiblegamer,代码行数:13,代码来源:functions.php


注:本文中的Base::init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。