/oiserver/lib/model/Pack.php
http://openirudi.googlecode.com/ · PHP · 17 lines · 9 code · 1 blank · 7 comment · 1 complexity · 5f95d33de13f100fbde095982ad91445 MD5 · raw file
- <?php
- /**
- * Subclass for representing a row from the 'pack' table.
- *
- *
- *
- * @package lib.model
- */
- class Pack extends BasePack {
- function __toString() {
- if($this->name)
- return $this->name;
- else
- return 'NULL';
- }
- }