Documentation is available at Channel.class.php
- <?php
- class Channel {
- /**
- * @access private
- * @var string
- */
- private $lID;
- /**
- * @access private
- * @var string
- */
- private $lName;
- /**
- * @access private
- * @var string
- */
- private $lIPNummer;
- /**
- * @access private
- * @var string
- */
- private $lType;
- /**
- * Constructor. This creates a Channel object.
- * @param int $pID
- * @param string $pIP
- * @param string $pType
- * @param string $pName
- * @return Channel
- */
- function __construct($pID,$pIP,$pType,$pName = null) {
- $this->lID = trim($pID);
- $this->lIPNummer = trim($pIP);
- $this->lType = trim($pType);
- $this->lName = trim($pName);
- }
- /**
- * Get the channel ID.
- * @return string
- */
- public function getID() {
- return trim($this->lID);
- }
- /**
- * Get the channel name.
- * @return string
- */
- public function getName() {
- return trim($this->lName);
- }
- }
- ?>
Documentation generated on Sat, 19 Jan 2008 12:56:14 +0100 by phpDocumentor 1.3.0RC3