View of /mambo/branches/4.6/administrator/components/com_newsfeeds/newsfeeds.class.php
Parent Directory
|
Revision Log
Revision 1 -
(download)
(annotate)
Tue Dec 13 03:45:47 2005 UTC (7 years, 6 months ago) by root
Original Path: mambo/trunk/administrator/components/com_newsfeeds/newsfeeds.class.php
File size: 1074 byte(s)
Tue Dec 13 03:45:47 2005 UTC (7 years, 6 months ago) by root
Original Path: mambo/trunk/administrator/components/com_newsfeeds/newsfeeds.class.php
File size: 1074 byte(s)
Initial repository layout
<?php /** * @version $Id: newsfeeds.class.php,v 1.1 2005/07/22 01:53:21 eddieajau Exp $ * @package Mambo * @subpackage Newsfeeds * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); /** * @package Mambo * @subpackage Newsfeeds */ class mosNewsFeed extends mosDBTable { /** @var int Primary key */ var $id=null; /** @var int */ var $catid=null; /** @var string */ var $name=null; /** @var string */ var $link=null; /** @var string */ var $filename=null; /** @var int */ var $published=null; /** @var int */ var $numarticles=null; /** @var int */ var $cache_time=null; /** @var int */ var $checked_out=null; /** @var time */ var $checked_out_time=null; /** @var int */ var $ordering=null; /** * @param database A database connector object */ function mosNewsFeed( &$db ) { $this->mosDBTable( '#__newsfeeds', 'id', $db ); } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

