59 lines
1.1 KiB
PHP
59 lines
1.1 KiB
PHP
|
|
<?php namespace RainLab\Pages\Classes;
|
||
|
|
|
||
|
|
use ApplicationException;
|
||
|
|
use Validator;
|
||
|
|
use Lang;
|
||
|
|
use Event;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Represents a front-end menu item.
|
||
|
|
* This class is used on the front-end.
|
||
|
|
* In the back-end items are represented with the
|
||
|
|
* \RainLab\Pages\Classes\MenuItem objects.
|
||
|
|
*
|
||
|
|
* @package rainlab\pages
|
||
|
|
* @author Alexey Bobkov, Samuel Georges
|
||
|
|
*/
|
||
|
|
class MenuItemReference
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @var string Specifies the menu item type.
|
||
|
|
*/
|
||
|
|
public $type;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var string Specifies the item title
|
||
|
|
*/
|
||
|
|
public $title;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var string Specifies the item URL
|
||
|
|
*/
|
||
|
|
public $url;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var string Specifies the menu item code.
|
||
|
|
*/
|
||
|
|
public $code;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var string Indicates whether the item corresponds the currently viewed page.
|
||
|
|
*/
|
||
|
|
public $isActive = false;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var string Indicates whether an item subitem corresponds the currently viewed page.
|
||
|
|
*/
|
||
|
|
public $isChildActive = false;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var array Specifies the item subitems
|
||
|
|
*/
|
||
|
|
public $items = [];
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var array Specifies the item custom view bag properties.
|
||
|
|
*/
|
||
|
|
public $viewBag = [];
|
||
|
|
}
|