コード例 #1
0
ファイル: class.Extension.php プロジェクト: oat-sa/generis
 /**
  * returns the author of the extension
  *
  * @access public
  * @author firstname and lastname of author, <*****@*****.**>
  * @return string
  */
 public function getAuthor()
 {
     return (string) $this->manifest->getAuthor();
 }
コード例 #2
0
 /**
  * returns the author of the extension
  *
  * @access public
  * @author firstname and lastname of author, <*****@*****.**>
  * @return string
  */
 public function getAuthor()
 {
     $returnValue = (string) '';
     $returnValue = $this->manifest->getAuthor();
     return (string) $returnValue;
 }