コード例 #1
0
ファイル: Tile.php プロジェクト: par-orillonsoft/Magento
 /**
  * Validate proper mpns message
  *
  * @return boolean
  */
 public function validate()
 {
     if (!isset($this->_token) || strlen($this->_token) === 0) {
         return false;
     }
     if (empty($this->_backgroundImage)) {
         return false;
     }
     if (empty($this->_title)) {
         return false;
     }
     return parent::validate();
 }
コード例 #2
0
ファイル: Raw.php プロジェクト: georgepaul/songslikesocial
 /**
  * Validate proper mpns message
  *
  * @return boolean
  */
 public function validate()
 {
     if (!isset($this->_token) || strlen($this->_token) === 0) {
         return false;
     }
     if (empty($this->_msg)) {
         return false;
     }
     return parent::validate();
 }