From: <var...@us...> - 2014-11-15 17:49:44
|
Revision: 9313 http://sourceforge.net/p/phpwiki/code/9313 Author: vargenau Date: 2014-11-15 17:49:36 +0000 (Sat, 15 Nov 2014) Log Message: ----------- PHP Doc Modified Paths: -------------- trunk/lib/RssWriter.php Modified: trunk/lib/RssWriter.php =================================================================== --- trunk/lib/RssWriter.php 2014-11-15 17:44:51 UTC (rev 9312) +++ trunk/lib/RssWriter.php 2014-11-15 17:49:36 UTC (rev 9313) @@ -11,6 +11,10 @@ */ class RssWriter extends XmlElement { + public $_channel; + public $_image; + public $_textinput; + function __construct() { parent::__construct('rdf:RDF', @@ -127,6 +131,11 @@ /** * Create a new RDF <em>typedNode</em>. + * + * @param $type + * @param $properties + * @param bool $uri + * @return XmlElement */ function __node($type, $properties, $uri = false) { @@ -139,6 +148,9 @@ /** * Check object URI for uniqueness, create a unique URI if needed. + * + * @param string $uri + * @return string */ function __uniquify_uri($uri) { @@ -153,6 +165,9 @@ /** * Convert hash of RDF properties to <em>propertyElt</em>s. + * + * @param $elements + * @return array */ function __elementize($elements) { @@ -170,6 +185,8 @@ /** * Check property predicates for XMLNS sanity. + * + * @param string $name */ function __check_predicate($name) { @@ -185,6 +202,10 @@ /** * Create a <em>propertyElt</em> which references another node in the RSS. + * + * @param $predicate + * @param $reference + * @return XmlElement */ function __ref($predicate, $reference) { @@ -224,6 +245,12 @@ /** * Create a new entry + * + * @param $type + * @param $attr + * @param bool $properties + * @param bool $uri + * @return XmlElement */ function __node($type, $attr, $properties, $uri = false) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |