当前位置: 首页>>代码示例>>PHP>>正文


PHP comquick2cartHelper::isValidImg方法代码示例

本文整理汇总了PHP中comquick2cartHelper::isValidImg方法的典型用法代码示例。如果您正苦于以下问题:PHP comquick2cartHelper::isValidImg方法的具体用法?PHP comquick2cartHelper::isValidImg怎么用?PHP comquick2cartHelper::isValidImg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在comquick2cartHelper的用法示例。


在下文中一共展示了comquick2cartHelper::isValidImg方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

?>
</strong>
				</a>
			</div>
		</div>
		<!-- image div  -->
		<div class="row-fluid">
			<div class="span12" align="center" style="height: <?php 
echo $com_params->get('storeavatar_height') + 5;
?>
px;" >
			<?php 
$image = $data['store_avatar'];
$img = '';
if (!empty($data['store_avatar'])) {
    $img = $helperobj->isValidImg($data['store_avatar']);
}
if (empty($img)) {
    $img = JUri::base() . 'components' . DS . 'com_quick2cart' . DS . 'images' . DS . 'default_store_image.png';
}
?>
				<a href="<?php 
echo $store_link;
?>
">
					<img class=' img-rounded' src="<?php 
echo $img;
?>
" alt="<?php 
echo JText::_('QTC_IMG_NOT_FOUND');
?>
开发者ID:BetterBetterBetter,项目名称:B3App,代码行数:31,代码来源:thumbnail.php

示例2:

    if ($integrate_with != 'none') {
        ?>
							<p style="font-size: 13px;"><?php 
        echo JText::sprintf('COM_QUICK2CART_CREATED_BY', $profile_path);
        ?>
</p>
							<?php 
    }
    ?>
					</legend>

					<span>
						<?php 
    $img = '';
    if (!empty($sinfo['store_avatar'])) {
        $img = $comquick2cartHelper->isValidImg($sinfo['store_avatar']);
    }
    if (empty($img)) {
        $img = JUri::base() . 'components' . DS . 'com_quick2cart' . DS . 'assets' . DS . 'images' . DS . 'default_store_image.png';
    }
    ?>
						<img align="right" class='img-rounded img-polaroid qtc_putmargin5px' src="<?php 
    echo $img;
    ?>
" alt="<?php 
    echo JText::_('QTC_IMG_NOT_FOUND');
    ?>
"/>

						<p>
							<?php 
开发者ID:BetterBetterBetter,项目名称:B3App,代码行数:31,代码来源:storeinfo.php

示例3:

    echo JText::_('COM_Q2C_EXISTING_IMAGE_MSG');
    ?>
</p>
						</div>
						<div class="text-info">
							<p><?php 
    echo JText::_('COM_Q2C_EXISTING_IMAGE');
    ?>
</p>
						</div>

						<div>
							<?php 
    $img = '';
    if (!empty($this->storeinfo[0]->store_avatar)) {
        $img = $comquick2cartHelper->isValidImg($this->storeinfo[0]->store_avatar);
    }
    if (empty($img)) {
        $img = JUri::base() . 'components' . DS . 'com_quick2cart' . DS . 'images' . DS . 'default_store_image.png';
    }
    ?>

							<img class='img-rounded img-polaroid' src='<?php 
    echo $img;
    ?>
' />
						</div>
						<?php 
} else {
    ?>
						<input type="file" name="avatar" id="avatar"
开发者ID:BetterBetterBetter,项目名称:B3App,代码行数:31,代码来源:createstore.php

示例4: foreach

								<div class='span12'>
									<?php 
$images = !empty($this->itemdetail->images) ? json_decode($this->itemdetail->images, true) : '';
$img = JUri::base() . 'components' . DS . 'com_quick2cart' . DS . 'assets' . DS . 'images' . DS . 'default_product.jpg';
if (!empty($images)) {
    // Get first key
    $firstKey = 0;
    foreach ($images as $key => $img) {
        $firstKey = $key;
        break;
    }
    require_once JPATH_SITE . DS . 'components' . DS . 'com_quick2cart' . DS . 'helpers' . DS . 'media.php';
    $media = new qtc_mediaHelper();
    $file_name_without_extension = $media->get_media_file_name_without_extension($images[$firstKey]);
    $media_extension = $media->get_media_extension($images[$firstKey]);
    $img = $comquick2cartHelper->isValidImg($file_name_without_extension . '_L.' . $media_extension);
    if (empty($img)) {
        $img = JUri::base() . 'components' . DS . 'com_quick2cart' . DS . 'assets' . DS . 'images' . DS . 'default_product.jpg';
    }
}
if (!empty($images)) {
    ?>
										<a href="<?php 
    echo $img;
    ?>
" class="swipebox" title="<?php 
    echo $this->itemdetail->name;
    ?>
">
											<img itemprop="image" class='img-rounded q2c_image' id="qtc_prod_image"
												src="<?php 
开发者ID:BetterBetterBetter,项目名称:B3App,代码行数:31,代码来源:default.php

示例5: foreach

			<?php 
$images = json_decode($data['images'], true);
$img = JUri::base() . 'components' . DS . 'com_quick2cart' . DS . 'assets' . DS . 'images' . DS . 'default_product.jpg';
if (!empty($images)) {
    // Get first key
    $firstKey = 0;
    foreach ($images as $key => $img) {
        $firstKey = $key;
        break;
    }
    require_once JPATH_SITE . DS . 'components' . DS . 'com_quick2cart' . DS . 'helpers' . DS . 'media.php';
    // create object of media helper class
    $media = new qtc_mediaHelper();
    $file_name_without_extension = $media->get_media_file_name_without_extension($images[$firstKey]);
    $media_extension = $media->get_media_extension($images[$firstKey]);
    $img = $helperobj->isValidImg($file_name_without_extension . '_L.' . $media_extension);
    if (empty($img)) {
        $img = JUri::base() . 'components' . DS . 'com_quick2cart' . DS . 'assets' . DS . 'images' . DS . 'default_product.jpg';
    }
}
?>

			<div class="caption">
				<a title="<?php 
echo $data['name'];
?>
" href="<?php 
echo $product_link;
?>
">
					<img class=' img-rounded q2c_pin_image'
开发者ID:BetterBetterBetter,项目名称:B3App,代码行数:31,代码来源:product.php


注:本文中的comquick2cartHelper::isValidImg方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。