Add enclosures support, see example in DemoBridge.
This commit is contained in:
parent
e7595391cd
commit
4deefdfd7d
3 changed files with 29 additions and 5 deletions
lib
12
lib/Item.php
12
lib/Item.php
|
@ -2,15 +2,19 @@
|
|||
interface ItemInterface{}
|
||||
|
||||
/**
|
||||
* Object to store datas collect informations
|
||||
* FIXME : not sur this logic is the good, I think recast all is necessary
|
||||
*/
|
||||
* Object to store datas collect informations
|
||||
* FIXME : not sur this logic is the good, I think recast all is necessary
|
||||
*/
|
||||
class Item implements ItemInterface{
|
||||
|
||||
// FIXME : use the arrayInterface instead
|
||||
public $enclosures = array();
|
||||
|
||||
public function __set($name, $value){
|
||||
$this->$name = $value;
|
||||
}
|
||||
|
||||
public function __get($name){
|
||||
return isset($this->$name) ? $this->$name : null;
|
||||
return (isset($this->$name) ? $this->$name : null);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue