本文整理汇总了PHP中yii\base\Widget::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Widget::init方法的具体用法?PHP Widget::init怎么用?PHP Widget::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类yii\base\Widget
的用法示例。
在下文中一共展示了Widget::init方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init
/**
* @inheritdoc
*/
public function init()
{
parent::init();
if (!$this->header) {
$this->header = "<h2>" . Inflector::camel2words($this->model->formName()) . " change log:</h2>";
}
}
示例2: init
public function init()
{
parent::init();
if (!$this->items) {
throw new InvalidConfigException(\Yii::t('front', 'No required parameter given') . ' - items');
}
}
示例3: init
public function init()
{
parent::init();
// Exception IF params -> languages not defined
if (!isset(Yii::$app->params['languages'])) {
throw new \yii\base\InvalidConfigException("You must define Yii::\$app->params['languages'] array");
}
// Widget Type
if (!$this->widget_type) {
$this->widget_type = 'classic';
} else {
$this->widget_type = $this->widget_type;
}
// Image Type
if (!$this->image_type) {
$this->image_type = 'classic';
} else {
$this->image_type = $this->image_type;
}
// Widget Type
if (!$this->width) {
$this->width = '24';
} else {
$this->width = $this->width;
}
}
示例4: init
public function init()
{
parent::init();
ob_start();
$this->portletId = \Yii::$app->params['portlets'] + 1;
\Yii::$app->params['portlets'] = $this->portletId;
}
示例5: init
public function init()
{
if (!$this->dateStop) {
$this->dateStop = date('Y-m-d H:i:s');
}
return parent::init();
}
示例6: init
public function init()
{
parent::init();
if ($this->title === null) {
$this->title = 'title';
}
}
示例7: init
/**
* Initializes the widget.
*/
public function init()
{
parent::init();
$view = Yii::$app->getView();
$this->registerAssets();
$view->registerJs($this->getJs(), View::POS_END);
}
示例8: init
public function init()
{
parent::init();
$view = $this->getView();
$widgetId = $this->id;
if (isset($this->gridSettings['iconSet']) && $this->gridSettings['iconSet'] === 'fontAwesome') {
$useFontAwesome = true;
} else {
$useFontAwesome = false;
}
$this->jsonSettings = (YII_DEBUG ? JSON_PRETTY_PRINT : 0) | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_NUMERIC_CHECK;
$script = "jQuery(\"#jqGrid-{$widgetId}\").jqGrid({$this->prepareGridSettings($this->gridSettings)})";
if ($this->enablePager) {
$script .= PHP_EOL . ".navGrid('#jqGrid-pager-{$widgetId}', {$this->preparePagerSettings($this->pagerSettings)})";
}
if ($this->enableFilterToolbar) {
$script .= PHP_EOL . ".filterToolbar({$this->prepareToolbarSettings($this->filterToolbarSettings)})";
}
if ($this->enableColumnChooser) {
$buttonOptions = ['caption' => '', 'title' => new JsExpression('jQuery.jgrid.col.caption'), 'buttonicon' => $useFontAwesome ? 'fa fa-lg fa-fw fa-calculator' : 'ui-icon-calculator', 'onClickButton' => $this->enableHiddenColumnsOptimization ? new JsExpression("function() {\n jQuery(this).jqGrid('columnChooser', {\n done: function(perm) {\n if(perm) {\n this.jqGrid('remapColumns', perm, true);\n this.trigger('reloadGrid');\n }\n }\n });\n }") : new JsExpression("function(){jQuery(this).jqGrid('columnChooser');}")];
$buttonOptions = Json::encode($buttonOptions, $this->jsonSettings);
$script .= PHP_EOL . ".navButtonAdd('#jqGrid-pager-{$widgetId}', {$buttonOptions})";
}
if ($this->enableXMLExport) {
$buttonOptions = ['caption' => '', 'title' => 'Export to Excel XML', 'buttonicon' => $useFontAwesome ? 'fa fa-file-excel-o' : 'ui-icon-document', 'onClickButton' => new JsExpression("function(){jQuery.jgrid.XMLExport('{$widgetId}', 'ExcelXML.xml');}")];
$buttonOptions = Json::encode($buttonOptions, $this->jsonSettings);
$script .= PHP_EOL . ".navButtonAdd('#jqGrid-pager-{$widgetId}', {$buttonOptions})";
}
$view->registerJs($script, $view::POS_READY);
WidgetAsset::register($view);
}
示例9: init
public function init()
{
parent::init();
if (!$this->rowViewPath) {
$this->rowViewPath = '_row';
}
}
示例10: init
public function init()
{
parent::init();
if (empty($this->title) || empty($this->num)) {
throw new InvalidConfigException('SidePostTop config is error.');
}
}
示例11: init
/**
* Initializes the widget.
*/
public function init()
{
parent::init();
if (!isset($this->options['class'])) {
Html::addCssClass($this->options, 'dropdown');
}
}
示例12: init
public function init()
{
parent::init();
// if(!$this->label || !is_array($this->config)){
// throw new Exception('缺少参数或参数缺失');
// }
}
示例13: init
public function init()
{
parent::init();
$this->_inputStr = '<div class="form-group">';
if ($this->hasModel()) {
$this->_inputStr .= Html::activeLabel($this->model, $this->attribute);
} else {
$this->_inputStr .= Html::label($this->name);
}
$this->_inputStr .= '<div id="' . Html::encode($this->name) . '" class="input-group date">';
if ($this->hasModel()) {
$value = Html::getAttributeValue($this->model, $this->attribute);
} else {
$value = $this->value;
}
if ($value !== null) {
$value = Yii::$app->formatter->asDatetime($value);
}
$options = $this->options;
$options['class'] = 'form-control';
//$options['readonly'] = '';
$options['value'] = $value;
if ($this->hasModel()) {
$this->_inputStr .= Html::activeTextInput($this->model, $this->attribute, $options);
} else {
$this->_inputStr .= Html::textInput($this->name, $this->value, $options);
}
$this->_inputStr .= '<span class="input-group-addon">
<span class="glyphicon-calendar glyphicon"></span>
</span>
</div>
</div>
';
}
示例14: init
public function init()
{
parent::init();
if (empty($this->options)) {
Html::addCssClass($this->options, ['horizontal-menu']);
}
}
示例15: init
public function init()
{
parent::init();
if (empty($this->view)) {
$this->view = (new \ReflectionClass($this))->getShortName();
}
}