예제 #1
0
파일: Date.php 프로젝트: ulrikkold/cal
 /**
  * Gets the full name or abbriviated name of this month
  *
  * Gets the full name or abbriviated name of this month
  *
  * @access public
  * @param boolean $abbr
  *        	abbrivate the name
  * @return string name of this month
  */
 function getMonthName($abbr = false)
 {
     if ($abbr) {
         return Calc::getMonthAbbrname($this->month);
     } else {
         return Calc::getMonthFullname($this->month);
     }
 }