Your IP : 216.73.216.43


Current Path : /home/cbequiperp/www/plugins/flexicontent_fields/core/tmpl/title/
Upload File :
Current File : /home/cbequiperp/www/plugins/flexicontent_fields/core/tmpl/title/value_default.php

<?php

/*
 * Add prefix / suffix
 */
$field->{$prop} =
	$pretext
		. $item->title .
	$posttext;

/*
 * Add OGP Tags
 */
if ($field->parameters->get('useogp', 1) && $field->{$prop})
{
	// The current view is frontend view with HTML format and is a full item view of current item
	if (static::$isHtmlViewFE && $isMatchedItemView)
	{
		$ogpmaxlen = $field->parameters->get('ogpmaxlen', 300);
		$content_val = flexicontent_html::striptagsandcut($field->{$prop}, $ogpmaxlen);

		$document->addCustomTag('<meta property="og:title" content="'.$content_val.'" />');
	}
}

/*
 * Add microdata property (currently no parameter in XML for this field)
 */
$itemprop = $field->parameters->get('microdata_itemprop', 'name');
if ($itemprop)
{
	$field->{$prop} = '
		<div style="display:inline" itemprop="'.$itemprop.'" >
			' . $field->{$prop} . '
		</div>';
}