shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
artesaos
/
seotools
/
src
/
SEOTools
/
Contracts
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
MetaTags.php
<?php namespace Artesaos\SEOTools\Contracts; use Illuminate\Config\Repository as Config; /** * MetaTags defines contract for the HTML meta tags container. * * Meta tags container allows specification and rendering of HTML page title and meta tags. * * Usage example: * * ```php * use Artesaos\SEOTools\SEOMeta; // implements `Artesaos\SEOTools\Contracts\MetaTags` * * $metaTags = new SEOMeta(); * * // specify meta info * $metaTags->setTitle('Home'); * $metaTags->setDescription('This is my page description'); * $metaTags->setCanonical('https://codecasts.com.br/lesson'); * $metaTags->addMeta('author', 'John Doe'); * * // render HTML, it should be placed within 'head' HTML tag * echo $metaTags->generate(); * ``` * * Implementation of this contract is available via {@see \Artesaos\SEOTools\Facades\SEOMeta} facade. * Facade usage example: * * ```php * use Artesaos\SEOTools\Facades\SEOMeta; * * // specify meta info * SEOMeta::setTitle('Home'); * SEOMeta::setDescription('This is my page description'); * SEOMeta::setCanonical('https://codecasts.com.br/lesson'); * SEOMeta::addMeta('author', 'John Doe'); * * // render HTML, it should be placed within 'head' HTML tag * echo SEOMeta::generate(); * ``` * * @see https://www.w3schools.com/tags/tag_meta.asp * @see \Artesaos\SEOTools\SEOMeta * @see \Artesaos\SEOTools\Facades\SEOMeta */ interface MetaTags { /** * Configuration. * * @param \Illuminate\Config\Repository $config * @return void */ public function __construct(Config $config); /** * Generates meta tags HTML. * * @param bool $minify * * @return string */ public function generate($minify = false); /** * Set the title. * * @param string $title * @param bool $appendDefault * * @return static */ public function setTitle($title, $appendDefault = true); /** * Sets the default title tag. * * @param string $default * * @return static */ public function setTitleDefault($default); /** * Set the title separator. * * @param string $separator * * @return static */ public function setTitleSeparator($separator); /** * Set the description. * * @param string $description * * @return static */ public function setDescription($description); /** * Sets the list of keywords, you can send an array or string separated with commas * also clears the previously set keywords. * * @param string|array $keywords * * @return static */ public function setKeywords($keywords); /** * Add a keyword. * * @param string|array $keyword * * @return static */ public function addKeyword($keyword); /** * Remove a metatag. * * @param string $key * * @return static */ public function removeMeta($key); /** * Add a custom meta tag. * * @param string|array $meta * @param string|null $value * @param string $name * * @return static */ public function addMeta($meta, $value = null, $name = 'name'); /** * Sets the canonical URL. * * @param string $url * * @return static */ public function setCanonical($url); /** * Sets the prev URL. * * @param string $url * * @return static */ public function setPrev($url); /** * Sets the next URL. * * @param string $url * * @return static */ public function setNext($url); /** * Add an alternate language. * * @param string $lang language code in format ISO 639-1 * @param string $url * * @return static */ public function addAlternateLanguage($lang, $url); /** * Add alternate languages. * * @param array $languages * * @return static */ public function addAlternateLanguages(array $languages); /** * Set an alternate language. * * @param string $lang language code in format ISO 639-1 * @param string $url * * @return static */ public function setAlternateLanguage($lang, $url); /** * Set alternate languages. * * @param array $languages * * @return static */ public function setAlternateLanguages(array $languages); /** * Get the title formatted for display. * * @return string */ public function getTitle(); /** * Get the title that was set. * * @return string */ public function getTitleSession(); /** * Get the title separator that was set. * * @return string */ public function getTitleSeparator(); /** * Get all metatags. * * @return array */ public function getMetatags(); /** * Get the Meta keywords. * * @return array */ public function getKeywords(); /** * Get the Meta description. * * @return string|null */ public function getDescription(); /** * Get the canonical URL. * * @return string */ public function getCanonical(); /** * Get the prev URL. * * @return string */ public function getPrev(); /** * Get the next URL. * * @return string */ public function getNext(); /** * Get alternate languages. * * @return array */ public function getAlternateLanguages(); /** * Takes the default title. * * @return string */ public function getDefaultTitle(); /** * Reset all data. * * @return void */ public function reset(); }
© 2026 UnknownSec