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


PHP Repository::__construct方法代码示例

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


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

示例1: __construct

 public function __construct(\Nette\Database\Context $database, ServerRepository $serverRepo, \ServerCommander $serverComm, UserRepository $userRepo, \FileModel $fileModel, \UUIDModel $uuidModel)
 {
     parent::__construct($database);
     $this->serverRepo = $serverRepo;
     $this->serverComm = $serverComm;
     $this->userRepo = $userRepo;
     $this->fileModel = $fileModel;
     $this->uuidModel = $uuidModel;
 }
开发者ID:VNovotna,项目名称:MP2014,代码行数:9,代码来源:PermissionRepository.php

示例2: __construct

 public function __construct($row = array())
 {
     parent::__construct($row = array());
     $this->list = array();
     $this->total = 0;
     /*
     		$this->id = (int)(isset($row['id']) ? $row['id'] : 0);
     		$this->username = (isset($row['username']) ? $row['username'] : "");
     		$this->password = (isset($row['password']) ? $row['password'] : "");
     */
 }
开发者ID:mrzarkovic,项目名称:logz,代码行数:11,代码来源:user.php

示例3:

 /**
  * Class constructor
  *
  */
 function __construct($repository, $triggered_by_handler = false)
 {
     parent::__construct();
     // check if we have neccessary resources
     if (instance_of($repository, 'Repository')) {
         $this->active_repository = $repository;
         $this->active_project = Projects::findById($repository->getProjectId());
     }
     // if
     $this->executable_path = with_slash(ConfigOptions::getValue('source_svn_path'));
     $config_dir = ConfigOptions::getValue('source_svn_config_dir');
     $this->config_dir = is_null($config_dir) ? '' : '--config-dir ' . $config_dir;
     $this->stderr2stdout = ConfigOptions::getValue('source_svn_use_output_redirect') == true ? "2>&1" : "";
     $this->trust_server_certificate = ConfigOptions::getValue('source_svn_trust_server_cert') == true ? '--trust-server-cert' : '';
     $this->triggerred_by_handler = $triggered_by_handler;
 }
开发者ID:NaszvadiG,项目名称:activecollab_loc,代码行数:20,代码来源:subversion.class.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
 }
开发者ID:reideer,项目名称:inventario,代码行数:4,代码来源:UserRepository.php

示例5: __construct

 public function __construct(\Nette\Database\Context $context)
 {
     parent::__construct($this->_name, $context);
 }
开发者ID:dansilovsky,项目名称:calendar,代码行数:4,代码来源:BankHolidayRepository.php

示例6: __construct

 public function __construct(\Nette\Database\Context $connection)
 {
     parent::__construct($connection);
     $this->tableName = "topics";
 }
开发者ID:xHRo,项目名称:simpleForum,代码行数:5,代码来源:TopicsRepository.php

示例7: __construct

 public function __construct()
 {
     parent::__construct("todoentry");
 }
开发者ID:BrunnerLivio,项目名称:Bierbendiger,代码行数:4,代码来源:TodoEntryRepository.php

示例8: __construct

 public function __construct($row = array())
 {
     parent::__construct($row);
 }
开发者ID:mrzarkovic,项目名称:advokat,代码行数:4,代码来源:service.php

示例9: __construct

 /**
  * @inherit
  */
 public function __construct($name, Config $config)
 {
     parent::__construct($name, $config);
     $this->deleteEmptyDirs = $config->getOption('delete_empty_dirs') === true;
 }
开发者ID:jamesmoss,项目名称:flywheel,代码行数:8,代码来源:NestedRepository.php

示例10: __construct

 /**
  * Initialise les informations sur le depot.
  * @param Webos $webos Le webos.
  */
 public function __construct(\lib\Webos $webos)
 {
     //On appelle le constructeur parent
     parent::__construct($webos, '/etc/apt/');
 }
开发者ID:Tiger66639,项目名称:symbiose-raspberrypi,代码行数:9,代码来源:LocalRepository.class.php


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