2014-05-14 13:24:20 +00:00
|
|
|
<?php namespace Backend\Facades;
|
|
|
|
|
|
|
|
|
|
use October\Rain\Support\Facade;
|
|
|
|
|
|
2020-09-11 02:49:16 +00:00
|
|
|
/**
|
|
|
|
|
* @method static string uri()
|
|
|
|
|
* @method static string url(string $path = null, array $parameters = [], bool $secure = null)
|
|
|
|
|
* @method static string baseUrl(string $path = null)
|
|
|
|
|
* @method static string skinAsset(string $path = null)
|
|
|
|
|
* @method static \Illuminate\Http\RedirectResponse redirect(string $path, int $status = 302, array $headers = [], bool $secure = null)
|
|
|
|
|
* @method static \Illuminate\Http\RedirectResponse redirectGuest(string $path, int $status = 302, array $headers = [], bool $secure = null)
|
|
|
|
|
* @method static \Illuminate\Http\RedirectResponse redirectIntended(string $path, int $status = 302, array $headers = [], bool $secure = null)
|
|
|
|
|
* @method static string date($dateTime, array $options = [])
|
|
|
|
|
* @method static string dateTime($dateTime, array $options = [])
|
|
|
|
|
*
|
|
|
|
|
* @see \Backend\Helpers\Backend
|
|
|
|
|
*/
|
2014-05-14 13:24:20 +00:00
|
|
|
class Backend extends Facade
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Get the registered name of the component.
|
2017-04-24 11:38:19 +00:00
|
|
|
*
|
2014-05-14 13:24:20 +00:00
|
|
|
* @return string
|
|
|
|
|
*/
|
2014-10-10 21:36:04 +00:00
|
|
|
protected static function getFacadeAccessor()
|
|
|
|
|
{
|
|
|
|
|
return 'backend.helper';
|
|
|
|
|
}
|
2014-05-14 13:24:20 +00:00
|
|
|
}
|