[ Index ]

PHP Cross Reference of Mambo 4.6.5

[ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/administrator/components/com_newsfeeds/ -> newsfeeds.class.php (source)

   1  <?php
   2  /**
   3  * @package Mambo
   4  * @subpackage Newsfeeds
   5  * @author Mambo Foundation Inc see README.php
   6  * @copyright (C) 2000 - 2009 Mambo Foundation Inc.
   7  * See COPYRIGHT.php for copyright notices and details.
   8  * @license GNU/GPL Version 2, see LICENSE.php
   9  *
  10  * Redistributions of files must retain the above copyright notice.
  11  *
  12  * Mambo is free software; you can redistribute it and/or
  13  * modify it under the terms of the GNU General Public License
  14  * as published by the Free Software Foundation; version 2 of the License.
  15  */
  16  
  17  /** ensure this file is being included by a parent file */
  18  defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
  19  
  20  class mosNewsFeed extends mosDBTable {
  21  /** @var int Primary key */
  22      var $id=null;
  23  /** @var int */
  24      var $catid=null;
  25  /** @var string */
  26      var $name=null;
  27  /** @var string */
  28      var $link=null;
  29  /** @var string */
  30      var $filename=null;
  31  /** @var int */
  32      var $published=null;
  33  /** @var int */
  34      var $numarticles=null;
  35  /** @var int */
  36      var $cache_time=null;
  37  /** @var int */
  38      var $checked_out=null;
  39  /** @var time */
  40      var $checked_out_time=null;
  41  /** @var int */
  42      var $ordering=null;
  43  
  44  /**
  45  * @param database A database connector object
  46  */
  47  	function mosNewsFeed( &$db ) {
  48          $this->mosDBTable( '#__newsfeeds', 'id', $db );
  49      }
  50  
  51  }
  52  ?>