コード例 #1
0
ファイル: Entity.php プロジェクト: Kervinou/OBM
 /**
  * Returns the value for a property
  * 
  * @param Vpdi_Property $property
  * @access private
  * @return mixed
  */
 protected function decodeProperty($property) {
   return Vpdi::decodeText($property->value());
 }
コード例 #2
0
ファイル: Vevent.php プロジェクト: Kervinou/OBM
 public function getLocation() {
   if (($loc = $this->getProperty('LOCATION')) === null) {
     return "";
   }
   return Vpdi::decodeText($loc->value());
 }