Exemplo n.º 1
0
 /**
  * Returns true if given datetime string is within this month
  * @param string $dateString
  * @param int $userOffset User's offset from GMT (in hours)
  * @return boolean True if datetime string is within current month
  * @access public
  * @link http://book.cakephp.org/view/1472/Testing-Time
  */
 function isThisMonth($dateString, $userOffset = null)
 {
     return parent::isThisMonth($dateString, $this->__userOffset($dateString, $userOffset));
 }