Seditio Source
Root |
./othercms/ips_4.3.4/applications/gallery/Application.php
<?php
/**
 * @brief        Gallery Application Class
 * @author        <a href='https://www.invisioncommunity.com'>Invision Power Services, Inc.</a>
 * @copyright    (c) Invision Power Services, Inc.
 * @package        Invision Community
 * @subpackage    Gallery
 * @since        04 Mar 2014
 * @version        
 */
 
namespace IPS\gallery;

/**
 * Gallery Application Class
 */
class _Application extends \IPS\Application
{
   
/**
     * Init
     *
     * @return    void
     */
   
public function init()
    {
       
/* If the viewing member cannot view the board (ex: guests must login first), then send a 404 Not Found header here, before the Login page shows in the dispatcher */
       
if ( \IPS\Dispatcher::hasInstance() AND \IPS\Dispatcher::i()->controllerLocation === 'front')
        {
            if ( !\
IPS\Member::loggedIn()->group['g_view_board'] and ( \IPS\Request::i()->module == 'gallery' and \IPS\Request::i()->controller == 'browse' and \IPS\Request::i()->do == 'rss' )
            or ( \
IPS\Member::loggedIn()->members_bitoptions['remove_gallery_access'] )
            )
            {
                \
IPS\Output::i()->error( 'node_error', '2G218/1', 404, '' );
            }
        }
    }

   
/**
     * [Node] Get Icon for tree
     *
     * @note    Return the class for the icon (e.g. 'globe')
     * @return    string|null
     */
   
protected function get__icon()
    {
        return
'camera';
    }
   
   
/**
     * Default front navigation
     *
     * @code
         
         // Each item...
         array(
            'key'        => 'Example',        // The extension key
            'app'        => 'core',            // [Optional] The extension application. If ommitted, uses this application    
            'config'    => array(...),        // [Optional] The configuration for the menu item
            'title'        => 'SomeLangKey',    // [Optional] If provided, the value of this language key will be copied to menu_item_X
            'children'    => array(...),        // [Optional] Array of child menu items for this item. Each has the same format.
        )
         
         return array(
             'rootTabs'         => array(), // These go in the top row
             'browseTabs'    => array(),    // These go under the Browse tab on a new install or when restoring the default configuraiton; or in the top row if installing the app later (when the Browse tab may not exist)
             'browseTabsEnd'    => array(),    // These go under the Browse tab after all other items on a new install or when restoring the default configuraiton; or in the top row if installing the app later (when the Browse tab may not exist)
             'activityTabs'    => array(),    // These go under the Activity tab on a new install or when restoring the default configuraiton; or in the top row if installing the app later (when the Activity tab may not exist)
        )
     * @endcode
     * @return array
     */
   
public function defaultFrontNavigation()
    {
        return array(
           
'rootTabs'        => array(),
           
'browseTabs'    => array( array( 'key' => 'Gallery' ) ),
           
'browseTabsEnd'    => array(),
           
'activityTabs'    => array()
        );
    }

   
/**
     * Perform some legacy URL parameter conversions
     *
     * @return    void
     */
   
public function convertLegacyParameters()
    {
       
/* convert ?module=images&section=img_ctrl&img=100&file=medium */
        /* convert ?module=images&section=img_ctrl&id=100&file=medium */
       
if( isset( \IPS\Request::i()->section ) AND \IPS\Request::i()->section == 'img_ctrl' )
        {
           
$id = ( isset( \IPS\Request::i()->img ) ) ? \IPS\Request::i()->img : \IPS\Request::i()->id;

            if(
$id )
            {
                if( \
IPS\Request::i()->file == 'med' )
                {
                    \
IPS\Request::i()->file = 'medium';
                }

               
$imageSize = ( ( \IPS\Request::i()->file == 'small' ) ? 'small' : 'masked' ) . '_file_name';

                try
                {
                    \
IPS\Output::i()->redirect( (string) \IPS\File::get( 'gallery_Images', \IPS\gallery\Image::load( $id )->$imageSize )->url );
                }
                catch ( \
Exception $e ){}
            }
        }

       
/* convert ?app=gallery&module=images&section=viewimage&img=14586 */
       
if( isset( \IPS\Request::i()->section ) AND \IPS\Request::i()->section == 'viewimage' )
        {
           
$id = ( isset( \IPS\Request::i()->img ) ) ? \IPS\Request::i()->img : \IPS\Request::i()->id;

            if(
$id )
            {
                if( \
IPS\Request::i()->file == 'med' )
                {
                    \
IPS\Request::i()->file = 'medium';
                }

               
$imageSize = ( ( \IPS\Request::i()->file == 'small' ) ? 'small' : 'masked' ) . '_file_name';

                try
                {
                    \
IPS\Output::i()->redirect( \IPS\gallery\Image::load( $id )->url() );
                }
                catch ( \
Exception $e ){}
            }
        }
    }

   
/**
     * Output CSS files
     *
     * @return void
     */
   
public static function outputCss()
    {
        \
IPS\Output::i()->cssFiles = array_merge( \IPS\Output::i()->cssFiles, \IPS\Theme::i()->css( 'gallery.css', 'gallery' ) );
        if ( \
IPS\Theme::i()->settings['responsive'] )
        {
            \
IPS\Output::i()->cssFiles = array_merge( \IPS\Output::i()->cssFiles, \IPS\Theme::i()->css( 'gallery_responsive.css', 'gallery', 'front' ) );
        }
    }
}