Seditio Source
Root |
./othercms/ips_4.3.4/applications/core/extensions/core/FrontNavigation/MenuSeparator.php
<?php
/**
 * @brief        Front Navigation Extension: Menu Separator
 * @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    Core
 * @since        22 Jul 2015
 */

namespace IPS\core\extensions\core\FrontNavigation;

/* 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;
}

/**
 * Front Navigation Extension: Menu Separator
 */
class _MenuSeparator
{
   
/**
     * Can access?
     *
     * @return    bool
     */
   
public function canView()
    {
        return
TRUE;
    }
           
   
/**
     * Children
     *
     * @param    bool    $noStore    If true, will skip datastore and get from DB (used for ACP preview)
     * @return    array
     */
   
public function children( $noStore=FALSE )
    {
        return
NULL;
    }
}