コード例 #1
0
 function toString()
 {
     if (!$this->enabled) {
         return parent::toString();
     } else {
         return "<a href=\"" . $this->url . "\" class=\"command\">" . $this->text . "</a>";
     }
 }
コード例 #2
0
ファイル: setup.php プロジェクト: BackupTheBerlios/btg-svn
 public function toString()
 {
     return parent::toString() . " session=" . $this->session;
 }
コード例 #3
0
ファイル: ack.php プロジェクト: BackupTheBerlios/btg-svn
 public function toString()
 {
     return parent::toString() . " Ack for " . $this->getNameById($this->command_type) . ".";
 }
コード例 #4
0
 public function toString()
 {
     return parent::toString();
 }
コード例 #5
0
 public function toString()
 {
     return parent::toString() . " Failed command=" . $this->getNameById($this->which_command);
 }
コード例 #6
0
ファイル: error.php プロジェクト: BackupTheBerlios/btg-svn
 public function toString()
 {
     return parent::toString() . " Failed command=" . $this->getNameById($this->which_command) . ". Message='" . $this->message . "'.";
 }
コード例 #7
0
 public function toString()
 {
     return parent::toString() . " Filename=" . $this->filename . "." + ($this->start ? " Start flag set." : "");
 }
コード例 #8
0
 public function toString()
 {
     return parent::toString() . " Available sesions: " . join(" ", $this->sessions) . ".";
 }
コード例 #9
0
ファイル: uptime.php プロジェクト: BackupTheBerlios/btg-svn
 public function toString()
 {
     return parent::toString() . " Uptime=" . $this->uptime;
 }
コード例 #10
0
ファイル: context.php プロジェクト: BackupTheBerlios/btg-svn
 public function toString()
 {
     return parent::toString() . " Context-id=" . $this->context_id . "." . ($this->allContexts ? " All contexts flag is set." : "");
 }
コード例 #11
0
 public function toString()
 {
     return parent::toString() . " id=" . $this->id . ", status=" . $this->status;
 }
コード例 #12
0
 public function toString()
 {
     return parent::toString() . " id=" . $this->id;
 }