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


PHP Finder::__construct方法代碼示例

本文整理匯總了PHP中Finder::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Finder::__construct方法的具體用法?PHP Finder::__construct怎麽用?PHP Finder::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Finder的用法示例。


在下文中一共展示了Finder::__construct方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * @param \Elastica_Index $index
  * @param Parameters $parameter
  */
 public function __construct(\Elastica_Index $index, Parameters $parameters)
 {
     $this->addColumn('name', t('Area name'), true, 'link');
     $this->addColumn('town', t('Town name'));
     $this->addColumn('canton', t('Canton'));
     $this->addColumn('user', t('User'));
     parent::__construct($index, 'area', $parameters);
 }
開發者ID:rettichschnidi,項目名稱:naturvielfalt,代碼行數:12,代碼來源:Areas.php

示例2: __construct

 /**
  * Constructor.
  *
  * @access  public
  * @param   int  $latency    Latency (in seconds).
  * @return  void
  */
 public function __construct($latency = null)
 {
     parent::__construct();
     $this->_on = new \Hoa\Core\Event\Listener($this, array('new', 'modify', 'move'));
     if (null !== $latency) {
         $this->setLatency($latency);
     }
     return;
 }
開發者ID:Hywan,項目名稱:File,代碼行數:16,代碼來源:Watcher.php

示例3: __construct

 /**
  * 構造函數
  */
 public function __construct()
 {
     parent::__construct();
     $this->isInited = false;
     $this->urls = array();
     $this->max = 3;
     $this->downloadPicture = false;
     foreach (self::EVENTS as $event) {
         $this->listeners[$event] = array();
     }
 }
開發者ID:leoding86,項目名稱:simple-collector,代碼行數:14,代碼來源:Collector.php

示例4: __construct

 /**
  * @param \Elastica_Index $index
  * @param Parameters $parameter
  */
 public function __construct(\Elastica_Index $index, Parameters $parameters)
 {
     $this->addColumn('name_la', t('Latin name'));
     $this->addColumn('name', t('German name'));
     $this->addColumn('user', t('User'));
     $this->addColumn('inventory', t('Inventory'), true, 'link', array($this, 'permission'));
     $this->addColumn('town', t('Town name'));
     $this->addColumn('canton', t('Canton'));
     $this->addColumn('date', t('Observation date'), true, 'date');
     $this->addColumn('redlist', t('Red list'), false, 'translate');
     Finder::__construct($index, 'sighting', $parameters);
 }
開發者ID:rettichschnidi,項目名稱:naturvielfalt,代碼行數:16,代碼來源:Sightings.php

示例5: __construct

 public function __construct($table = null)
 {
     parent::__construct('import_tmp');
 }
開發者ID:floxim,項目名稱:floxim,代碼行數:4,代碼來源:Import.php

示例6: __construct

 /**
  * @param \Elastica_Index $index
  * @param Parameters $parameter
  */
 public function __construct(\Elastica_Index $index, Parameters $parameters)
 {
     $this->addColumn('id', 'Default');
     parent::__construct($index, 'image', $parameters);
 }
開發者ID:rettichschnidi,項目名稱:naturvielfalt,代碼行數:9,代碼來源:Images.php


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