예제 #1
0
파일: list.php 프로젝트: yunsite/demila
// +----------------------------------------------------------------------
// | Demila [ Beautiful Digital Content Trading System ]
// +----------------------------------------------------------------------
// | Copyright (c) 2015 http://demila.org All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Email author@demila.org
// +----------------------------------------------------------------------
_setView(__FILE__);
$cms = new qnews();
if (isset($_GET['up']) || isset($_GET['down'])) {
    $cms->tableName = 'qnews';
    $cms->idColumn = 'id';
    if (isset($_GET['up']) && is_numeric($_GET['up'])) {
        $cms->moveUp($_GET['up']);
    } elseif (isset($_GET['down']) && is_numeric($_GET['down'])) {
        $cms->moveDown($_GET['down']);
    }
}
require_once ENGINE_PATH . '/classes/image.class.php';
$imageClass = new Image();
$data = $cms->getAll(START, LIMIT);
$tmp = array();
if ($data) {
    foreach ($data as $key => $d) {
        $tmp[$key] = $d;
        $tmp[$key]['thumb'] = '/static/uploads/qnews/192x64/' . $d['photo'];
    }
}
abr('data', $tmp);