Authored by 2586703@qq.com

Merge branch 'develop' of http://git.dev.yoho.cn/web/yohood into develop

... ... @@ -297,14 +297,12 @@ define('channel', function(require, exports) {
postSwitch();
}, 5000);
})
$('.side-related-tab').on('click', 'a', function() {
nowIndex = $(this).index();
if ($(this).hasClass('current')) return;
$(this).addClass('current').siblings().removeClass('current');
$('.side-related-list').hide().eq(nowIndex).show();
});
relatedTop = $('.side-related-post').offset().top;
$(window).on('scroll', function() {
relatedTop = $('.app-download').offset().top + $('.app-download').outerHeight();
... ...
... ... @@ -2,9 +2,11 @@ define('yohood', function(require, exports) {
var swipe = require("plugins/swipe");
var $ = require("jquery");
var common = require("common");
var share = require('plugins/share');
var freetile = require("lib/ui/jquery.freetile");
var goodsSwiper,
share = require('plugins/share');
var goodsSwiper;
require("plugins/slider");
require("plugins/imgZoom");
require("plugins/pagination");
//设置瀑布流
exports.setFlowLayout = setFlowLayout = function() {
... ... @@ -150,48 +152,10 @@ define('yohood', function(require, exports) {
//show页面
exports.show = function() {
$(".look_big_image").bind("click", function(event) {
var divName = '#mask';
var sourceImage = $(this).attr("source");
var imageWidth = parseInt($(divName).children().attr("width"));
var imageHeight = parseInt($(divName).children().attr("height"));
$(divName).html('<img src="' + sourceImage + '" width="' + imageWidth + '" height="' + imageHeight + '" />').attr("current_class", $(this).parent().attr("class"));
var top = ($(window).height() - imageHeight) / 2;
var left = ($(window).width() - imageWidth) / 2;
var scrollTop = 0; //$(document).scrollTop();
var scrollLeft = 0; //$(document).scrollLeft();
$(divName).css({
position: 'absolute',
'top': top + scrollTop,
left: left + scrollLeft
$('.show-wrap').find('.layout-item').each(function() {
$(this).imgZoom({
imgTag: 'pic-tip',
});
$(".model").show();
if (left - 75 > 10) {
$(".image-prev").css("left", left - 75);
$(".image-next").css("right", left - 75);
}
$.each($(this).parents("span").children("span"), function(index, dom) {
var style_top = parseInt($(dom).attr("x")) / 10000 * imageHeight;
var style_left = parseInt($(dom).attr("y")) / 10000 * imageWidth;
$(divName).append('<a class="pic-tip" style="left:' + style_left + 'px;top:' + style_top + 'px;">' + $(dom).attr("label") + '</a>')
});
event.stopPropagation();
});
$(".image-next, .image-prev").bind("click", function() {
var current_class = $("#mask").attr("current_class");
var pos = parseInt(current_class.replace('single_', ''));
if ($(this).attr("class").indexOf("image-next") != -1) {
pos = pos + 1;
} else {
pos = pos - 1;
}
if ($(".single_" + pos).size() > 0) {
$(".single_" + pos).find(".look_big_image").click();
}
});
$(".ui-dialog-close").bind("click", function(event) {
$(".model").hide();
event.stopPropagation();
});
}
... ... @@ -321,5 +285,188 @@ define('yohood', function(require, exports) {
$('.brand-introduction').hide();
});
$(".search-btn").click();
};
//详情页
exports.detail = function()
{
var shareUrl,
shareCover,
detailTitle,
detailSubtitle;
var timer,
nowIndex,
relatedTop;
//微信分享鼠标时间
$('.yohoo-share-button-wx').on('mouseover', function() {
$('.wx-qrcode-dialog').show();
}).on('mouseout', function() {
$('.wx-qrcode-dialog').hide();
});
shareUrl = $(".share").attr("data-link");
shareCover = $(".share").attr("cover-url");
detailTitle = $('.detail-title').find('h2');
detailSubtitle = $('.detail-title').find('h3');
//分享
share.init({
shareUrl: shareUrl,
img: shareCover,
sinaText: '【YOHOOD 2015】' + detailTitle.text() + '\r\n' + detailSubtitle.text() + '@YOHO潮流志',
fbTextFunction: function() {
return {
des: '【YOHOOD 2015】' + detailTitle.text() + '\r\n' + detailSubtitle.text(),
name: '【YOHOOD 2015】' + detailTitle.text() + '\r\n' + detailSubtitle.text(),
caption: '【YOHOOD 2015】' + detailTitle.text() + '\r\n' + detailSubtitle.text(),
url: location.href
}
},
tweetText: '【YOHOOD 2015】' + detailTitle.text() + '\r\n' + detailSubtitle.text(),
qqText: '【YOHOOD 2015】' + detailTitle.text() + ' ' + detailSubtitle.text() + '#YOHOOD 2015'
});
//详情页图片滚动
if ($('.detail-slide').size() > 0) {
//slide大图上的左右箭头显示
$('.slide-shadow').on('mouseover', 'a', function() {
if ($(this).hasClass('slide-shadow-prev')) {
$('.slide-big-ctrl-prev').show();
} else {
$('.slide-big-ctrl-next').show();
}
}).on('mouseout', 'a', function() {
$('.slide-big-ctrl-prev, .slide-big-ctrl-next').hide();
});
$('.detail-slide-body').on('mouseout', function() {
$('.slide-big-ctrl-prev, .slide-big-ctrl-next').hide();
});
$('.detail-slide-big-ctrl').on('mouseenter', 'a', function() {
$(this).show();
});
//图片滚动
$(".detail-slide-piclist").slider({
pageCtrl: $(".detail-slide-ctrl-tabs")
});
$('.slide-big-ctrl-prev').on('click', function() {
$(".detail-slide-piclist").slider('slidePrev');
});
$('.slide-big-ctrl-next').on('click', function() {
$(".detail-slide-piclist").slider('slideNext');
});
}
//侧栏推荐切换
clearInterval(timer);
function postSwitch() {
$('.side-related-tab').find('a').each(function(i) {
if ($(this).hasClass('current')) {
$(this).removeClass('current');
} else {
$(this).addClass('current');
$('.side-related-list').hide().eq(i).show();
}
});
}
timer = setInterval(function() {
postSwitch();
}, 5000);
$('.side-related-post').on('mouseenter', function() {
clearInterval(timer);
}).on('mouseleave', function() {
timer = setInterval(function() {
postSwitch();
}, 5000);
})
$('.side-related-tab').on('click', 'a', function() {
nowIndex = $(this).index();
if ($(this).hasClass('current')) return;
$(this).addClass('current').siblings().removeClass('current');
$('.side-related-list').hide().eq(nowIndex).show();
});
relatedTop = $('.side-related-post').offset().top;
$(window).on('scroll', function() {
relatedTop = $('.app-download').offset().top + $('.app-download').outerHeight();
if (relatedTop <= $(this).scrollTop()) {
$('.side-related-post').css({
"position": "fixed",
"top": "0",
"left": "50%",
"width": "280px",
"marginLeft": "210px"
})
} else {
$('.side-related-post').removeAttr('style');
}
});
}
//详情页资讯
exports.detailNews = function(id)
{
var recom = '';
var hotVideo = '';
var lastVideo = '';
var template = function(id, title, img, url, isVideo, isTitleStyle)
{
var playIcon = '';
var titleStyle = '';
var html = '<div class="layout-item clearfix">'+
'<div class="image-box">'+
'<a href="'+url+'">' +
'<img src="'+img+'" alt="" style="height:230px;width:230px;">'+
'{playIcon}'+
'</a>'+
'</div>' +
'<div class="content">' +
'<h2 {titleStyle}>' +
'<a href="'+url+'">'+title+'</a>'+
'</h2>' +
'</div>' +
'</div>';
if(isVideo)
{
playIcon = '<i class="play-icon"></i>';
}
if(isTitleStyle)
{
titleStyle = 'class="volupia"';
}
html = html.replace("{playIcon}", playIcon);
html = html.replace("{titleStyle}", titleStyle);
return html;
}
$.ajax
({
url:"/news/getdetailnews",
type:"post",
data:{id:id},
success:function(data)
{
var isVideo, isTitleStyle;
if(data.code == 200)
{
$.each(data.data.recom, function(i,v)
{
isVideo = (v.tag == '视频') ? 1 : 0 ;
isTitleStyle = ( v.main_title_type == 1) ? 1 : 0;
recom += template(v.id, v.title, common.getImages(v.thumb, '0230x0230', 'blogimg', 'primary'), '/news/detail/id/'+v.id, isVideo, isTitleStyle);
});
$.each(data.data.hotVideo, function(i,v)
{
isTitleStyle = ( v.main_title_type == 1) ? 1 : 0;
hotVideo += template(v.id, v.title, common.getImages(v.thumb, '0230x0230', 'blogimg', 'primary'), '/news/detail/id/'+v.id, true, isTitleStyle);
});
$.each(data.data.lastVideo, function(i,v)
{
isTitleStyle = ( v.main_title_type == 1) ? 1 : 0;
lastVideo += template(v.id, v.title, common.getImages(v.thumb, '0230x0230', 'blogimg', 'primary'), '/news/detail/id/'+v.id, true, isTitleStyle);
});
$(".post-list").html(recom);
$(".side-related-list").eq(0).html(hotVideo);
$(".side-related-list").eq(1).html(lastVideo);
}
}
});
}
});
\ No newline at end of file
... ...
<?php/** * 路由处理 * * @name Framework_YView * @package framework * @version 0.2 (2012-12-14 17:14:29) <fei.hong@yoho.cn> * @since 0.1 (2012-6-25) xiaoma */class Framework_YView { /** * 视图文件根目录 * * @var string */ protected $_basePath = ''; /** * 视图脚本存放目录 * * @var string */ protected $_scriptPath = ''; /**
* 当前使用的分析器
*
* @var object
*/
protected $_viewParser; /** * 视图 * * @var string */ protected $_viewname = ''; /**
* 模板变量
*
* @var array
*/
protected $_view = array(); /** * 构造函数 */ public function __construct() { $this->cleanVars(); } /** * 设置视图名称 * * @param string $viewname * @return Framework_YView */ public function setViewname($viewname) { $this->_viewname = $viewname; return $this; } /** * 设置视图根目录 * * @param string $path (视图根目录) * @return Framework_YView */ public function setBasePath($path) { $this->_basePath = $path; return $this; } /** * 设置视图脚本目录 * * @param string $path (视图脚本目录 ) * @return Framework_YView */ public function setScriptPath($path) { $this->_scriptPath = $path; return $this; } /** * 设置视图的解析器 * * @param Framework_YView_Parser $parser (视图解析器) * @return Framework_YView */ public function setViewParser(Framework_YView_Parser $parser) { $this->_viewParser = new $parser(); return $this; } /** * 指定模板变量 * * @param string | array $key * @param mixed $value * @return Framework_YView */ public function assign($key, $value = null) { if (is_array($key)) { $this->_view = array_merge($this->_view, $key); } else { $this->_view[$key] = $value; } return $this; } /** * 清除所有模板变量 * * @return Framework_YView */ public function cleanVars() { $context = Framework_YHttpRequest::instance(); $this->_vars = array( '_ctx' => $context, '_BASE_DIR' => $context->baseDir(), '_BASE_URI' => $context->baseUri(), '_REQUEST_URI' => $context->requestUri(), ); return $this; } /** * 部分渲染视图 * * (直接包含方式, 不解析页面) * * @param string $viewname (视图名称) * @param mixed $params (向视图传递的参数) * @return string * @since 0.2 */ public function renderPartial($viewname = null, $params = null) { if (null !== $viewname)
{
$viewname = $this->_basePath . $this->_scriptPath . DS . $viewname . '.php'; if (file_exists($viewname)) { if (is_array($params)) { extract($params); } return include($viewname); }
} return ''; } /** * 渲染视图并返回渲染结果 * * @param string $viewname * @param array $params * @return string * @since 0.2 */ public function render($viewname = null, $params = null) { // 渲染之前执行 $this->beforeRender(); if (empty($viewname)) { $viewname = $this->_viewname; } $viewname = $this->_basePath . $this->_scriptPath . DS . $viewname . '.php'; if (file_exists($viewname)) { if (null === $params) { $params = $this->_view; } // 设置默认的视图解析器 if (is_null($this->_viewParser) || ! is_object($this->_viewParser)) { $this->_viewParser = new Framework_YView_Parser($this->_basePath, $this->_scriptPath); } // 解析视图页面, 返回视图页面内容 $output = $this->_viewParser->assign($params)->parse($viewname); } else { $output = ''; } // 渲染之后执行 $this->afterRender($output); return $output; } /** * 渲染之前调用 * * 继承类可以覆盖此方法。 */ protected function beforeRender() {} /** * 渲染之后调用 * * 继承类可以覆盖此方法。 * * @param string $output */ protected function afterRender(& $output) {} } /** * 视图变量对象 * * @version 0.1 2012-7-24 * @author xiaoma * @name Framework_YView_Var */ class Framework_YView_Var { /** * 当前对象 * * @var Framework_YView_Var */ private static $instance = null ; /** * 返回对象 * * @return Framework_YView_Var */ public static function getInstance () { if (is_null(self::$instance)) { self::$instance = new self(); } return self::$instance; } /** * 设置视图变量 * * @param string $name * @param mixed $value */ public function __set($name,$value) { $this->$name = $value; } /** * 未定义的属性 返回null * * @param string $name * @return null */ public function __get($name) { return null; } } /** * Framework_YView_Parser 类实现了视图的分析 * * @package mvc */ class Framework_YView_Parser { /** * 视图文件扩展名 * * @var string */ protected $_extname = 'php'; /** * 视图堆栈 * * @var array */ private $_stacks = array(); /** * 当前处理的视图 * * @var int */ private $_current; /** * 视图变量 * * @var array */ protected $_vars; /** * 视图文件所在目录 * * @var string */ private $_viewBasePath; /** * 视图脚本文件所在目录 * * @var string */ private $_viewScriptPath; /** * 变量对象 * * @var Framework_YView_Var */ public $view; /** * 构造函数 */ public function __construct($viewBasePath, $viewScriptPath) { $this->_viewBasePath = $viewBasePath; $this->_viewScriptPath = $viewScriptPath; $this->view = Framework_YView_Var::getInstance(); } /** * 设置分析器已经指定的变量 * * @param array $vars * * @return Framework_YView_Parser */ public function assign(array $vars) { $this->_vars = $vars; //将数组转换成对象 方便视图使用 foreach ($vars as $key => $val) { // if(is_string($val)&&!isset($vars['no_format'])) // { // $this->view->$key= strtr($val, array('<'=> '&lt;', '>'=>'&gt',)); // } // else // { $this->view->$key= $val ; //} } return $this; } /** * 返回视图文件的扩展名 * * @return string */ public function getExtName() { return $this->_extname; } /** * 设置视图文件扩展名 * * @param string $ext * @since 0.2 */ public function setExtName($ext) { $this->_extname = $ext; } /** * 分析一个视图文件并返回结果 * * @param string $filename * @param string $view_id * @param array $inherited_stack * * @return string */ public function parse($filename, $view_id = null, array $inherited_stack = null) { if (! $view_id) { $view_id = mt_rand(); } $stack = array( 'id' => $view_id, 'contents' => '', 'extends' => '', 'blocks_stacks' => array(), 'blocks' => array(), 'blocks_config' => array(), 'nested_blocks' => array(), ); array_push($this->_stacks, $stack); $this->_current = count($this->_stacks) - 1; unset($stack); ob_start(); $this->_include($filename); $stack = $this->_stacks[$this->_current]; $stack['contents'] = ob_get_clean(); // 如果有继承视图,则用继承视图中定义的块内容替换当前视图的块内容 if (is_array($inherited_stack)) { foreach ($inherited_stack['blocks'] as $block_name => $contents) { if (isset($stack['blocks_config'][$block_name])) { switch (strtolower($stack['blocks_config'][$block_name])) { case 'append': $stack['blocks'][$block_name] .= $contents; break; case 'replace': default: $stack['blocks'][$block_name] = $contents; } } else { $stack['blocks'][$block_name] = $contents; } } } // 如果有嵌套 block,则替换内容 while (list($child, $parent) = array_pop($stack['nested_blocks'])) { $stack['blocks'][$parent] = str_replace("%block_contents_placeholder_{$child}_{$view_id}%", $stack['blocks'][$child], $stack['blocks'][$parent] ); unset($stack['blocks'][$child]); } // 保存对当前视图堆栈的修改 $this->_stacks[$this->_current] = $stack; if ($stack['extends']) { // 如果有当前视图是从某个视图继承的,则载入继承视图 $filename = "{$this->_viewBasePath}/{$stack['extends']}.$this->_extname"; return $this->parse($filename, $view_id, $this->_stacks[$this->_current]); } else { // 最后一个视图一定是没有 extends 的 $last = array_pop($this->_stacks); foreach ($last['blocks'] as $block_name => $contents) { $last['contents'] = str_replace("%block_contents_placeholder_{$block_name}_{$last['id']}%", $contents, $last['contents'] ); } $this->_stacks = array(); return $last['contents']; } } /** * 视图的继承 * * @param string $tplname * * @access public */ protected function _extends($tplname) { $this->_stacks[$this->_current]['extends'] = $tplname; } /** * 开始定义一个区块 * * @param string $block_name * @param mixed $config * * @access public */ protected function _block($block_name, $config = null) { $stack = & $this->_stacks[$this->_current]; if (!empty($stack['blocks_stacks'])) { // 如果存在嵌套的 block,则需要记录下嵌套的关系 $last = $stack['blocks_stacks'][count($stack['blocks_stacks']) - 1]; $stack['nested_blocks'][] = array($block_name, $last); } $this->_stacks[$this->_current]['blocks_config'][$block_name] = $config; array_push($stack['blocks_stacks'], $block_name); ob_start(); } /** * 结束一个区块 * * @access public */ protected function _endblock() { $block_name = array_pop($this->_stacks[$this->_current]['blocks_stacks']); $this->_stacks[$this->_current]['blocks'][$block_name] = ob_get_clean(); echo "%block_contents_placeholder_{$block_name}_{$this->_stacks[$this->_current]['id']}%"; } /** * 构造一个组件 * * @param string $alias (组件路径) * @param array $params (组件参数) * @access public */ protected function _component($alias, $params = array(), $id = '') { $component = new Framework_YComponent($id); $component->execute($alias, $params); } /** * 载入一个视图片段 * * @param string $element_name * @param array $vars * * @access public */ protected function _widget($element_name, $vars = null) { $element_name = str_replace ( '_', DIRECTORY_SEPARATOR, $element_name ); $filename = "{$this->_viewBasePath}/widget/{$element_name}.{$this->_extname}"; $this->_include($filename, $vars); } /** * 载入视图文件 */ protected function _include($filename, $vars = null) { $this->_extname = pathinfo($filename, PATHINFO_EXTENSION); if (is_array($vars)) { extract($vars); } include $filename; } /** * 引入CSS文件方法 * * @param unknown_type $group_name * @param array $styles */ protected function _css($group_name='',array $styles = null,$noEchoInGroup=false,$noload=false) { $minFile = C('APP.MinFile'); if ($minFile['open'] && $group_name != ''&&$this->_isCombinePage($group_name)&&!isset($_GET['debug'])) { if(!$noEchoInGroup) { echo '<link href="'.$minFile['css'].$group_name.'&site='.$minFile["site"].'" media="screen" rel="stylesheet" type="text/css" />', PHP_EOL;
} } else { if(!$noload)
{ foreach ($styles as $style) { echo '<link href="'.$style.'" media="screen" rel="stylesheet" type="text/css" />', PHP_EOL; } } } // 压缩组合js,css配置自动生成 if (!$minFile['open']&&isset($_GET['gengroup'])) { echo '<script type="text/javascript">var groupname_css = "'.$group_name.'"</script>', PHP_EOL; } } /** * 引入js文件方法 * * @param unknown_type $group_name * @param array $js */ protected function _js($group_name='',array $js = null,$noEchoInGroup=false,$noload=false) { $minFile = C('APP.MinFile'); if ($minFile['open'] && $group_name != ''&&$this->_isCombinePage($group_name)&&!isset($_GET['debug'])) { if(!$noEchoInGroup)
{ echo '<script type="text/javascript" src="'.$minFile['js'].$group_name.'&site='.$minFile["site"].'"></script>', PHP_EOL; } } else { if(!$noload) { foreach ($js as $s)
{
echo '<script type="text/javascript" src="',$s,'"></script>', PHP_EOL;
} } } //压缩组合js,css配置自动生成 if (!$minFile['open']&&isset($_GET['gengroup'])) { echo '<script type="text/javascript">var groupname_js = "'.$group_name.'"</script>', PHP_EOL; echo '<script type="text/javascript" src="'.SITE_JS.'/group.js"></script>', PHP_EOL; } } private function _isCombinePage($group_name) { $combinePage = C('APP.combinePage');
$isCombinePage = false;
foreach($combinePage as $val)
{
if($val==$group_name)
{
$isCombinePage = true;
}
<?php/** * 路由处理 * * @name Framework_YView * @package framework * @version 0.2 (2012-12-14 17:14:29) <fei.hong@yoho.cn> * @since 0.1 (2012-6-25) xiaoma */class Framework_YView { /** * 视图文件根目录 * * @var string */ protected $_basePath = ''; /** * 视图脚本存放目录 * * @var string */ protected $_scriptPath = ''; /**
* 当前使用的分析器
*
* @var object
*/
protected $_viewParser; /** * 视图 * * @var string */ protected $_viewname = ''; /**
* 模板变量
*
* @var array
*/
protected $_view = array(); /** * 构造函数 */ public function __construct() { $this->cleanVars(); } /** * 设置视图名称 * * @param string $viewname * @return Framework_YView */ public function setViewname($viewname) { $this->_viewname = $viewname; return $this; } /** * 设置视图根目录 * * @param string $path (视图根目录) * @return Framework_YView */ public function setBasePath($path) { $this->_basePath = $path; return $this; } /** * 设置视图脚本目录 * * @param string $path (视图脚本目录 ) * @return Framework_YView */ public function setScriptPath($path) { $this->_scriptPath = $path; return $this; } /** * 设置视图的解析器 * * @param Framework_YView_Parser $parser (视图解析器) * @return Framework_YView */ public function setViewParser(Framework_YView_Parser $parser) { $this->_viewParser = new $parser(); return $this; } /** * 指定模板变量 * * @param string | array $key * @param mixed $value * @return Framework_YView */ public function assign($key, $value = null) { if (is_array($key)) { $this->_view = array_merge($this->_view, $key); } else { $this->_view[$key] = $value; } return $this; } /** * 清除所有模板变量 * * @return Framework_YView */ public function cleanVars() { $context = Framework_YHttpRequest::instance(); $this->_vars = array( '_ctx' => $context, '_BASE_DIR' => $context->baseDir(), '_BASE_URI' => $context->baseUri(), '_REQUEST_URI' => $context->requestUri(), ); return $this; } /** * 部分渲染视图 * * (直接包含方式, 不解析页面) * * @param string $viewname (视图名称) * @param mixed $params (向视图传递的参数) * @return string * @since 0.2 */ public function renderPartial($viewname = null, $params = null) { if (null !== $viewname)
{
$viewname = $this->_basePath . $this->_scriptPath . DS . $viewname . '.php'; if (file_exists($viewname)) { if (is_array($params)) { extract($params); } return include($viewname); }
} return ''; } /** * 渲染视图并返回渲染结果 * * @param string $viewname * @param array $params * @return string * @since 0.2 */ public function render($viewname = null, $params = null) { // 渲染之前执行 $this->beforeRender(); if (empty($viewname)) { $viewname = $this->_viewname; } $viewname = $this->_basePath . $this->_scriptPath . DS . $viewname . '.php'; if (file_exists($viewname)) { if (null === $params) { $params = $this->_view; } // 设置默认的视图解析器 if (is_null($this->_viewParser) || ! is_object($this->_viewParser)) { $this->_viewParser = new Framework_YView_Parser($this->_basePath, $this->_scriptPath); } // 解析视图页面, 返回视图页面内容 $output = $this->_viewParser->assign($params)->parse($viewname); } else { $output = ''; } // 渲染之后执行 $this->afterRender($output); return $output; } /** * 渲染之前调用 * * 继承类可以覆盖此方法。 */ protected function beforeRender() {} /** * 渲染之后调用 * * 继承类可以覆盖此方法。 * * @param string $output */ protected function afterRender(& $output) {} } /** * 视图变量对象 * * @version 0.1 2012-7-24 * @author xiaoma * @name Framework_YView_Var */ class Framework_YView_Var { /** * 当前对象 * * @var Framework_YView_Var */ private static $instance = null ; /** * 返回对象 * * @return Framework_YView_Var */ public static function getInstance () { if (is_null(self::$instance)) { self::$instance = new self(); } return self::$instance; } /** * 设置视图变量 * * @param string $name * @param mixed $value */ public function __set($name,$value) { $this->$name = $value; } /** * 未定义的属性 返回null * * @param string $name * @return null */ public function __get($name) { return null; } } /** * Framework_YView_Parser 类实现了视图的分析 * * @package mvc */ class Framework_YView_Parser { /** * 视图文件扩展名 * * @var string */ protected $_extname = 'php'; /** * 视图堆栈 * * @var array */ private $_stacks = array(); /** * 当前处理的视图 * * @var int */ private $_current; /** * 视图变量 * * @var array */ protected $_vars; /** * 视图文件所在目录 * * @var string */ private $_viewBasePath; /** * 视图脚本文件所在目录 * * @var string */ private $_viewScriptPath; /** * 变量对象 * * @var Framework_YView_Var */ public $view; /** * 构造函数 */ public function __construct($viewBasePath, $viewScriptPath) { $this->_viewBasePath = $viewBasePath; $this->_viewScriptPath = $viewScriptPath; $this->view = Framework_YView_Var::getInstance(); } /** * 设置分析器已经指定的变量 * * @param array $vars * * @return Framework_YView_Parser */ public function assign(array $vars) { $this->_vars = $vars; //将数组转换成对象 方便视图使用 foreach ($vars as $key => $val) { // if(is_string($val)&&!isset($vars['no_format'])) // { // $this->view->$key= strtr($val, array('<'=> '&lt;', '>'=>'&gt',)); // } // else // { $this->view->$key= $val ; //} } return $this; } /** * 返回视图文件的扩展名 * * @return string */ public function getExtName() { return $this->_extname; } /** * 设置视图文件扩展名 * * @param string $ext * @since 0.2 */ public function setExtName($ext) { $this->_extname = $ext; } /** * 分析一个视图文件并返回结果 * * @param string $filename * @param string $view_id * @param array $inherited_stack * * @return string */ public function parse($filename, $view_id = null, array $inherited_stack = null) { if (! $view_id) { $view_id = mt_rand(); } $stack = array( 'id' => $view_id, 'contents' => '', 'extends' => '', 'blocks_stacks' => array(), 'blocks' => array(), 'blocks_config' => array(), 'nested_blocks' => array(), ); array_push($this->_stacks, $stack); $this->_current = count($this->_stacks) - 1; unset($stack); ob_start(); $this->_include($filename); $stack = $this->_stacks[$this->_current]; $stack['contents'] = ob_get_clean(); // 如果有继承视图,则用继承视图中定义的块内容替换当前视图的块内容 if (is_array($inherited_stack)) { foreach ($inherited_stack['blocks'] as $block_name => $contents) { if (isset($stack['blocks_config'][$block_name])) { switch (strtolower($stack['blocks_config'][$block_name])) { case 'append': $stack['blocks'][$block_name] .= $contents; break; case 'replace': default: $stack['blocks'][$block_name] = $contents; } } else { $stack['blocks'][$block_name] = $contents; } } } // 如果有嵌套 block,则替换内容 while (list($child, $parent) = array_pop($stack['nested_blocks'])) { $stack['blocks'][$parent] = str_replace("%block_contents_placeholder_{$child}_{$view_id}%", $stack['blocks'][$child], $stack['blocks'][$parent] ); unset($stack['blocks'][$child]); } // 保存对当前视图堆栈的修改 $this->_stacks[$this->_current] = $stack; if ($stack['extends']) { // 如果有当前视图是从某个视图继承的,则载入继承视图 $filename = "{$this->_viewBasePath}/{$stack['extends']}.$this->_extname"; return $this->parse($filename, $view_id, $this->_stacks[$this->_current]); } else { // 最后一个视图一定是没有 extends 的 $last = array_pop($this->_stacks); foreach ($last['blocks'] as $block_name => $contents) { $last['contents'] = str_replace("%block_contents_placeholder_{$block_name}_{$last['id']}%", $contents, $last['contents'] ); } $this->_stacks = array(); return $last['contents']; } } /** * 视图的继承 * * @param string $tplname * * @access public */ protected function _extends($tplname) { $this->_stacks[$this->_current]['extends'] = $tplname; } /** * 开始定义一个区块 * * @param string $block_name * @param mixed $config * * @access public */ protected function _block($block_name, $config = null) { $stack = & $this->_stacks[$this->_current]; if (!empty($stack['blocks_stacks'])) { // 如果存在嵌套的 block,则需要记录下嵌套的关系 $last = $stack['blocks_stacks'][count($stack['blocks_stacks']) - 1]; $stack['nested_blocks'][] = array($block_name, $last); } $this->_stacks[$this->_current]['blocks_config'][$block_name] = $config; array_push($stack['blocks_stacks'], $block_name); ob_start(); } /** * 结束一个区块 * * @access public */ protected function _endblock() { $block_name = array_pop($this->_stacks[$this->_current]['blocks_stacks']); $this->_stacks[$this->_current]['blocks'][$block_name] = ob_get_clean(); echo "%block_contents_placeholder_{$block_name}_{$this->_stacks[$this->_current]['id']}%"; } /** * 构造一个组件 * * @param string $alias (组件路径) * @param array $params (组件参数) * @access public */ protected function _component($alias, $params = array(), $id = '') { $component = new Framework_YComponent($id); $component->execute($alias, $params); } /** * 载入一个视图片段 * * @param string $element_name * @param array $vars * * @access public */ protected function _widget($element_name, $vars = null) { $element_name = str_replace ( '_', DIRECTORY_SEPARATOR, $element_name ); $filename = "{$this->_viewBasePath}/widget/{$element_name}.{$this->_extname}"; $this->_include($filename, $vars); } /** * 载入视图文件 */ protected function _include($filename, $vars = null) { $this->_extname = pathinfo($filename, PATHINFO_EXTENSION); if (is_array($vars)) { extract($vars); } include $filename; } /** * 引入CSS文件方法 * * @param unknown_type $group_name * @param array $styles */ protected function _css($group_name='',array $styles = null,$noEchoInGroup=false,$noload=false) { $minFile = C('APP.MinFile'); if ($minFile['open'] && $group_name != ''&&$this->_isCombinePage($group_name)&&!isset($_GET['debug'])) { if(!$noEchoInGroup) { echo '<link href="'.$minFile['css'].$group_name.'&site='.$minFile["site"].'" media="screen" rel="stylesheet" type="text/css" />', PHP_EOL;
} } else { if(!$noload)
{ foreach ($styles as $style) { echo '<link href="'.$style.'" media="screen" rel="stylesheet" type="text/css" />', PHP_EOL; } } } // 压缩组合js,css配置自动生成 if (!$minFile['open']&&isset($_GET['gengroup'])) { echo '<script type="text/javascript">var groupname_css = "'.$group_name.'"</script>', PHP_EOL; } } /** * 引入js文件方法 * * @param unknown_type $group_name * @param array $js */ protected function _js($group_name='',array $js = null,$noEchoInGroup=false,$noload=false) { $minFile = C('APP.MinFile'); if ($minFile['open'] && $group_name != ''&&$this->_isCombinePage($group_name)&&!isset($_GET['debug'])) { if(!$noEchoInGroup)
{ echo '<script type="text/javascript" src="'.$minFile['js'].$group_name.'&site='.$minFile["site"].'"></script>', PHP_EOL; } } else { if(!$noload) { foreach ($js as $s)
{
echo '<script type="text/javascript" src="',$s,'"></script>', PHP_EOL;
} } } //压缩组合js,css配置自动生成 if (!$minFile['open']&&isset($_GET['gengroup'])) { echo '<script type="text/javascript">var groupname_js = "'.$group_name.'"</script>', PHP_EOL; echo '<script type="text/javascript" src="'.SITE_JS.'/group.js"></script>', PHP_EOL; } } private function _isCombinePage($group_name) { $combinePage = C('APP.combinePage');
$isCombinePage = false;
foreach($combinePage as $val)
{
if($val==$group_name)
{
$isCombinePage = true;
}
}; return $isCombinePage; } }
\ No newline at end of file
... ...
... ... @@ -31,30 +31,6 @@ class Controller_Brand extends Controller_Abstract
$this->_view['info'] = $info;
$this->_view['news'] = $news;
}
/**
* 处理新闻
*/
private function procNews($list, $num1 = 90, $num2 = 100)
{
foreach ($list as $k => $v)
{
if ($v['thumb'])
{
$thumb = Lib_Images::getImageUrl($v['thumb'], 'source','fragmentimg');
}else
{
$thumb = SITE_IMG.'/pic01.png';
}
$list[$k]['thumb'] = $thumb ;
$list[$k]['desc'] = Util_StringHelper::substr_cn( $this->stripTags($v['content']), $num1);
$list[$k]['desc']=str_replace(array("\r\n", "\n", "\r"), "", $list[$k]['desc']);
$list[$k]['type_name'] = $v['tag'] ;
$list[$k]['title'] = Util_StringHelper::substr_cn('['.$v['tag'].'] '.$v['title'], $num2);
}
return $list;
}
/**
* 获取品牌
... ...
... ... @@ -61,12 +61,6 @@ class Controller_News extends Controller_Abstract
$page->setOptions(array('afterAppend' => 'setLayout'));
$this->_view['pagination'] = $page->getPagination();
$this->_view['current_tag'] = $requestTag;
/***设置网站的SEO信息***/
$seo = C('APP.Seo');
$this->setTitle($seo['channel_news_title']);
$this->setKeywords($seo['channel_news_keywords']);
$this->setDescription($seo['channel_news_description']);
$seo = null; unset($seo);
}
public function getnewsAction()
... ... @@ -105,51 +99,47 @@ class Controller_News extends Controller_Abstract
return $this->_redirect('news/index');
}
$info['title'] = strip_tags($info['title']);
$info['pics'] = array_filter(explode('|', $info['pics']));
$info['thumb'] = Lib_Images::getImageUrl($info['thumb'], 'source','fragmentimg');
//增加浏览量
Facade_News::updateHits($id);
//获取上一个
$prev = Facade_News::getPrevNews($id);
if ($prev)
$this->_view['info'] = $info;
$this->_view['banners'] = Facade_Index::getIndex(4);
}
/**
* 详情页相关新闻
*
* @return json
*/
public function getdetailnewsAction()
{
$id = intval($this->_request->id);
$list = array('recom'=> array(), 'hotVideo'=> array(), 'lastVideo' => array());
$sameID = Facade_Brand::getSameNewsByNewsID($id);
$tag = '视频';
$recom = array();
if(!empty($sameID))
{
if ($prev['thumb'])
{
$thumb = Lib_Images::getImageUrl($prev['thumb'], '0138x0075','fragmentimg');
}
else
{
$thumb = SITE_IMG.'/pic01.png';
}
$prev['thumb'] = $thumb ;
$prev['title'] = Util_StringHelper::substr_cn( $this->stripTags($prev['title']),20 );
$prev['desc'] = Util_StringHelper::substr_cn( $this->stripTags($prev['content']),40 );
}
//获取下一个
$next = Facade_News::getNextNews($id);
if ($next)
$recom[] = Facade_News::getOneById($sameID);
}
$recom = array_slice(array_merge($recom, Facade_News::getList('', 0, 3)), 0, 3);
$hotVideo = array_values(Facade_News::getListByHits($tag, 0, 5));
$lastVideo = array_values(Facade_News::getList($tag, 0, 5));
$list['recom'] = $recom;
$list['hotVideo'] = $hotVideo;
$list['lastVideo'] = $lastVideo;
foreach($list as $key => $listnews)
{
if ($next['thumb'])
{
$thumb = Lib_Images::getImageUrl($next['thumb'], '0138x0075','fragmentimg');
}
else
if(!empty($listnews))
{
$thumb = SITE_IMG.'/pic01.png';
}
$next['thumb'] = $thumb ;
$next['title'] = Util_StringHelper::substr_cn( $this->stripTags($next['title']),20 );
$next['desc'] = Util_StringHelper::substr_cn( $this->stripTags($next['content']),40 );
foreach($listnews as $key2 => $news)
{
//不需要内容
$list[$key][$key2]['content'] = '';
}
}
}
$this->_view['tags'] = Facade_News::$types;
$this->_view['next'] = $next ;
$this->_view['prev'] = $prev ;
$this->_view['info'] = $info ;
$this->_view['current_tag'] = $this->_request->query('current_tag', '');
/***设置网站的SEO信息***/
$seo = C('APP.Seo');
$this->setTitle($info['title']);
$this->setKeywords($seo['channel_news_keywords']);
$this->setDescription($seo['channel_news_description']);
return $this->returnJson(true, 200, $list);
}
}
\ No newline at end of file
... ...
... ... @@ -10,107 +10,12 @@ class Controller_Product extends Controller_Abstract
return $this->_forward('news/index');
}
/**
* 详情页
*
*/
public function detailAction()
{
$id = intval($this->_request->id);
if (empty($id))
{
return $this->_redirect('news/index');
}
$info = Facade_News::getOneById($id);
if (!$info)
{
return $this->_redirect('news/index');
}
//增加浏览量
Facade_News::updateHits($id);
//获取上一个
$prev = Facade_News::getPrevNews($id);
if ($prev)
{
if ($prev['thumb'])
{
$thumb = Lib_Images::getImageUrl($prev['thumb'], '0138x0075','fragmentimg');
}else
{
$thumb = SITE_IMG.'/pic01.png';
}
$prev['thumb'] = $thumb ;
$prev['title'] = Util_StringHelper::substr_cn( $this->stripTags($prev['title']),20 );
$prev['desc'] = Util_StringHelper::substr_cn( $this->stripTags($prev['content']),40 );
}
//获取下一个
$next = Facade_News::getNextNews($id);
if ($next)
{
if ($next['thumb'])
{
$thumb = Lib_Images::getImageUrl($next['thumb'], '0138x0075','fragmentimg');
}else
{
$thumb = SITE_IMG.'/pic01.png';
}
$next['thumb'] = $thumb ;
$next['title'] = Util_StringHelper::substr_cn( $this->stripTags($next['title']),20 );
$next['desc'] = Util_StringHelper::substr_cn( $this->stripTags($next['content']),40 );
}
$this->_view['next'] = $next ;
$this->_view['prev'] = $prev ;
$this->_view['info'] = $info ;
/***设置网站的SEO信息***/
$seo = C('APP.Seo');
$this->setTitle($info['title']);
$this->setKeywords($seo['channel_news_keywords']);
$this->setDescription($seo['channel_news_description']);
}
/**
* 限量推荐
*/
public function recommendAction()
{
/*
* $test = $this->_request->query('test', 1);
if($test)
{
$this->_viewname ='recommend_ad';
}*/
$limit = 10;
$recomStatus = 1;
$total = Facade_Prod::getProdTotal($recomStatus);
$page = new Lib_Helper_Pagination($total, $limit);
list($offset, $limit) = $page->getLimit();
$products = Facade_Prod::getProd($recomStatus, $offset, $limit);
$brands = array();
foreach($products as $product)
{
if(!isset($brands[$product['brand_id']]))
{
$brand = Facade_Brand::getBrandbyID($product['brand_id']);
if ($brand['logo'])
{
$thumb = Lib_Images::getImageUrl($brand['logo'], '0110x0073','fragmentimg');
}
else
{
$thumb = SITE_IMG.'/pic01.png';
}
$brand['logo'] = $thumb;
$brands[$product['brand_id']] = $brand;
}
}
$this->_view['products'] = $products;
$this->_view['brands'] = $brands;
$this->_view['pagination'] = $page->getPagination();
$this->_viewname ='/../default/other';
}
/**
... ... @@ -126,4 +31,4 @@ class Controller_Product extends Controller_Abstract
$products = Facade_Prod::getProd($recomStatus, $offset, $limit);
return $this->returnJson(true, 200, $products, '');
}
}
\ No newline at end of file
}
... ...
... ... @@ -333,4 +333,15 @@ class Facade_Brand
{
return self::service()->getBrandByName($name, $state);
}
/**
* 根据news_id获取相同的新闻
*
* @param int $news_id
* @return int
*/
public static function getSameNewsByNewsID($news_id)
{
return self::service()->getSameNewsByNewsID($news_id);
}
}
... ...
... ... @@ -296,4 +296,14 @@ class Service_Brand extends Lib_Service
array('state'=> $state,'name'=> $name));
}
/**
* 根据news_id获取相同的新闻
*
* @param int $news_id
* @return int
*/
public function getSameNewsByNewsID($news_id)
{
return self::service(self::ROUTER)->tag(self::$_tag)->fetchOne('getSameNewsByNewsID', array('news_id' => $news_id));
}
}
... ...
... ... @@ -57,4 +57,7 @@
<select id="getBrandByName">
SELECT * FROM `tbl_brand` WHERE state = :state AND `name` LIKE :name ORDER BY create_time DESC
</select>
<select id="getSameNewsByNewsID">
SELECT news_id FROM tbl_news_brand_rela WHERE brand_id IN (SELECT brand_id FROM tbl_news_brand_rela WHERE news_id = :news_id) AND news_id &lt;&gt; :news_id
</select>
</sqlMap>
\ No newline at end of file
... ...
... ... @@ -65,7 +65,7 @@
<a href="/video/index">VIDEO</a>
<span>热点视频</span>
</li>
<li>
<li <?php echo ($controller_name == 'product' && $action_name == 'recommend') ? 'class="current"':''; ?>>
<a href="/product/recommend">RECOMMEND</a>
<span>限量推荐</span>
</li>
... ...
<?php $this->_extends('layout/default_layout');?>
<?php $this->_block('main');?>
<div class="detail-wrap clearfix">
<div class="detail-title">
<h2><?php echo $this->view->info['title']?></h2>
<h3>潮流嘉年华</h3>
</div>
<div class="detail-body">
<div class="detail-slide">
<div class="detail-slide-body">
<ul class="detail-slide-piclist clearfix">
<?php foreach($this->view->info['pics'] as $pic):?>
<li class="box"><img alt="" src="<?php echo Lib_Images::getImageUrl($pic, 'source','fragmentimg');?>"></li>
<?php endforeach;?>
</ul>
<div class="slide-shadow">
<a href="javascript:;" class="slide-shadow-prev"></a>
<a href="javascript:;" class="slide-shadow-next"></a>
</div>
<div class="detail-slide-big-ctrl">
<a href="javascript:;" class="slide-big-ctrl-prev iconfont">&#xe601;</a>
<a href="javascript:;" class="slide-big-ctrl-next iconfont">&#xe603;</a>
</div>
</div>
<div class="detail-slide-ctrl">
<ul class="detail-slide-ctrl-tabs clearfix">
<?php foreach($this->view->info['pics'] as $pic):?>
<li>
<a href="javascript:;">
<span class="border"></span>
<span class="arrow"></span>
<img class="lazy" data-original="<?php echo Lib_Images::getImageUrl($pic, 'source','fragmentimg');?>" alt=""
src="<?php echo Lib_Images::getImageUrl($pic, '0210x0210','fragmentimg');?>" style="display: block;">
</a>
</li>
<?php endforeach;?>
</ul>
<a href="javascript:;" class="detail-slide-ctrl-prev iconfont">&#xe600;</a>
<a href="javascript:;" class="detail-slide-ctrl-next iconfont">&#xe602;</a>
</div>
</div>
<div class="text-body">
<?php echo $this->view->info['content']?>
</div>
<div class="related-post detail-related-post">
<h3>相关推荐</h3>
<div class="post-list main-layout clearfix">
</div>
</div>
</div>
<div class="detail-side">
<div class="detail-ad">
<ul>
<?php foreach($this->view->banners as $banner):?>
<li>
<a href="<?php echo $banner['url'];?>" target="_blank" title="<?php echo $banner['text'];?>">
<img src="<?php echo Lib_Images::getImageUrl($banner['res'],'0280x0999','fragmentimg', 1);?>" alt="">
</a>
</li>
<?php endforeach;?>
</ul>
</div>
<div class="app-download clearfix">
<div class="qr">
<img src="<?php echo SITE_IMG;?>/yohood/yohobuyqr.png" alt="">
</div>
<div class="download-text">
<img src="<?php echo SITE_IMG;?>/yohood/app-icon01.png" alt="">
<p class="yoho-name">YOHO!有货</p>
<p>随手随心,潮流购物利器大公开</p>
</div>
</div>
<div class="side-related-post">
<div class="side-related-tab clearfix">
<a class="current" href="javascript:;">最热视频</a>
<a href="javascript:;">最新宣传片</a>
</div>
<div class="side-related-wrap">
<div class="side-related-list main-layout current">
</div>
<div class="side-related-list main-layout">
</div>
</div>
</div>
</div>
</div>
<div class="share" data-link="<?php echo SITE_MAIN;?>/news/detail/id/<?php echo $this->view->info['id'];?>" cover-url="<?php echo $this->view->info['thumb'];?>">
<h4>share</h4>
<ul>
<li class="yohoo-share-button-sina"><a href="javascript:;"><img src="<?php echo SITE_IMG;?>/yohood/share-sina-btn.png" alt="Share to sina"></a></li>
<li class="yohoo-share-button-wx">
<a href="javascript:;">
<img src="<?php echo SITE_IMG;?>/yohood/share-wx-btn.png" alt="Share to weixin">
</a>
<div class="wx-qrcode-dialog">
<div class="wx-popup-hd">
<span>分享到微信朋友圈</span>
</div>
<div class="wx-popup-bd">
<img src="http://qr.liantu.com/api.php?text=<?php echo SITE_MAIN;?>/news/detail/id/<?php echo $this->view->info['id'];?>">
</div>
<div class="wx-popup-ft">点击底部的“发现”,使用<br>“扫一扫”即可分享。</div>
</div>
</li>
<li class="yohoo-share-button-qq"><a href="javascript:;">
<img src="<?php echo SITE_IMG;?>/yohood/share-qq-btn.png" alt="Share to qZone">
</a></li>
<li class="yohoo-share-button-facebook">
<a href="javascript:;">
<img src="<?php echo SITE_IMG;?>/yohood/share-fb-btn.png" alt="Share to facebook">
</a>
</li>
</ul>
</div>
<?php $this->_endblock();?>
<?php $this->_block('js');?>
<script type="text/javascript">
seajs.use('yohood',function(yohood){
yohood.detailNews(<?php echo $this->view->info['id'];?>);
yohood.detail();
})
</script>
<?php $this->_endblock();?>
\ No newline at end of file
... ...
<?php $this->_extends('layout/default_layout');?>
<?php $this->_block('main');?>
<!-- content start -->
<div class="content-wrap clearfix">
<div class="position">
<a href="<?php echo url('news/index')?>">&lt; <span>返回列表</span></a>
</div>
<div class="detail-body">
<h1><?php echo $this->view->info['title']?></h1>
<p class="time"><?php echo date('Y.m.d H:i', $this->view->info['create_time'])?></p>
<div class="detail-content">
<?php echo $this->view->info['content']?>
</div>
</div>
<div class="activity-share">
</div>
<div class="pageSize">
<ul class="clearfix activity-index-list detail-pageSize">
<li>
<span class="detail-prev">上一篇</span>
<?php if ($this->view->prev):?>
<div class="activity-img-item">
<a target="" href="<?php echo url('news/detail' ,array('id' => $this->view->prev['id']))?>">
<img alt="" src="<?php echo $this->view->prev['thumb']?>" alt="<?php echo $this->view->prev['title']?>" style="width: 138px;height: 75px;">
</a>
</div>
<h3><a target="" href="<?php echo url('news/detail' ,array('id' => $this->view->prev['id']))?>"><?php echo $this->view->prev['title']?></a></h3>
<p><?php echo $this->view->prev['desc']?></p>
<span><em><?php echo date('H:i', $this->view->prev['create_time'])?></em> <?php echo date('Y/m/d', $this->view->prev['create_time'])?></span>
<?php else:?>
<div class="activity-img-item">
没有了
</div>
<?php endif;?>
</li>
<li>
<span class="detail-prev">下一篇</span>
<?php if ($this->view->next):?>
<div class="activity-img-item">
<a target="" href="<?php echo url('news/detail' ,array('id' => $this->view->next['id']))?>">
<img alt="" src="<?php echo $this->view->next['thumb']?>" alt="<?php echo $this->view->next['title']?>" style="width: 138px;height: 75px;">
</a>
</div>
<h3><a target="" href="<?php echo url('news/detail' ,array('id' => $this->view->next['id']))?>"><?php echo $this->view->next['title']?></a></h3>
<p><?php echo $this->view->next['desc']?></p>
<span><em><?php echo date('H:i', $this->view->next['create_time'])?></em> <?php echo date('Y/m/d', $this->view->next['create_time'])?></span>
<?php else:?>
<div class="activity-img-item">
没有了
</div>
<?php endif;?>
</li>
</ul>
</div>
</div>
<?php $this->_endblock();?>
<?php $this->_extends('layout/default_layout');?>
<?php $this->_block('main');?>
<!-- content start -->
<div class="content-wrap clearfix">
<?php foreach($this->view->products as $product):?>
<div class="recommend-item">
<div class="goods-pic">
<img src="<?php $arr = explode('|', $product['pic'] ); echo preg_replace('/-(\w+\d+)-/','-0150x0200-', $arr[0]);?>" width="150" alt=""/>
</div>
<div class="goods-info">
<div class="goods-title">
<h2><?php echo $product['name'];?></h2>
<p class="goods-price clearfix">
<span>RMB <?php echo sprintf("%.2f", $product['price']);?></span>
<a href="<?php echo $product['url'];?>" target="_blank" class="goods-buy"></a>
</p>
<?php
if(empty($product['brand_id']))
{
$url = 'javascript:void(0)';
}
else
{
$url = url('brand/detail', array('id' => $product['brand_id']));
}
?>
<a href="<?php echo $url;?>" class="goods-brand-logo">
<img src="<?php echo $this->view->brands[$product['brand_id']]['logo'];?>" alt="" width="110" height="73"/>
</a>
</div>
<p><?php echo $product['text'];?></p>
</div>
</div>
<?php endforeach;?>
<div id="pageContent" class="pagination">
<?php $this->_component('Common_Pagination',array(
'pagination' => $this->view->pagination,'next_label' => '下一页','prev_label' => '上一页','current_class' => 'current',
'page_class'=>'pagination-inner', 'id'=>'img_page'
));?>
</div>
</div>
<?php $this->_endblock();?>
\ No newline at end of file
<?php $this->_extends('layout/default_layout');?>
<?php $this->_block('main');?>
<!-- content start -->
<div class="content-wrap clearfix">
<div class="recommend-top">
<div class="recommend-title">
<h2><img src="<?php echo SITE_RES;?>/images/yohood/recommend-title.png"/></h2>
<p>YO'HOOD独家企划——联名产品首度公开</p>
</div>
<div class="recommend-info">由YO'HOOD发起,集合一众来自美国、日本、香港等地的顶尖潮流品牌推出的独家联名产品,在今次发布的独家产品中不乏已是两度与YO'HOOD协作的
品牌,如CLOT, HBA, UNDEFEATED, MEDICOM TOY,HEAD PORTER等,也有许多如Herschel Supply,JOYRICH,Stussy,THE HUNDREDS, VANQUISH,
Subcrew等等的新面孔。YO'HOOD Exclusive与一众潮牌将继续采用各自品牌最标志性的设计元素,推出包括卫衣、T恤、帽子、背包在内的一系列单品,其中一定有你不可错过的新季潮物!</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/clot_new.png"/>
</div>
<div class="goods-info">
<h4>1.CLOT</h4>
<p class="info">CLOT 继2013年与YO'HOOD 合作推出的限量款卫衣之后,本年度为大家带来新一轮的限量合作款Card Holder,产品选用优质的皮革打造,具有良好的手感,
而CLOT经典logo元素与YO'HOOD的加持让本款单品赋予更多的潮流意义。</p>
<p class="price">印花卡包 RMB 99</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/hba.png"/>
</div>
<div class="goods-info">
<h4>2.HBA</h4>
<p class="info">来自美国纽约的高街品牌 Hood By Air 近年来炙手可热, 而此番与国内顶尖潮流平台合作推出的HBA x YO'HOOD限量款卫衣将于2014年度YO'HOOD潮流展
上正式推出,产品保留经典的设计风格,大面积的色块元素与字母印花相信喜欢HBA的朋友一定非常熟悉,经典的连帽卫衣款式也是必备的潮流单品,喜欢的朋友
不可错过。</p>
<p class="price">连帽卫衣 RMB 1749</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/head.png"/>
</div>
<div class="goods-info">
<h4>3.HEAD PORTER</h4>
<p class="info">2014年度 HEAD PORTER x YO'HOOD限定款联名钱包, 极具潮流感的迷彩系列单品,精致的外形与迷彩元素的结合,多隔层功能设计保证款式的实用性,制作面
料选用特质的混纺材料,兼备超强耐磨与防水功能,整体细节的把控体现了品牌一贯的态度,潮流包品绝对值得入手。</p>
<p class="price">迷彩钱包 RMB 599</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/herschel.png"/>
</div>
<div class="goods-info">
<h4>4.Herschel Supply</h4>
<p class="info">加拿大制包品牌Herschel Supply Co. 与YO'HOOD合作推出最新款双肩背包. 该款背包款式延续Herschel Supply 一贯的经典造型,与众不同的是设计采用了极具
个性的豹纹面料,红色提手点缀及拼接细节让产品有更多层次的变化,浓烈的街头气息展露无遗,至潮单品不容错过!</p>
<p class="price">双肩背包 RMB 899</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/joyrich.png"/>
</div>
<div class="goods-info">
<h4>5.JOYRICH</h4>
<p class="info">融合复古与前卫元素的好莱坞时尚潮牌JOYRICH此番秋冬也带来最新YO'HOOD合作产品,此款设计为经典复刻版棒球夹克,正面夸张的logo标示体现品牌一直
以来大胆的作风,黑白的主色调以及红色的点缀细节,展现出极具街头辨识度的风格,喜欢美式风格的朋友值得入手。</p>
<p class="price">棒球夹克 RMB 999</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/stussy.png"/>
</div>
<div class="goods-info">
<h4>6.Stussy</h4>
<p class="info">元祖级街头潮牌Stussy此番与YO'HOOD推出最新联名单品Dragon crew Tee ,设计融合了传统的中国元素,标志性的Stussy涂鸦签名与龙的图案结合形成一种新
的文化碰撞和艺术风格。经典的黑白两色选择也非常适合街头的日常搭配,值得推荐。</p>
<p class="price">印花TEE RMB 299</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/hundreds.png"/>
</div>
<div class="goods-info">
<h4>7.THE HUNDREDS</h4>
<p class="info">源于南加州西海岸的美式街头潮流品牌 THE HUNDREDS此季同YO'HOOD合作带来全新联名产品,该系类设计虽没有经典的炸弹先生附体,但却体现出品牌最hip-
pop的本质,星条旗和数字等元素的完美结合打造出当下街头最热的Hi-Street风格,同时品牌logo数字印花的融入也极具诚意,值得关注。</p>
<p class="price">圆领卫衣 RMB 449</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/undefeated.png"/>
</div>
<div class="goods-info">
<h4>8.UNDEFEATED</h4>
<p class="info">洛杉矶潮流品牌 UNDEFEATED x YO'HOOD 的联名系列,该款棒球衫运用其经典的logo元素,硬朗醒目的几何字体透露着浓厚的美式街头运动感,而最具代表性的
还是了中文字”耍赖”的加入让设计又透露一丝不羁的个性,两种文字的结合让此次联名更具潮流意义。</p>
<p class="price">棒球夹克 RMB 999</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/vanquish.png"/>
</div>
<div class="goods-info">
<h4>9.VANQUISH</h4>
<p class="info">由石川凉主理的日本街头时装品牌 VANQUISH 也带来最新联名系列Tee, 设计迎合更多年轻人的喜好,简洁舒适的款式,采用品牌经典的logo元素,却别具创新的镜像
对称表现手法,这和中国传统“倒福”的概念不谋而合,袖口精致的YO'HOOD刺绣logo也增添了更多的细节。</p>
<p class="price">字母TEE RMB 299</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/subcrew.png"/>
</div>
<div class="goods-info">
<h4>10.Subcrew</h4>
<p class="info">港产潮牌Subcrew与YO'HOOD跨界合作带来本次联名系列Hoodie, 本季设计以校园风为主题,将品牌“Subcrew”以谐音“十八骷髏“转变成极具个性的logo元素,
袖口的骷髅细节也透露品牌的街头态度,港牌代表之作不可错过。</p>
<p class="price">连帽卫衣 RMB 499</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/aa.png"/>
</div>
<div class="goods-info">
<h4>11.American Apparel</h4>
<p class="info">American Apparel与伦敦设计师Kesh合作的玩味街头风系列本次为YO'HOOD带来全新独家限量款Zip Hoodie, 设计采用本系列一贯的黑眼图案,满版重复排列的印花极
具个性,实属街头吸睛必备单品!</p>
<p class="price">拉链连帽卫衣 新品未定价</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/dpk.png"/>
</div>
<div class="goods-info">
<h4>12.DPK</h4>
<p class="info">由潮流界的Fashion Icon 仓石一树主理打造的全新品牌DPK 於2014秋冬曝光首季產品,品牌将联合YOHO! 打造的世全球潮流新品嘉年华YO'HOOD正式推出,同时也带来
此番联名系列条纹衬衫,以box logo 等印花元素运用到衬衫上独具特色,而左右袖不对称的设计也让人眼前一亮。</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/medicom.png"/>
</div>
<div class="goods-info">
<h4>13.MEDICOM TOY</h4>
<p class="info">继上一年与MEDICOM TOY合作推出了限定版本BE@RBRICK后,今年再接再厉推出SERIES 28 特别版白色BE@RBRICK。CLOT 与 BE@RBRICK 合作的SERIES 28系列以黑色 BE@R
BRICK配合极为稀少的红色 BE@RBRICK为卖点,发售之后便引发一众爱好 BE@RBRICK 的潮流人士抢购,随机发售的红色BE@RBRICK更是令人需要在购买时试试运气才能有机会
获得,如今YO'HOOD 推出的同款白色限量版本 BE@RBRICK,你不用试试运气,只要来到 YO'HOOD现场 就能拥有!</p>
<p class="price">拉链连帽卫衣 新品未定价</p>
</div>
</div>
<div class="recommend-box">
<div class="goods-pic">
<img src="<?php echo SITE_RES;?>/images/yohood/hallfame.png"/>
</div>
<div class="goods-info">
<h4>14.HALL OF FAME</h4>
<p class="info">创立于 2007 年的加州街头品牌 HALL OF FAME,也是全球顶尖棒球帽品牌,凭借其现代化的设计思路和高质素的产品质量,迅速积攒了一大批忠实拥趸。本次与YO'HOOD推
出的合作款产品当然是以最拿手的棒球帽最为主打,结合了绝对经典的美式元素,相信是潮流人士下一季的败物首选。</p>
<p class="price">LOGO棒球帽 新品未定价</p>
</div>
</div>
</div>
<?php $this->_endblock();?>
\ No newline at end of file
... ... @@ -4,12 +4,13 @@
<div class="show-wrap clearfix">
<div class="main-layout clearfix">
<?php foreach($this->view->fragments as $fragment):
$title = Util_StringHelper::substr_cn($fragment['content'], 10);
$title = Lib_Utils_StringHelper::substr_cn(Lib_Utils_StringHelper::stripTags($fragment['content']), 70);
?>
<div class="layout-item tiled">
<div class="image-box">
<a href="javascript:;">
<img src="<?php echo preg_replace('/_\.(\w+)/i','', $fragment['image']);?>?imageMogr2/thumbnail/309x309/strip/quality/80" alt="">
<img src="<?php echo preg_replace('/_\.(\w+)/i','', $fragment['image']);?>?imageMogr2/thumbnail/309x309/strip/quality/80"
alt="" data-original="<?php echo preg_replace('/_\.(\w+)/i','', $fragment['image']);?>?imageMogr2/thumbnail/640x640/strip/quality/80">
</a>
</div>
<div class="content">
... ... @@ -26,4 +27,12 @@
));?>
</div>
</div>
<?php $this->_endblock();?>
<?php $this->_block('js');?>
<script type="text/javascript">
seajs.use('yohood',function(yohood)
{
yohood.show();
});
</script>
<?php $this->_endblock();?>
\ No newline at end of file
... ...
<?php
foreach($list as $news):
$title = $news['title'];
$description = Lib_Utils_StringHelper::stripTags($news['content']);
$title = Util_StringHelper::substr_cn($news['title'], 90);
$description = Lib_Utils_StringHelper::substr_cn(Lib_Utils_StringHelper::stripTags($news['content']), 68);
$height = $width = 0;
$thumb_size = json_decode($news['thumb_size'], true);
if ($news['thumb'])
... ...