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


PHP Widget::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($config = [])
 {
     parent::__construct($config);
     if (!$this->transaction instanceof OrderTransaction) {
         $this->transaction = new OrderTransaction();
     }
 }
开发者ID:heartshare,项目名称:dotplant2,代码行数:7,代码来源:AbstractPayment.php

示例2: __construct

 public function __construct($config = [])
 {
     //by default both opengraph and microdata are enabled, disable if ['enable' => false] was explicitly passed to widget
     $config['og'] = array_merge($this->og, isset($config['og']) ? $config['og'] : []);
     $config['md'] = array_merge($this->md, isset($config['md']) ? $config['md'] : []);
     parent::__construct($config);
 }
开发者ID:kansey,项目名称:yii2albom,代码行数:7,代码来源:ImageX.php

示例3: __construct

 public function __construct($config = [])
 {
     $this->_config = $config;
     try {
         parent::__construct($config);
     } catch (WidgetMissedIdException $e) {
         throw $e;
     } catch (\Exception $e) {
         $this->processException($e);
     }
 }
开发者ID:gromver,项目名称:yii2-platform,代码行数:11,代码来源:Widget.php

示例4: __construct

 public function __construct($config = [])
 {
     if (count($config) > 0) {
         $this->action = empty($config['action']) ? \Yii::$app->controller->action->id : $config['action'];
         $this->selector = empty($config['selector']) ? 'ctype' : $config['selector'];
         $this->ctype = empty($config[$this->selector]) ? '' : $config[$this->selector];
     } else {
         $this->action = \Yii::$app->controller->action->id;
         $this->ctype = !empty(\Yii::$app->getRequest()->getQueryParam($this->selector)) ? \Yii::$app->getRequest()->getQueryParam($this->selector) : 'page';
     }
     parent::__construct();
     // TODO: Change the autogenerated stub
 }
开发者ID:giantbits,项目名称:yii2-crelish,代码行数:13,代码来源:ElementNav.php

示例5: __construct

 public function __construct(BuildingFinderInterface $buildingFinder, $config = [])
 {
     $this->buildingFinder = $buildingFinder;
     parent::__construct($config);
 }
开发者ID:iw-reload,项目名称:iw,代码行数:5,代码来源:ConstructionWidget.php

示例6: __construct

 public function __construct(BlogFinder $finder, $config = [])
 {
     $this->finder = $finder;
     parent::__construct($config);
 }
开发者ID:jarrus90,项目名称:yii2-blog,代码行数:5,代码来源:Sidebar.php


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