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


PHP FireCake::groupEnd方法代码示例

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


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

示例1: _fireError

 /**
  * Create a FirePHP error message
  *
  * @param string $error Name of error
  * @param string $code  Code of error
  * @param string $description Description of error
  * @param string $file File error occured in
  * @param string $line Line error occured on
  * @param string $trace Stack trace at time of error
  * @param string $context context of error
  * @return void
  * @access protected
  */
 function _fireError($error, $code, $description, $file, $line, $trace, $context)
 {
     $name = $error . ' - ' . $description;
     $message = "{$error} {$code} {$description} on line: {$line} in file: {$file}";
     FireCake::group($name);
     FireCake::error($message, $name);
     FireCake::log($context, 'Context');
     FireCake::log($trace, 'Trace');
     FireCake::groupEnd();
 }
开发者ID:masayukiando,项目名称:cakephp1.3-mailmagazine,代码行数:23,代码来源:debug_kit_debugger.php

示例2: fireError

 /**
  * Create a FirePHP error message
  *
  * @param array $data Data of the error
  * @param array $links  Links for the error
  * @return void
  */
 public static function fireError($data, $links)
 {
     $name = $data['error'] . ' - ' . $data['description'];
     $message = "{$data['error']} {$data['code']} {$data['description']} on line: {$data['line']} in file: {$data['file']}";
     FireCake::group($name);
     FireCake::error($message, $name);
     if (isset($data['context'])) {
         FireCake::log($data['context'], 'Context');
     }
     if (isset($data['trace'])) {
         FireCake::log($data['trace'], 'Trace');
     }
     FireCake::groupEnd();
 }
开发者ID:huanjian,项目名称:mythesis,代码行数:21,代码来源:DebugKitDebugger.php

示例3: testGroup

 /**
  * test Group messages
  *
  * @return void
  */
 public function testGroup()
 {
     FireCake::setOptions(array('includeLineNumbers' => false));
     FireCake::group('test');
     FireCake::info('my info');
     FireCake::groupEnd();
     $this->assertEqual($this->firecake->sentHeaders['X-Wf-1-1-1-1'], '63|[{"Collapsed":"true","Type":"GROUP_START","Label":"test"},null]|');
     $this->assertEqual($this->firecake->sentHeaders['X-Wf-1-1-1-3'], '27|[{"Type":"GROUP_END"},null]|');
     $this->assertEqual($this->firecake->sentHeaders['X-Wf-1-Index'], 3);
 }
开发者ID:carriercomm,项目名称:professional-inventory-and-billing-system,代码行数:15,代码来源:FireCakeTest.php

示例4: panelEnd

 /**
  * End a panel (Group)
  *
  * @return void
  */
 public function panelEnd()
 {
     FireCake::groupEnd();
 }
开发者ID:basantk,项目名称:cakephp-user-login-basic-2.x,代码行数:9,代码来源:FirePhpToolbarHelper.php

示例5: _fireError

/**
 * Create a FirePHP error message
 *
 * @param string $error Name of error
 * @param string $code  Code of error
 * @param string $description Description of error
 * @param string $file File error occured in
 * @param string $line Line error occured on
 * @param string $trace Stack trace at time of error
 * @param string $context context of error
 * @return void
 */
	protected function _fireError($error, $code, $description, $file, $line, $trace, $context) {
		$name = $error . ' - ' . $description;
		$message = "$error $code $description on line: $line in file: $file";
		FireCake::group($name);
		FireCake::error($message, $name);
		FireCake::log($context, 'Context');
		FireCake::log($trace, 'Trace');
		FireCake::groupEnd();
	}
开发者ID:neterslandreau,项目名称:tubones,代码行数:21,代码来源:DebugKitDebugger.php


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