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
const ERROR_INVALID_PROPERTY = 181;
protected $values = array (
public function __set($strProperty, $value)
if (!isset ($this->values[$strProperty])) {
require_once 'Services/Blogging/Exception.php';
$this->values[$strProperty] = $value;
}//public function __set($strProperty, $value)
public function __get($strProperty)
if (!isset ($this->values[$strProperty])) {
require_once 'Services/Blogging/Exception.php';
return $this->values[$strProperty];
}//public function __get($strProperty)
}//class Services_Blogging_MediaObject
Documentation generated on Sat, 27 Jan 2007 12:00:09 -0500 by phpDocumentor 1.3.0. PEAR Logo Copyright © PHP Group 2004.
|