Annotation of /mambo/branches/4.6/administrator/components/com_newsfeeds/newsfeeds.class.php
Parent Directory
|
Revision Log
Revision 3 - (view) (download)
| 1 : | root | 1 | <?php |
| 2 : | /** | ||
| 3 : | * @version $Id: newsfeeds.class.php,v 1.1 2005/07/22 01:53:21 eddieajau Exp $ | ||
| 4 : | * @package Mambo | ||
| 5 : | * @subpackage Newsfeeds | ||
| 6 : | * @copyright (C) 2000 - 2005 Miro International Pty Ltd | ||
| 7 : | * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL | ||
| 8 : | * Mambo is Free Software | ||
| 9 : | */ | ||
| 10 : | |||
| 11 : | /** ensure this file is being included by a parent file */ | ||
| 12 : | defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); | ||
| 13 : | |||
| 14 : | /** | ||
| 15 : | * @package Mambo | ||
| 16 : | * @subpackage Newsfeeds | ||
| 17 : | */ | ||
| 18 : | class mosNewsFeed extends mosDBTable { | ||
| 19 : | /** @var int Primary key */ | ||
| 20 : | var $id=null; | ||
| 21 : | /** @var int */ | ||
| 22 : | var $catid=null; | ||
| 23 : | /** @var string */ | ||
| 24 : | var $name=null; | ||
| 25 : | /** @var string */ | ||
| 26 : | var $link=null; | ||
| 27 : | /** @var string */ | ||
| 28 : | var $filename=null; | ||
| 29 : | /** @var int */ | ||
| 30 : | var $published=null; | ||
| 31 : | /** @var int */ | ||
| 32 : | var $numarticles=null; | ||
| 33 : | /** @var int */ | ||
| 34 : | var $cache_time=null; | ||
| 35 : | /** @var int */ | ||
| 36 : | var $checked_out=null; | ||
| 37 : | /** @var time */ | ||
| 38 : | var $checked_out_time=null; | ||
| 39 : | /** @var int */ | ||
| 40 : | var $ordering=null; | ||
| 41 : | |||
| 42 : | /** | ||
| 43 : | * @param database A database connector object | ||
| 44 : | */ | ||
| 45 : | function mosNewsFeed( &$db ) { | ||
| 46 : | $this->mosDBTable( '#__newsfeeds', 'id', $db ); | ||
| 47 : | } | ||
| 48 : | |||
| 49 : | } | ||
| 50 : | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |
Web Hosting provided by Network Redux.

