b0y-101 Mini Shell


Current Path : E:/www/instructor/test02/components/com_eventgallery/library/interface/
File Upload :
Current File : E:/www/instructor/test02/components/com_eventgallery/library/interface/foldercapability.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
 */

defined('_JEXEC') or die;

interface  EventgalleryLibraryInterfaceFoldercapability {

    /**
     * Defines if a folder is sortable using the back office
     *
     * @return boolean
     */
    public function isSortable();

    /**
     * does the folder supports uploads?
     *
     * @return boolean
     */
    public function supportsFileUpload();

    /**
     * does the folder supports file deletion?
     *
     * @return boolean
     */
    public function supportsFileDeletion();

    /**
     * defines if the folder has files where you can edit meta data.
     *
     * @return boolean
     */
    public function supportsImageDataEditing();

}

Copyright © 2019 by b0y-101