Свойство | Тип | Описание | |
---|---|---|---|
$_Subtitle | A string to be concatenated with $this->_Title. | ||
$_Title | The main text for the "title" tag in the head. | ||
$_TitleDivider | string to be concatenated with $this->_Title if there is also a $this->_Subtitle string being concatenated. |
Метод | Описание | |
---|---|---|
__construct ( string $Sender = '' ) | ||
addCss ( string $HRef, string $Media = '', boolean $AddVersion = true, array $Options = null ) | Adds a "link" tag to the head containing a reference to a stylesheet. | |
addRss ( $HRef, $Title ) | ||
addScript ( string $Src, string $Type = 'text/javascript', boolean $AddVersion = true, mixed $Options = [] ) | Adds a "script" tag to the head. | |
addString ( $String ) | Adds a string to the collection of strings to be inserted into the head. | |
addTag ( $Tag, $Properties, $Content = null, $Index = null ) | Adds a new tag to the head. | |
assetTarget ( ) : string | ||
clearCSS ( ) | Removes any added stylesheets from the head. | |
clearScripts ( ) | Removes any script include tags from the head. | |
clearTag ( $Tag, $Property = '', $Value = '' ) | Removes any tags with the specified $Tag, $Property, and $Value. | |
getStrings ( ) | Return all strings. | |
getTags ( $RequestedType = '' ) | Return all Tags of the specified type (or all tags). | |
setFavIcon ( $HRef ) | Sets the favicon location. | |
setSubtitle ( string $subtitle = '' ) | Sets the subtitle. | |
setTitleDivider ( string $titleDivider = ' — ' ) | Sets the title divider. | |
tagCmp ( $A, $B ) : integer | ||
tags ( array $Value = null ) | Gets or sets the tags collection. | |
title ( string $Title = '', boolean $NoSubtitle = false ) : mixed | string | Gets/sets the modules title. | |
toString ( ) | Render the entire head module. |
public addCss ( string $HRef, string $Media = '', boolean $AddVersion = true, array $Options = null ) | ||
$HRef | string | Location of the stylesheet relative to the web root (if an absolute path with http:// is provided, it will use the HRef as provided). ie. /themes/default/css/layout.css or http://url.com/layout.css |
$Media | string | Type media for the stylesheet. ie. "screen", "print", etc. |
$AddVersion | boolean | Whether to append version number as query string. |
$Options | array | Additional properties to pass to AddTag, e.g. 'ie' => 'lt IE 7'; |
public addScript ( string $Src, string $Type = 'text/javascript', boolean $AddVersion = true, mixed $Options = [] ) | ||
$Src | string | The location of the script relative to the web root. ie. "/js/jquery.js" |
$Type | string | The type of script being added. ie. "text/javascript" |
$AddVersion | boolean | Whether to append version number as query string. |
$Options | mixed | Additional options to add to the tag. The following values are accepted: - numeric: This will be the script's sort. - string: This will hint the script (inline will inline the file in the page. - array: An array of options (ex. sort, hint, version). |
public addString ( $String ) |
public addTag ( $Tag, $Properties, $Content = null, $Index = null ) |
public clearScripts ( ) |
public clearTag ( $Tag, $Property = '', $Value = '' ) |
public getTags ( $RequestedType = '' ) |
public setSubtitle ( string $subtitle = '' ) | ||
$subtitle | string | The subtitle which should be displayed in the title. |
public setTitleDivider ( string $titleDivider = ' — ' ) | ||
$titleDivider | string | The string that concats title and subtitle. |