/*************************************************\
** DatsoGallery - A Joomla! Gallery Component **
** Copyright (C) 2006 by Andrey Datso **
** Version : 1.3.2 **
** Homepage : http://www.datso.net **
** Based on : Akogallery 2.1 **
** Released Under GNU GPL Public License **
\*************************************************/
/************** Original Copyright ***************\
** AkoGallery - A Mambo Gallery Component **
** Copyright (C) 2003 by Arthur Konze **
** Homepage : www.mamboportal.com **
** Version : 2.1 beta 1 **
** License : GNU GPL Public License **
\*************************************************/
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
class mosdatsogallery extends mosDBTable {
var $id=null;
var $catid=null;
var $imgtitle=null;
var $imgauthor=null;
var $imgtext=null;
var $imgdate=null;
var $imgcounter=null;
var $imgvotes=null;
var $imgvotesum=null;
var $published=null;
var $imgfilename=null;
var $imgthumbname=null;
var $imgoriginalname=null;
var $checked_out=null;
var $owner=null;
var $approved=null;
var $useruploaded=null;
function mosdatsogallery( &$db ) {
$this->mosDBTable( '#__datsogallery', 'id', $db );
}
}
?>