PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
packages
/
theme
/
src
/
Supports
<?php namespace Botble\Theme\Supports; use AdminBar; use BaseHelper; use Illuminate\Contracts\Container\BindingResolutionException; use Botble\Sitemap\Sitemap; class SiteMapManager { /** * @var Sitemap */ protected $siteMap; /** * SiteMapManager constructor. * @throws BindingResolutionException */ public function __construct() { // create new site map object $this->siteMap = app()->make('sitemap'); // set cache (key (string), duration in minutes (Carbon|Datetime|int), turn on/off (boolean)) // by default cache is disabled $this->siteMap->setCache('public.sitemap', config('core.base.general.cache_site_map')); if (!BaseHelper::getHomepageId()) { $this->siteMap->add(route('public.index'), '2021-03-22 10:00', '1.0', 'daily'); } AdminBar::setIsDisplay(false); } /** * @param string $url * @param string $date * @param string $priority * @param string $sequence * @return $this */ public function add($url, $date, $priority = '1.0', $sequence = 'daily') { if (!$this->siteMap->isCached()) { $this->siteMap->add($url, $date, $priority, $sequence); } return $this; } /** * @param string $type * @return string */ public function render($type = 'xml') { // show your site map (options: 'xml' (default), 'html', 'txt', 'ror-rss', 'ror-rdf') return $this->siteMap->render($type); } }
[-] AdminBar.php
[edit]
[-] Youtube.php
[edit]
[+]
..
[-] Vimeo.php
[edit]
[-] ThemeSupport.php
[edit]
[-] SiteMapManager.php
[edit]