Source for file LC_Page_FrontParts_Bloc_News.php
Documentation is available at LC_Page_FrontParts_Bloc_News.php
* This file is part of EC-CUBE
* Copyright(c) 2000-2011 LOCKON CO.,LTD. All Rights Reserved.
* http://www.lockon.co.jp/
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
require_once CLASS_REALDIR . 'pages/frontparts/bloc/LC_Page_FrontParts_Bloc.php';
* @author LOCKON CO.,LTD.
* @version $Id: LC_Page_FrontParts_Bloc_News.php 21126 2011-08-04 11:48:01Z nanasess $
$objFormParam = new SC_FormParam_Ex();
switch($this->getMode()){
$objFormParam->setParam($_POST);
$objFormParam->convParam();
$this->arrErr = $objFormParam->checkError(false);
if(empty($this->arrErr)){
$objFormParam->setParam($_GET);
$objFormParam->convParam();
$this->arrErr = $objFormParam->checkError(false);
if(empty($this->arrErr)){
* @param array $objFormParam フォームパラメータークラス
$objFormParam->addParam("現在ページ", "pageno", INT_LEN, 'n', array("NUM_CHECK", "MAX_LENGTH_CHECK"), "", false);
$objFormParam->addParam("表示件数", "disp_number", INT_LEN, 'n', array("NUM_CHECK", "MAX_LENGTH_CHECK"), "", false);
$objFormParam->addParam("新着ID", "news_id", INT_LEN, 'n', array("NUM_CHECK", "MAX_LENGTH_CHECK"), "", false);
* @return array $arrNewsList 新着情報の配列を返す
$objQuery = SC_Query_Ex::getSingletonInstance();
$sql .= " cast(news_date as date) as news_date_disp ";
$sql .= " del_flg = '0' ";
$arrNewsList = $objQuery->getAll($sql);
* @param array $objFormParam フォームパラメータークラス
* @return String $json 新着情報のJSONを返す
$objQuery = SC_Query_Ex::getSingletonInstance();
$arrData = $objFormParam->getHashArray();
$dispNumber = $arrData['disp_number'];
$pageNo = $arrData['pageno'];
if(!empty($dispNumber) && !empty($pageNo)){
$objQuery->setLimitOffset($dispNumber, (($pageNo - 1) * $dispNumber));
$objQuery->setOrder("rank DESC ");
$arrNewsList = $objQuery->select(" * , cast(news_date as date) as news_date_disp "," dtb_news "," del_flg = '0' ");
$arrNewsList["news_page_count"] = ceil($newsCount / 3);
$json = SC_Utils_Ex::jsonEncode($arrNewsList); //JSON形式
* @param array $objFormParam フォームパラメータークラス
* @return String $json 新着情報1件分のJSONを返す
$objQuery = SC_Query_Ex::getSingletonInstance();
$arrData = $objFormParam->getHashArray();
$newsId = $arrData['news_id'];
$arrNewsList = $objQuery->select(" * , cast(news_date as date) as news_date_disp "," dtb_news "," del_flg = '0' AND news_id = ? ", array($newsId));
$json = SC_Utils_Ex::jsonEncode($arrNewsList); //JSON形式
* @return Integer $count 新着情報の件数を返す
$objQuery = SC_Query_Ex::getSingletonInstance();
$count = $objQuery->count("dtb_news", "del_flg = '0'");
* エラーメッセージを整形し, JSON 形式で返す.
* @param array $arrErr エラーメッセージの配列
* @return string JSON 形式のエラーメッセージ
foreach ($arrErr as $val) {
$messages .= $val . "\n";
return SC_Utils_Ex::jsonEncode(array('error' => $messages));
Documentation generated on Fri, 24 Feb 2012 14:02:01 +0900 by Seasoft
|