當前位置: 首頁>>代碼示例>>PHP>>正文


PHP flexicontent_html::escape方法代碼示例

本文整理匯總了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').': ';*/ ?>
開發者ID:kosmosby,項目名稱:medicine-prof,代碼行數:30,代碼來源:carousel.php

示例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>
開發者ID:khetsothea,項目名稱:flexicontent-cck,代碼行數:31,代碼來源:share_form.php


注:本文中的flexicontent_html::escape方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。