Sindbad~EG File Manager
<?php
namespace JeroenNoten\LaravelAdminLte\Helpers;
class NavbarItemHelper extends MenuItemHelper
{
/**
* Checks if a menu item is a navbar custom search box.
*
* @param mixed $item
* @return bool
*/
public static function isCustomSearch($item)
{
return isset($item['text'], $item['type'])
&& $item['type'] === 'navbar-search';
}
/**
* Checks if a menu item is a navbar fullscreen toggle widget.
*
* @param mixed $item
* @return bool
*/
public static function isFullscreen($item)
{
return isset($item['type']) && $item['type'] === 'fullscreen-widget';
}
/**
* Checks if a menu item is a navbar dark mode toggle widget.
*
* @param mixed $item
* @return bool
*/
public static function isDarkmode($item)
{
return isset($item['type']) && $item['type'] === 'darkmode-widget';
}
/**
* Checks if a menu item is a navbar notification.
*
* @param mixed $item
* @return bool
*/
public static function isNotification($item)
{
return isset($item['id'], $item['icon'], $item['type'])
&& (isset($item['url']) || isset($item['route']))
&& $item['type'] === 'navbar-notification';
}
/**
* Checks if a menu item is a navbar search item (legacy or new).
*
* @param mixed $item
* @return bool
*/
public static function isSearch($item)
{
return self::isLegacySearch($item) || self::isCustomSearch($item);
}
/**
* Checks if a menu item is accepted for the navbar section.
*
* @param mixed $item
* @return bool
*/
public static function isAcceptedItem($item)
{
return self::isNotification($item)
|| self::isFullscreen($item)
|| self::isDarkmode($item)
|| self::isSubmenu($item)
|| self::isSearch($item)
|| self::isLink($item);
}
/**
* Checks if a menu item is valid for the left section of the navbar.
*
* @param mixed $item
* @return bool
*/
public static function isValidLeftItem($item)
{
return self::isAcceptedItem($item) && ! empty($item['topnav']);
}
/**
* Checks if a menu item is valid for the right section of the navbar.
*
* @param mixed $item
* @return bool
*/
public static function isValidRightItem($item)
{
return self::isAcceptedItem($item) && ! empty($item['topnav_right']);
}
/**
* Checks if a menu item is valid for the user menu section of the navbar.
*
* @param mixed $item
* @return bool
*/
public static function isValidUserMenuItem($item)
{
return self::isAcceptedItem($item) && ! empty($item['topnav_user']);
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists