本文整理汇总了PHP中QM_Output_Html类的典型用法代码示例。如果您正苦于以下问题:PHP QM_Output_Html类的具体用法?PHP QM_Output_Html怎么用?PHP QM_Output_Html使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了QM_Output_Html类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct(QM_Collector $collector)
{
parent::__construct($collector);
add_filter('qm/output/menus', array($this, 'admin_menu'), 20);
add_filter('qm/output/title', array($this, 'admin_title'), 20);
add_filter('qm/output/menu_class', array($this, 'admin_class'));
}
开发者ID:pfkellogg,项目名称:hooks_good_one,代码行数:7,代码来源:db_queries.php
示例2: __construct
public function __construct(QM_Collector $collector)
{
parent::__construct($collector);
add_filter('qm/output/title', array($this, 'admin_title'), 10);
}
开发者ID:L0k1slnk,项目名称:weddly,代码行数:5,代码来源:overview.php
示例3: __construct
public function __construct(QM_Collector $collector)
{
parent::__construct($collector);
add_filter('qm/output/menus', array($this, 'admin_menu'), 55);
}
开发者ID:johnbillion,项目名称:query-monitor,代码行数:5,代码来源:rewrites.php
示例4: output_filename
public static function output_filename($text, $file, $line = 1)
{
# Further reading:
# http://simonwheatley.co.uk/2012/07/clickable-stack-traces/
# https://github.com/grych/subl-handler
if (!isset(self::$file_link_format)) {
$format = ini_get('xdebug.file_link_format');
$format = apply_filters('qm/output/file_link_format', $format);
if (empty($format)) {
self::$file_link_format = false;
} else {
self::$file_link_format = str_replace(array('%f', '%l'), array('%1$s', '%2$d'), $format);
}
}
if (false === self::$file_link_format) {
return $text;
}
$link = sprintf(self::$file_link_format, urlencode($file), $line);
return sprintf('<a href="%s">%s</a>', $link, $text);
}
开发者ID:pfkellogg,项目名称:hooks_good_one,代码行数:20,代码来源:Html.php
示例5: output_filename
/**
* Returns a file path, name, and line number. Safe for output.
*
* If clickable file links are enabled, a link such as this is returned:
*
* <a href="subl://open/?line={line}&url={file}">{text}</a>
*
* Otherwise, the display text and file details such as this is returned:
*
* {text}<br>{file}:{line}
*
* @param string $text The display text, such as a function name or file name.
* @param string $file The full file path and name.
* @param int $line Optional. A line number, if appropriate.
* @return string The fully formatted file link or file name, safe for output.
*/
public static function output_filename($text, $file, $line = 0)
{
if (empty($file)) {
return esc_html($text);
}
# Further reading:
# http://simonwheatley.co.uk/2012/07/clickable-stack-traces/
# https://github.com/grych/subl-handler
$link_line = $line ? $line : 1;
if (!isset(self::$file_link_format)) {
$format = ini_get('xdebug.file_link_format');
$format = apply_filters('qm/output/file_link_format', $format);
if (empty($format)) {
self::$file_link_format = false;
} else {
self::$file_link_format = str_replace(array('%f', '%l'), array('%1$s', '%2$d'), $format);
}
}
if (false === self::$file_link_format) {
$fallback = QM_Util::standard_dir($file, '');
if ($line) {
$fallback .= ':' . $line;
}
$return = esc_html($text);
if ($fallback !== $text) {
$return .= '<br><span class="qm-info"> ' . esc_html($fallback) . '</span>';
}
return $return;
}
$link = sprintf(self::$file_link_format, urlencode($file), intval($link_line));
return sprintf('<a href="%s">%s</a>', esc_attr($link), esc_html($text));
}
开发者ID:darbymanning,项目名称:Family-Church,代码行数:48,代码来源:Html.php
注:本文中的QM_Output_Html类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论