0byt3m1n1
Path:
/
data
/
applications
/
aps
/
mambo
/
4.6.2-16
/
standard
/
htdocs
/
components
/
com_frontpage
/
[
Home
]
File: frontpage.class.php
<?php /** * @package Mambo * @subpackage Content * @copyright Refer to copyright.php * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @author Mambo Foundation Inc see README.php */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); require_once (mamboCore::get('mosConfig_absolute_path').'/components/com_content/content.class.php'); class mosFrontPage extends mosDBTable { /** @var int Primary key */ var $content_id=null; /** @var int */ var $ordering=null; /** * @param database A database connector object */ function mosFrontPage( &$db ) { $this->mosDBTable( '#__content_frontpage', 'content_id', $db ); } } ?>