File: /home/dreamlan/php/Services/Blogging/MediaObject.php
<?php
/**
* Part of the Services_Blogging package.
*
* PHP version 5
*
* @category Services
* @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
* @version CVS: $Id: MediaObject.php,v 1.4 2008/11/29 13:15:46 cweiske Exp $
* @link http://pear.php.net/package/Services_Blogging
*/
/**
* Media object (image, video, sound) in a blog entry.
* Not used currently.
*
* @category Services
* @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
*/
class Services_Blogging_MediaObject
{
const ERROR_INVALID_PROPERTY = 181;
protected $values = array(
'name' => null,
'mimetype' => null,
'filename' => null
);
/**
* Set a property value.
*
* @param string $strProperty Property name
* @param mixed $value Value of property
*
* @return void
*/
public function __set($strProperty, $value)
{
if (!array_key_exists($strProperty, $this->values)) {
require_once 'Services/Blogging/Exception.php';
throw new Services_Blogging_Exception(
'Invalid property "' . $strProperty . '"',
self::ERROR_INVALID_PROPERTY
);
}
$this->values[$strProperty] = $value;
}//public function __set($strProperty, $value)
/**
* Returns value of a property
*
* @param string $strProperty Property name
*
* @return mixed Property value
*/
public function __get($strProperty)
{
if (!array_key_exists($strProperty, $this->values)) {
require_once 'Services/Blogging/Exception.php';
throw new Services_Blogging_Exception(
'Invalid property "' . $strProperty . '"',
self::ERROR_INVALID_PROPERTY
);
}
return $this->values[$strProperty];
}//public function __get($strProperty)
}//class Services_Blogging_MediaObject
?>