Source for file MediaObject.php
Documentation is available at MediaObject.php
* Media object (image, video, sound) in a blog entry.
* @package Services_Blogging
* @author Anant Narayanan <anant@php.net>
* @author Christian Weiske <cweiske@php.net>
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
* @link http://pear.php.net/package/Services_Blogging
const ERROR_INVALID_PROPERTY = 181;
public function __set($strProperty, $value)
require_once 'Services/Blogging/Exception.php';
'Invalid property "' . $strProperty . '"',
self ::ERROR_INVALID_PROPERTY
$this->values[$strProperty] = $value;
}//public function __set($strProperty, $value)
public function __get($strProperty)
require_once 'Services/Blogging/Exception.php';
'Invalid property "' . $strProperty . '"',
self ::ERROR_INVALID_PROPERTY
return $this->values[$strProperty];
}//public function __get($strProperty)
}//class Services_Blogging_MediaObject
Documentation generated on Mon, 11 Mar 2019 15:25:12 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|