Source for file frontpage.class.php

Documentation is available at frontpage.class.php

  1. <?php
  2. /**
  3. @package Mambo
  4. @subpackage Content
  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. require_once (mamboCore::get('mosConfig_absolute_path').'/components/com_content/content.class.php');
  14.  
  15. class mosFrontPage extends mosDBTable {
  16.     /** @var int Primary key */
  17.     var $content_id=null;
  18.     /** @var int */
  19.     var $ordering=null;
  20.     
  21.     /**
  22.     * @param database A database connector object
  23.     */
  24.     function mosFrontPage&$db {
  25.         $this->mosDBTable'#__content_frontpage''content_id'$db );
  26.     }
  27. }
  28. ?>

Documentation generated on Mon, 05 May 2008 16:19:46 +0400 by phpDocumentor 1.4.0