X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/platform/packages/seo-helper/src/Contracts
home
/
gfecatvj
/
sites
/
restate
/
platform
/
packages
/
seo-helper
/
src
/
Contracts
/
📁
..
📁
Entities
📁
Helpers
📄
RenderableContract.php
(280 B)
📄
SeoHelperContract.php
(1.48 KB)
📄
SeoMetaContract.php
(2.26 KB)
📄
SeoOpenGraphContract.php
(1.74 KB)
📄
SeoTwitterContract.php
(1.4 KB)
Editing: SeoMetaContract.php
<?php namespace Botble\SeoHelper\Contracts; use Botble\SeoHelper\Contracts\Entities\DescriptionContract; use Botble\SeoHelper\Contracts\Entities\MiscTagsContract; use Botble\SeoHelper\Contracts\Entities\TitleContract; use Botble\SeoHelper\Contracts\Entities\WebmastersContract; interface SeoMetaContract extends RenderableContract { /** * Set the Title instance. * * @param TitleContract $title * * @return self */ public function title(TitleContract $title); /** * Set the Description instance. * * @param DescriptionContract $description * * @return self */ public function description(DescriptionContract $description); /** * Set the MiscTags instance. * * @param MiscTagsContract $misc * * @return self */ public function misc(MiscTagsContract $misc); /** * Set the Webmasters instance. * * @param WebmastersContract $webmasters * * @return self */ public function webmasters(WebmastersContract $webmasters); /** * Set the title. * * @param string $title * @param string $siteName * @param string $separator * * @return self */ public function setTitle($title, $siteName = null, $separator = null); /** * Set the description content. * * @param string $content * * @return self */ public function setDescription($content); /** * Add a webmaster tool site verifier. * * @param string $webmaster * @param string $content * * @return self */ public function addWebmaster($webmaster, $content); /** * Set the current URL. * * @param string $url * * @return self */ public function setUrl($url); /** * Set the Google Analytics code. * * @param string $code * * @return self */ public function setGoogleAnalytics($code); /** * Add a meta tag. * * @param string $name * @param string $content * * @return self */ public function addMeta($name, $content); /** * Add many meta tags. * * @param array $meta * * @return self */ public function addMetas(array $meta); }
Upload File
Create Folder