本文整理匯總了PHP中Bootstrap::forge方法的典型用法代碼示例。如果您正苦於以下問題:PHP Bootstrap::forge方法的具體用法?PHP Bootstrap::forge怎麽用?PHP Bootstrap::forge使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Bootstrap
的用法示例。
在下文中一共展示了Bootstrap::forge方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: forge
/**
* @access public
* @static
* @param array $attrs (default: array())
* @return void
*/
public static function forge(array $attrs = array())
{
is_null(self::$helper) and self::$helper = Bootstrap::forge('html');
// increment instance num, if we need to render more tan than 1 tabs element
self::$inst_num++;
return new self($attrs);
}
示例2: _init
/**
* Called by the autoloader
* We user le class Bootstrap as an internal helper.
* PHP 5.4 Traits will be welcome here...
* for common tasks
*
* @access public
* @static
* @return void
*/
public static function _init()
{
is_null(static::$helper) and static::$helper = Bootstrap::forge('html');
}
示例3: pager
/**
* Bootstrap pager.
*
* @access public
* @static
* @param mixed $prev_value
* @param mixed $next_value
* @param array $attrs (default: array())
* @return void
*/
public static function pager($prev_value, $next_value, $attrs = array())
{
$prev = parent::prev_link($prev_value);
$next = parent::next_link($next_value);
if (is_null(self::$helper)) {
self::$helper = Bootstrap::forge('pagination');
}
self::$helper->merge_classes($attrs, array('pager'));
return html_tag('ul', $attrs, $prev . $next);
}
示例4: forge
public static function forge(array $attrs = array())
{
is_null(self::$helper) and self::$helper = Bootstrap::forge('html');
return new self($attrs);
}