PHP 클래스 Arcanedev\SeoHelper\Entities\Description

저자: ARCANEDEV ([email protected])
상속: implements Arcanedev\SeoHelper\Contracts\Entities\Description, use trait Arcanedev\Support\Traits\Configurable
파일 보기 프로젝트 열기: arcanedev/seo-helper

보호된 프로퍼티들

프로퍼티 타입 설명
$content string The meta content.
$max integer The description max length.
$name string The meta name.

공개 메소드들

메소드 설명
__construct ( array $configs = [] ) Make Description instance.
__toString ( ) : string Render the tag.
get ( ) : string Get description content.
getContent ( ) : string Get raw description content.
getMax ( ) : integer Get description max length.
make ( string $content, integer $max = 155 ) : self Make a description instance.
render ( ) : string Render the tag.
set ( string $content ) : self Set description content.
setMax ( integer $max ) : self Set description max length.

비공개 메소드들

메소드 설명
checkMax ( integer $max ) Check title max length.
hasContent ( ) : boolean Check if description has content.

메소드 상세

__construct() 공개 메소드

Make Description instance.
public __construct ( array $configs = [] )
$configs array

__toString() 공개 메소드

Render the tag.
public __toString ( ) : string
리턴 string

get() 공개 메소드

Get description content.
public get ( ) : string
리턴 string

getContent() 공개 메소드

Get raw description content.
public getContent ( ) : string
리턴 string

getMax() 공개 메소드

Get description max length.
public getMax ( ) : integer
리턴 integer

make() 공개 정적인 메소드

Make a description instance.
public static make ( string $content, integer $max = 155 ) : self
$content string
$max integer
리턴 self

render() 공개 메소드

Render the tag.
public render ( ) : string
리턴 string

set() 공개 메소드

Set description content.
public set ( string $content ) : self
$content string
리턴 self

setMax() 공개 메소드

Set description max length.
public setMax ( integer $max ) : self
$max integer
리턴 self

프로퍼티 상세

$content 보호되어 있는 프로퍼티

The meta content.
protected string $content
리턴 string

$max 보호되어 있는 프로퍼티

The description max length.
protected int $max
리턴 integer

$name 보호되어 있는 프로퍼티

The meta name.
protected string $name
리턴 string