本文整理汇总了PHP中CSpan::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP CSpan::__construct方法的具体用法?PHP CSpan::__construct怎么用?PHP CSpan::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CSpan
的用法示例。
在下文中一共展示了CSpan::__construct方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($title, $class, $action = '')
{
parent::__construct(SPACE, $class . ' menu_icon shadow');
$this->attr('title', $title);
if (!empty($action)) {
$this->attr('onclick', 'javascript: ' . $action);
}
}
示例2: __construct
public function __construct($title = null)
{
parent::__construct();
$this->addClass('menu_icon');
$this->addClass('shadow');
if ($title !== null) {
$this->setAttribute('title', $title);
}
}
示例3: __construct
public function __construct($url = 'index.php', $side = null)
{
if (is_null($side)) {
$side = 'right';
}
if ($side == 'right') {
$pside = 'left';
} else {
$side = 'left';
$pside = 'right';
}
parent::__construct(new CDiv(SPACE, 'iconhelp'), 'http://www.zabbix.com/documentation.php');
//'http://www.zabbix.com/manual/v1.1/'.$url);
parent::onClick('window.open("http://www.zabbix.com/documentation.php");');
$this->attributes['style'] = 'padding-' . $pside . ': 5px; float:' . $side . ';text-decoration: none;';
$this->attributes['target'] = '_blank';
}