Source for file newsfeeds.class.php

Documentation is available at newsfeeds.class.php

  1. <?php
  2. /**
  3. @package Mambo
  4. @subpackage Newsfeeds
  5. @copyright  Refer to copyright.php
  6. @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
  7. @author Mambo Foundation Inc see README.php
  8. */ 
  9.  
  10. /** ensure this file is being included by a parent file */
  11. defined'_VALID_MOS' or die'Direct Access to this location is not allowed.' );
  12.  
  13. class mosNewsFeed extends mosDBTable {
  14. /** @var int Primary key */
  15.     var $id=null;
  16. /** @var int */
  17.     var $catid=null;
  18. /** @var string */
  19.     var $name=null;
  20. /** @var string */
  21.     var $link=null;
  22. /** @var string */
  23.     var $filename=null;
  24. /** @var int */
  25.     var $published=null;
  26. /** @var int */
  27.     var $numarticles=null;
  28. /** @var int */
  29.     var $cache_time=null;
  30. /** @var int */
  31.     var $checked_out=null;
  32. /** @var time */
  33.     var $checked_out_time=null;
  34. /** @var int */
  35.     var $ordering=null;
  36.  
  37. /**
  38. @param database A database connector object
  39. */
  40.     function mosNewsFeed&$db {
  41.         $this->mosDBTable'#__newsfeeds''id'$db );
  42.     }
  43.  
  44. }
  45. ?>

Documentation generated on Mon, 05 May 2008 16:21:36 +0400 by phpDocumentor 1.4.0