class DrupalDefaultMetaTag in Metatag 7
The default meta tag class from which all others inherit.
Hierarchy
- class \DrupalDefaultMetaTag implements DrupalMetaTagInterface
Expanded class hierarchy of DrupalDefaultMetaTag
File
- ./
metatag.inc, line 80 - Metatag primary classes.
View source
class DrupalDefaultMetaTag implements DrupalMetaTagInterface {
/**
* All of the basic information about this tag.
*
* @var array
*/
protected $info;
/**
* The values submitted for this tag.
*
* @var array
*/
protected $data = array(
'value' => '',
);
/**
* This item's weight; used for sorting the output.
*
* @var float
*/
protected $weight = 0;
/**
* {@inheritdoc}
*/
public function __construct(array $info, array $data = NULL) {
$this->info = $info;
if (isset($data)) {
$this->data = $data;
}
}
/**
* {@inheritdoc}
*/
public function getWeight() {
static $counter = 0;
// If no weight value is found, stack this meta tag at the end.
$weight = 100;
if (!empty($this->info['weight'])) {
$weight = $this->info['weight'];
}
return $weight + $counter++ * 0.1;
}
/**
* {@inheritdoc}
*/
public function getForm(array $options = array()) {
return array();
}
/**
* {@inheritdoc}
*/
public function getValue(array $options = array()) {
$value = $this
->tidyValue($this->data['value']);
// Translate the final output string prior to output. Use the
// 'output' i18n_string object type, and pass along the meta tag's
// options as the context so it can be handled appropriately.
$value = metatag_translate_metatag($value, $this->info['name'], $options, NULL, TRUE);
return $this
->truncate($this
->tidyValue($this->data['value']));
}
/**
* {@inheritdoc}
*/
public function getElement(array $options = array()) {
$value = $this
->getValue($options);
if (strlen($value) === 0) {
return array();
}
// The stack of elements that will be output.
$elements = array();
// Dynamically add each option to this setting.
$base_element = isset($this->info['element']) ? $this->info['element'] : array();
// Single item.
if (empty($this->info['multiple'])) {
$values = array(
$value,
);
}
else {
$values = array_filter(explode(',', $value));
}
// Loop over each item.
if (!empty($values)) {
foreach ($values as $ctr => $value) {
$value = trim($value);
// Some meta tags must be output as secure URLs.
if (!empty($this->info['secure'])) {
$value = str_replace('http://', 'https://', $value);
}
// Combine the base configuration for this meta tag with the value.
$element = $base_element + array(
'#theme' => 'metatag',
'#tag' => 'meta',
'#id' => 'metatag_' . $this->info['name'] . '_' . $ctr,
'#name' => $this->info['name'],
'#value' => $value,
'#weight' => $this
->getWeight(),
);
// Add header information if desired.
if (!empty($this->info['header'])) {
$element['#attached']['drupal_add_http_header'][] = array(
$this->info['header'],
$value,
);
}
$elements[] = array(
$element,
$element['#id'],
);
}
}
if (!empty($elements)) {
return array(
'#attached' => array(
'drupal_add_html_head' => $elements,
),
);
}
}
/**
* Remove unwanted formatting from a meta tag.
*
* @param string $value
* The meta tag value to be tidied up.
*
* @return string
* The meta tag value after it has been tidied up.
*/
protected function tidyValue($value) {
// This shouldn't happen, but protect against tokens returning arrays.
if (!is_string($value)) {
return '';
}
// Check for Media strings from the WYSIWYG submodule.
if (module_exists('media_wysiwyg') && strpos($value, '[[{') !== FALSE) {
// In https://www.drupal.org/node/2129273 media_wysiwyg_filter() was
// changed to require several additional arguments.
$langcode = language_default('language');
$value = media_wysiwyg_filter($value, NULL, NULL, $langcode, NULL, NULL);
}
// Specifically replace encoded spaces, because some WYSIWYG editors are
// silly. Do this before decoding the other HTML entities so that the output
// doesn't end up with a bunch of a-circumflex characters.
$value = str_replace(' ', ' ', $value);
// Decode HTML entities.
$value = decode_entities($value);
// First off, remove the <style> tag, because strip_tags() leaves the CSS
// inline.
$value = preg_replace('/<style\\b[^>]*>(.*?)<\\/style>/is', '', $value);
// Ditto for JavaScript.
$value = preg_replace('/<script\\b[^>]*>(.*?)<\\/script>/is', '', $value);
// Remove any HTML code that might have been included.
$value = strip_tags($value);
// Strip errant whitespace.
$value = str_replace(array(
"\r\n",
"\n",
"\r",
"\t",
), ' ', $value);
$value = str_replace(' ', ' ', $value);
$value = str_replace(' ', ' ', $value);
$value = trim($value);
return $value;
}
/**
* Make sure a given URL is absolute.
*
* @param string $url
* The URL to convert to an absolute URL.
*
* @return string
* The argument converted to an absolute URL.
*/
protected function convertUrlToAbsolute($url) {
// Convert paths relative to the hostname, that start with a slash, to
// ones that are relative to the Drupal root path; ignore protocol-relative
// URLs.
if (strpos($url, base_path()) === 0 && strpos($url, '//') !== 0) {
// Logic:
// * Get the length of the base_path(),
// * Get a portion of the image's path starting from the position equal
// to the base_path()'s length; this will result in a path relative
// to the Drupal installation's base directory.
$len = strlen(base_path());
$url = substr($url, $len);
}
// Pass everything else through file_create_url(). The alternative is to
// use url() but it would insert '?q=' into the path.
return file_create_url($url);
}
/**
* Shorten a string to a certain length using ::textSummary().
*
* @param string $value
* String to shorten.
*
* @return string
* Shortened string.
*/
protected function truncate($value) {
$maxlength = $this
->maxlength();
if (!empty($value) && $maxlength > 0) {
$value = $this
->textSummary($value, $maxlength);
}
return $value;
}
/**
* Identify the maximum length of which strings will be allowed.
*
* @return int
* Maxlenght.
*/
protected function maxlength() {
if (isset($this->info['maxlength'])) {
return intval(variable_get('metatag_maxlength_' . $this->info['name'], $this->info['maxlength']));
}
return 0;
}
/**
* {@inheritdoc}
*/
public static function textSummary($text, $size) {
// What used to be called 'teaser' is now called 'summary', but
// the variable 'teaser_length' is preserved for backwardscompatibility.
// @code
// if (!isset($size)) {
// $size = variable_get('teaser_length', 600);
// }
// @endcode
// Find where the delimiter is in the body.
$delimiter = strpos($text, '<!--break-->');
// If the size is zero, and there is no delimiter, the entire body is the
// summary.
if ($size == 0 && $delimiter === FALSE) {
return $text;
}
// If a valid delimiter has been specified, use it to chop off the summary.
if ($delimiter !== FALSE) {
return substr($text, 0, $delimiter);
}
// We check for the presence of the PHP evaluator filter in the current
// format. If the body contains PHP code, we do not split it up to prevent
// parse errors.
// @code
// if (isset($format)) {
// $filters = filter_list_format($format);
// if (isset($filters['php_code']) && $filters['php_code']->status && strpos($text, '<?') !== FALSE) {
// return $text;
// }
// }
// @endcode
// If we have a short body, the entire body is the summary.
if (drupal_strlen($text) <= $size) {
return $text;
}
// If the delimiter has not been specified, try to split at paragraph or
// sentence boundaries.
// The summary may not be longer than maximum length specified.
// Initial slice.
$summary = truncate_utf8($text, $size);
// Store the actual length of the UTF8 string -- which might not be the same
// as $size.
$max_rpos = strlen($summary);
// How much to cut off the end of the summary so that it doesn't end in the
// middle of a paragraph, sentence, or word.
// Initialize it to maximum in order to find the minimum.
$min_rpos = $max_rpos;
// Store the reverse of the summary. We use strpos on the reversed needle
// and haystack for speed and convenience.
$reversed = strrev($summary);
// Build an array of arrays of break points grouped by preference.
$break_points = array();
// A paragraph near the end of sliced summary is most preferable.
$break_points[] = array(
'</p>' => 0,
);
// If no complete paragraph then treat line breaks as paragraphs.
// $line_breaks = array('<br />' => 6, '<br>' => 4);
// Newline only indicates a line break if line break converter
// filter is present.
// @code
// if (isset($filters['filter_autop'])) {
// $line_breaks["\n"] = 1;
// }
// $break_points[] = $line_breaks;
// @endcode
// If the first paragraph is too long, split at the end of a sentence.
// @code
// $break_points[] = array('. ' => 1, '! ' => 1, '? ' => 1, '。' => 0, '؟ ' => 1);
// @endcode
// From https://www.drupal.org/node/1482178.
// If the first sentence is too long, split at the first word break.
$word_breaks = array(
' ' => 0,
"\t" => 0,
);
$break_points[] = $word_breaks;
// Iterate over the groups of break points until a break point is found.
foreach ($break_points as $points) {
// Look for each break point, starting at the end of the summary.
foreach ($points as $point => $offset) {
// The summary is already reversed, but the break point isn't.
$rpos = strpos($reversed, strrev($point));
if ($rpos !== FALSE) {
$min_rpos = min($rpos + $offset, $min_rpos);
}
}
// If a break point was found in this group, slice and stop searching.
if ($min_rpos !== $max_rpos) {
// Don't slice with length 0. Length must be <0 to slice from RHS.
$summary = $min_rpos === 0 ? $summary : substr($summary, 0, 0 - $min_rpos);
break;
}
}
// If the htmlcorrector filter is present, apply it to the generated
// summary.
// @code
// if (isset($filters['filter_htmlcorrector'])) {
// $summary = _filter_htmlcorrector($summary);
// }
// @endcode
return trim($summary);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DrupalDefaultMetaTag:: |
protected | property | The values submitted for this tag. | |
DrupalDefaultMetaTag:: |
protected | property | All of the basic information about this tag. | |
DrupalDefaultMetaTag:: |
protected | property | This item's weight; used for sorting the output. | |
DrupalDefaultMetaTag:: |
protected | function | Make sure a given URL is absolute. | |
DrupalDefaultMetaTag:: |
public | function |
Get the HTML tag for this meta tag. Overrides DrupalMetaTagInterface:: |
4 |
DrupalDefaultMetaTag:: |
public | function |
Build the form for this meta tag. Overrides DrupalMetaTagInterface:: |
3 |
DrupalDefaultMetaTag:: |
public | function |
Get the string value of this meta tag. Overrides DrupalMetaTagInterface:: |
3 |
DrupalDefaultMetaTag:: |
public | function |
Calculate the weight of this meta tag. Overrides DrupalMetaTagInterface:: |
|
DrupalDefaultMetaTag:: |
protected | function | Identify the maximum length of which strings will be allowed. | |
DrupalDefaultMetaTag:: |
public static | function |
Copied from text.module with the following changes:. Overrides DrupalMetaTagInterface:: |
|
DrupalDefaultMetaTag:: |
protected | function | Remove unwanted formatting from a meta tag. | |
DrupalDefaultMetaTag:: |
protected | function | Shorten a string to a certain length using ::textSummary(). | |
DrupalDefaultMetaTag:: |
public | function |
Constructor. Overrides DrupalMetaTagInterface:: |
1 |