?
Path : /home/admin/public_html/old/board/components/com_joomgallery/models/ |
Current File : /home/admin/public_html/old/board/components/com_joomgallery/models/upload.php |
<?php // $HeadURL: https://joomgallery.org/svn/joomgallery/JG-1.5/JG/trunk/components/com_joomgallery/models/upload.php $ // $Id: upload.php 3092 2011-05-20 09:56:58Z aha $ /****************************************************************************************\ ** JoomGallery 1.5.7 ** ** By: JoomGallery::ProjectTeam ** ** Copyright (C) 2008 - 2011 JoomGallery::ProjectTeam ** ** Based on: JoomGallery 1.0.0 by JoomGallery::ProjectTeam ** ** Released under GNU GPL Public License ** ** License: http://www.gnu.org/copyleft/gpl.html or have a look ** ** at administrator/components/com_joomgallery/LICENSE.TXT ** \****************************************************************************************/ defined('_JEXEC') or die('Direct Access to this location is not allowed.'); /** * JoomGallery frontend upload model * * @package JoomGallery * @since 1.5.5 */ class JoomGalleryModelUpload extends JoomGalleryModel { /** * Set to true if the current user is an administrator * * @access protected * @var boolean */ var $_adminlogged = false; /** * Constructor * * @access protected * @return void * @since 1.5.5 */ function __construct() { parent::__construct(); if($this->_user->get('gid') > 23) { $this->_adminlogged = true; } } /** * Returns the number of images of the current user * * @access public * @return int The number of images of the current user * @since 1.5.5 */ function getImageNumber() { $this->_db->setQuery("SELECT COUNT(id) FROM "._JOOM_TABLE_IMAGES." WHERE owner = ".$this->_user->get('id') ); return $this->_db->loadResult(); } /** * Returns true if the current user is an administrator, false otherwise * * @access public * @return boolean True if the current user is an administrator, false otherwise * @since 1.5.5 */ function getAdminLogged() { return $this->_adminlogged; } }