コード例 #1
0
ファイル: task.inc.php プロジェクト: pmtool/pmtool
 /**
  * checks if the task has a fixed price.
  * @return boolean true, if the task has a fixed price.
  * @access public
  */
 function isFixedPrice()
 {
     return isset($this->fixedPrice) && tool::checkFloat($this->fixedPrice) && $this->fixedPrice > "0";
 }