示例#1
0
 public function format_classsynopsis_methodsynopsis_methodname_text($value, $tag)
 {
     if ($this->cchunk["classsynopsis"]["classname"]) {
         if (strpos($value, "::") === false && strpos($value, "->") === false) {
             $value = $this->cchunk["classsynopsis"]["classname"] . "::" . $value;
         }
     }
     $display_value = parent::format_classsynopsis_methodsynopsis_methodname_text($value, $tag);
     return $this->format_function_text($value, $tag, $display_value);
 }
示例#2
0
文件: XHTML.php 项目: philip/phd
 public function format_classsynopsis_methodsynopsis_methodname_text($value, $tag)
 {
     $display_value = parent::format_classsynopsis_methodsynopsis_methodname_text($value, $tag);
     return $this->format_function_text($value, $tag, $display_value);
 }