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


PHP PHP_CodeCoverage_Report_Node::getPath方法代码示例

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


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

示例1: getPath

 /**
  * @return string
  */
 public function getPath()
 {
     if ($this->path === null) {
         if ($this->parent === null || $this->parent->getPath() === null || $this->parent->getPath() === false) {
             $this->path = $this->name;
         } else {
             $this->path = $this->parent->getPath() . '/' . $this->name;
         }
     }
     return $this->path;
 }
开发者ID:ezrra,项目名称:PHP,代码行数:14,代码来源:Node.php

示例2: getPath

 /**
  * @return string
  */
 public function getPath()
 {
     if ($this->path === NULL) {
         if ($this->parent === NULL) {
             $this->path = $this->name;
         } else {
             $this->path = $this->parent->getPath() . '/' . $this->name;
         }
     }
     return $this->path;
 }
开发者ID:habibmasuro,项目名称:Bitcoin-PHP-API,代码行数:14,代码来源:Node.php

示例3: setCommonTemplateVariables

 /**
  * @param Text_Template                $template
  * @param PHP_CodeCoverage_Report_Node $node
  */
 protected function setCommonTemplateVariables(Text_Template $template, PHP_CodeCoverage_Report_Node $node)
 {
     $runtime = new Runtime();
     $template->setVar(array('id' => $node->getId(), 'full_path' => $node->getPath(), 'path_to_root' => $this->getPathToRoot($node), 'breadcrumbs' => $this->getBreadcrumbs($node), 'date' => $this->date, 'version' => $this->version, 'runtime_name' => $runtime->getName(), 'runtime_version' => $runtime->getVersion(), 'runtime_link' => $runtime->getVendorUrl(), 'generator' => $this->generator, 'low_upper_bound' => $this->lowUpperBound, 'high_lower_bound' => $this->highLowerBound));
 }
开发者ID:MachiavelliQ,项目名称:www,代码行数:9,代码来源:Renderer.php

示例4: setCommonTemplateVariables

 /**
  * @param Text_Template                $template
  * @param PHP_CodeCoverage_Report_Node $node
  */
 protected function setCommonTemplateVariables(Text_Template $template, PHP_CodeCoverage_Report_Node $node)
 {
     $template->setVar(array('id' => $node->getId(), 'full_path' => $node->getPath(), 'breadcrumbs' => $this->getBreadcrumbs($node), 'charset' => $this->charset, 'date' => $this->date, 'version' => PHP_CodeCoverage_Version::id(), 'php_version' => PHP_VERSION, 'generator' => $this->generator, 'low_upper_bound' => $this->lowUpperBound, 'high_lower_bound' => $this->highLowerBound));
 }
开发者ID:manzapanza,项目名称:cakephp-api-utils,代码行数:8,代码来源:Renderer.php


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