Seditio Source
Root |
./othercms/ips_4.3.4/applications/downloads/extensions/core/CreateMenu/File.php
<?php
/**
 * @brief        Create Menu Extension
 * @author        <a href='https://www.invisioncommunity.com'>Invision Power Services, Inc.</a>
 * @copyright    (c) Invision Power Services, Inc.
 * @license        https://www.invisioncommunity.com/legal/standards/
 * @package        Invision Community
 * @subpackage    Downloads
 * @since        8 Oct 2013
 */

namespace IPS\downloads\extensions\core\CreateMenu;

/* To prevent PHP errors (extending class does not exist) revealing path */
if ( !defined( '\IPS\SUITE_UNIQUE_KEY' ) )
{
   
header( ( isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0' ) . ' 403 Forbidden' );
    exit;
}

/**
 * Create Menu Extension
 */
class _File
{
   
/**
     * Get Items
     *
     * @return    array
     */
   
public function getItems()
    {        
        if ( \
IPS\downloads\Category::canOnAny( 'add', NULL, \IPS\Settings::i()->club_nodes_in_apps ? array() : array( array( 'cclub_id IS NULL' ) ) ) )
        {
            if ( !\
IPS\Settings::i()->club_nodes_in_apps and $theOnlyNode = \IPS\downloads\Category::theOnlyNode() AND !\IPS\Member::loggedIn()->group['idm_bulk_submit'] )
            {
                return array(
                   
'file_download' => array(
                       
'link'     => \IPS\Http\Url::internal( "app=downloads&module=downloads&controller=submit&do=submit&_new=1&category=" . $theOnlyNode->_id, 'front', 'downloads_submit' ),
                    )
                );
            }
            else
            {
                return array(
                   
'file_download' => array(
                       
'link'         => \IPS\Http\Url::internal( "app=downloads&module=downloads&controller=submit&_new=1", 'front', 'downloads_submit' ),
                       
'title'     => 'select_category',
                       
'extraData'    => array( 'data-ipsDialog' => true, 'data-ipsDialog-size' => "narrow" )
                    )
                );
            }
        }
       
       
        return array();
    }
}