b0y-101 Mini Shell


Current Path : E:/www/instructor/teacher20/administrator/components/com_eventgallery/tables/
File Upload :
Current File : E:/www/instructor/teacher20/administrator/components/com_eventgallery/tables/folder.php

<?php
/**
 * @package     Sven.Bluege
 * @subpackage  com_eventgallery
 *
 * @copyright   Copyright (C) 2005 - 2019 Sven Bluege All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
// no direct access
use Joomla\CMS\Table\Table;

defined('_JEXEC') or die('Restricted access');


if (version_compare(JVERSION, '4.0', '<' ) == 1) {
    class EventgalleryTableFolder extends EventgalleryTableFolderBase {

    }
} else {
    class EventgalleryTableFolder extends EventgalleryTableFolderBase implements Joomla\CMS\Tag\TaggableTableInterface {
        use Joomla\CMS\Tag\TaggableTableTrait;
        /**
         * Get the type alias for the history table
         *
         * @return  string  The alias as described above
         *
         * @since   4.0.0
         */
        public function getTypeAlias()
        {
            return $this->typeAlias;
        }
    }
}

/**
 * Class EventgalleryTableFolder
 *
 */
class EventgalleryTableFolderBase extends Table
{
    public $id = null;
    public $folder = null;
    public $googlephotosaccountid = null;
    public $googlephotostitle = null;
    public $picasakey = null;
    public $foldertags = null;
    public $date = null;
    public $description = null;
    public $published = null;
    public $publish_up = null;
    public $publish_down = null;
    public $text = null;
    public $hits = null;
    public $userid = null;
    public $ordering = null;
    public $password = null;
    public $passwordhint = null;
    public $cartable = null;
    public $imagetypesetid = null;
    public $watermarkid = null;
    public $modified = null;
    public $created = null;
    public $usergroupids = null;
    public $attribs = null;
    public $metadata = null;
    public $foldertypeid = null;
    public $sortattribute = null;
    public $sortdirection = null;
    public $shuffle_images = null;



    function __construct($db) {
        if (version_compare(JVERSION, '4.0', '<') == 1) {
            parent::__construct('#__eventgallery_folder', 'id', $db);
            JTableObserverTags::createObserver($this, array('typeAlias' => 'com_eventgallery.event'));
        } else {
            $this->typeAlias = 'com_eventgallery.event';
            parent::__construct('#__eventgallery_folder', 'id', $db);
        }
    }

    public function store($updateNulls = false) {
        $this->modified = date("Y-m-d H:i:s");
        if (empty($this->id))
        {
            if (empty($this->created)) {
                $this->created = date("Y-m-d H:i:s");
            }
            // Set ordering to the last item if not set
            if (empty($this->ordering))
            {
                $db = JFactory::getDbo();
                $db->setQuery('SELECT MAX(ordering) FROM #__eventgallery_folder');
                $max = $db->loadResult();

                $this->ordering = $max + 1;
            }
        }

        $this->watermarkid = (int)$this->watermarkid;
        $this->googlephotosaccountid = (int)$this->googlephotosaccountid;
        // try to detect the CLI mode.
        if (array_key_exists('REQUEST_METHOD', $_SERVER))
        {
            $this->userid = JFactory::getUser()->id;
        }
        $this->catid = (int)$this->catid;

        EventgalleryLibraryFactoryFolder::clear();

        return parent::store($updateNulls);
    }


	/**
	 * Overloaded bind function
	 *
	 * @param   array  $array   Named array
	 * @param   mixed  $ignore  An optional array or space separated list of properties
	 *                          to ignore while binding.
	 *
	 * @return  mixed  Null if operation was satisfactory, otherwise returns an error string
	 *
	 * @see     JTable::bind
	 * @since   11.1
	 */
	public function bind($array, $ignore = '')
	{

        if ($array instanceof stdClass ) {
           $array =  (array) $array;
        }

		if (isset($array['attribs']) && is_array($array['attribs']))
		{
			$registry = new JRegistry;
			$registry->loadArray($array['attribs']);
			$array['attribs'] = (string) $registry;
		}

		if (isset($array['metadata']) && is_array($array['metadata']))
		{
			$registry = new JRegistry;
			$registry->loadArray($array['metadata']);
			$array['metadata'] = (string) $registry;
		}

		return parent::bind($array, $ignore);
	}


}


Copyright © 2019 by b0y-101