本文整理汇总了PHP中flexicontent_html::flexiHtmlDiff方法的典型用法代码示例。如果您正苦于以下问题:PHP flexicontent_html::flexiHtmlDiff方法的具体用法?PHP flexicontent_html::flexiHtmlDiff怎么用?PHP flexicontent_html::flexiHtmlDiff使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flexicontent_html
的用法示例。
在下文中一共展示了flexicontent_html::flexiHtmlDiff方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
</th>
</tr>
<?php
foreach ($this->fields as $field) {
// used to hide the core fields from this listing
if ($field->iscore == 0 || $field->field_type == 'maintext' && !$this->tparams->get('hide_maintext')) {
// set the specific label for the maintext field
if ($field->field_type == 'maintext') {
$field->label = JText::_($this->tparams->get('maintext_label', $field->label));
$field->description = $this->tparams->get('maintext_desc', $field->description);
$field->display = $field->value ? flexicontent_html::nl2space($field->value[0]) : JText::_('FLEXI_NO_VALUE');
$field->displayversion = $field->version ? flexicontent_html::nl2space($field->version[0]) : JText::_('FLEXI_NO_VALUE');
}
$noplugin = '<div class="fc-mssg-inline fc-warning" style="margin:0 4px 6px 4px; max-width: unset;">' . JText::_('FLEXI_PLEASE_PUBLISH_THIS_PLUGIN') . '</div>';
//echo $field->name."<br/>";
$html = flexicontent_html::flexiHtmlDiff(!is_array($field->displayversion) ? $field->displayversion : implode('', $field->displayversion), !is_array($field->display) ? $field->display : implode('', $field->display), $this->codemode);
?>
<tr>
<td class="key" style="text-align:right;'">
<label for="<?php
echo $field->name;
?>
" class="label <?php
echo $tooltip_class;
?>
" title="<?php
echo flexicontent_html::getToolTip($field->label, $field->description, 0);
?>
">
<?php
echo JText::_($field->label);
示例2: foreach
?>
</th>
</tr>
<?php
foreach ($this->fields as $field) {
// used to hide the core fields from this listing
if ($field->iscore == 0 || $field->field_type == 'maintext' && !$this->tparams->get('hide_maintext')) {
// set the specific label for the maintext field
if ($field->field_type == 'maintext') {
$field->label = JText::_($this->tparams->get('maintext_label', $field->label));
$field->description = $this->tparams->get('maintext_desc', $field->description);
$field->display = $field->value ? flexicontent_html::nl2space($field->value[0]) : JText::_('FLEXI_NO_VALUE');
$field->displayversion = $field->version ? flexicontent_html::nl2space($field->version[0]) : JText::_('FLEXI_NO_VALUE');
}
$noplugin = '<div class="fc-mssg fc-warning">' . JText::_('FLEXI_PLEASE_PUBLISH_PLUGIN') . '</div>';
$html = flexicontent_html::flexiHtmlDiff($field->displayversion, $field->display, $this->codemode);
?>
<tr>
<td class="key">
<label for="<?php
echo $field->name;
?>
" class="hasTip" title="<?php
echo $field->label;
?>
::<?php
echo $field->description;
?>
">
<?php
echo JText::_($field->label);