本文整理汇总了PHP中flexicontent_html::escape方法的典型用法代码示例。如果您正苦于以下问题:PHP flexicontent_html::escape方法的具体用法?PHP flexicontent_html::escape怎么用?PHP flexicontent_html::escape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flexicontent_html
的用法示例。
在下文中一共展示了flexicontent_html::escape方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: if
<?php if ($show_item_handles) : ?>
<!-- fc_add_scroller_horizontal -->
<div class="mod_fc_handles_outer">
<div id="mod_fc_item_handles<?php echo $module->id; ?>" class="mod_fc_item_handles fc_add_scroller_horizontal"
onmouseover="mod_fc_carousel<?php echo $module->id; ?>.stop(); mod_fc_carousel<?php echo $module->id; ?>.autoPlay=false;"
onmouseout="if (mod_fc_carousel<?php echo $module->id ?>_autoPlay==1) mod_fc_carousel<?php echo $module->id; ?>.play(<?php echo $interval; ?>,'next',true); else if (mod_fc_carousel<?php echo $module->id ?>_autoPlay==-1) mod_fc_carousel<?php echo $module->id; ?>.play(<?php echo $interval; ?>,'previous',true);"
>
<?php $img_path = JURI::base(true) .'/'; ?>
<?php foreach ($list[$ord]['standard'] as $item) : ?>
<?php
$tip_text = '';
if ($item_handle_title == 1) $tip_text .= flexicontent_html::escape($item->title) . '::';
if ($item_handle_text == 1) $tip_text .= flexicontent_html::escape($item->text);
$classes = 'mod_fc_item_handle' . ($tip_text ? ' hasTip' : '');
?>
<span class="<?php echo $classes; ?>" title="<?php echo $tip_text; ?>" >
<img alt="" width="<?php echo $item_handle_width; ?>" height="<?php echo $item_handle_height; ?>" src="<?php echo @ $item->image ? $item->image : $img_path.'components/com_flexicontent/assets/images/image.png'; ?>" />
</span>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>
<?php if ($show_curritem_info) : ?>
<div id="mod_fc_activeitem_info<?php echo $module->id; ?>" class="mod_fc_activeitem_info" >
<?php /*echo JText::_( 'FLEXI_MOD_CAROUSEL_DISPLAYING').': ';*/ ?>
示例2:
echo JText::_('FLEXI_FIELD_FILE_EMAIL_YOUR_EMAIL');
?>
</label>
<input type="text" id="from_field" name="from" class="inputbox" value="<?php
echo flexicontent_html::escape($data->from);
?>
" size="52" />
</div>
<div class="formelm">
<label for="subject_field">
<?php
echo JText::_('FLEXI_FIELD_FILE_EMAIL_SUBJECT');
?>
</label>
<input type="text" id="subject_field" name="subject" class="inputbox" value="<?php
echo flexicontent_html::escape($data->subject);
?>
" size="52" />
</div>
<div class="formelm">
<label for="desc_field" style="vertical-align:top;">
<?php
echo JText::_('FLEXI_FIELD_FILE_EMAIL_DESCRIPTION');
?>
</label>
<textarea id="desc_field" name="desc" class="inputbox" cols="40" rows="5" /><?php
echo $data->desc;
?>
</textarea>
</div>
<p>