コード例 #1
0
ファイル: XHTML.php プロジェクト: TazeTSchnitzel/phd
 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);
 }