묻고답하기

<?php
    /**
     * @class webzine
     * @author zero (zero@nzeo.com)
     * @brief 최근글을 이미지와 같이 웹진형으로 출력
     * @version 0.1
     **/

    class webzine extends WidgetHandler {

        /**
         * @brief 위젯의 실행 부분
         *
         * ./widgets/위젯/conf/info.xml 에 선언한 extra_vars를 args로 받는다
         * 결과를 만든후 print가 아니라 return 해주어야 한다
         **/
        function proc($args) {
            // 글자 제목 길이
            $widget_info->subject_cut_size = (int)$args->subject_cut_size;
            if(!$widget_info->subject_cut_size) $widget_info->subject_cut_size = 10;

            // 내용 길이
            $widget_info->content_cut_size = (int)$args->content_cut_size ;
            if(!$widget_info->content_cut_size) $widget_info->content_cut_size= 450;

            // 썸네일 생성 방법
            $widget_info->thumbnail_type = $args->thumbnail_type;
            if(!$widget_info->thumbnail_type) $widget_info->thumbnail_type = 'crop';

            // 썸네일 가로 크기
            $widget_info->thumbnail_width = (int)$args->thumbnail_width;
            if(!$widget_info->thumbnail_width) $widget_info->thumbnail_width = 100;

            // 썸네일 세로 크기
            $widget_info->thumbnail_height = (int)$args->thumbnail_height;
            if(!$widget_info->thumbnail_height) $widget_info->thumbnail_height = 100;

            // 세로 이미지 수
            $widget_info->rows_list_count = (int)$args->rows_list_count;
            if(!$widget_info->rows_list_count) $widget_info->rows_list_count = 2;

            // 가로 이미지 수
            $widget_info->cols_list_count = (int)$args->cols_list_count;
            if(!$widget_info->cols_list_count) $widget_info->cols_list_count = 1;

            // 정렬 대상
            $widget_info->order_target = $args->order_target;
            if(!in_array($widget_info->order_target, array('list_order','update_order'))) $widget_info->order_target = 'list_order';

            // 정렬 순서
            $widget_info->order_type = $args->order_type;
            if(!in_array($widget_info->order_type, array('+ '+ 'asc','desc'))) $widget_info->order_type = 'asc';


            // 노출 여부 체크
            if($args->display_author!='Y') $widget_info->display_author = 'N';
            else $widget_info->display_author = 'Y';
            if($args->display_regdate!='Y') $widget_info->display_regdate = 'N';
            else $widget_info->display_regdate = 'Y';
            if($args->display_readed_count!='Y') $widget_info->display_readed_count = 'N';
            else $widget_info->display_readed_count = 'Y';
            if($args->display_voted_count!='Y') $widget_info->display_voted_count = 'N';
            else $widget_info->display_voted_count = 'Y';

            // 제목
            $widget_info->title = $args->title;

            // 대상 모듈 (mid_list는 기존 위젯의 호환을 위해서 처리하는 루틴을 유지. module_srl로 위젯에서 변경)
            if($args->mid_list) {
                $mid_list = explode(",",$args->mid_list);
                $oModuleModel = &getModel('module');
                if(count($mid_list)) {
                    $module_srl = $oModuleModel->getModuleSrlByMid($mid_list);
                } else {
                    $site_module_info = Context::get('site_module_info');
                    if($site_module_info) {
                        $margs->site_srl = $site_module_info->site_srl;
                        $oModuleModel = &getModel('module'+ ');
                        $output = $oModuleModel->getMidList($margs);
                        if(count($output)) $mid_list = array_keys($output);
                        $module_srl = $oModuleModel->getModuleSrlByMid($mid_list);
                    }
                }
            } else $module_srl = explode(',',$args->module_srls);

            $obj->module_srl = implode(",",$module_srl);
            $obj->sort_index = $widget_info->order_target;
            $obj->order_type = $widget_info->order_type=="desc"?"asc":"desc";
            $obj->list_count = $widget_info->rows_list_count * $widget_info->cols_list_count;

            $output = executeQueryArray('widgets.webzine.getNewestDocuments', $obj);

            // document 모듈의 model 객체를 받아서 결과를 객체화 시킴
            $oDocumentModel = &getModel('document');

            // 오류가 생기면 그냥 무시
            if(!$output->toBool()) return;

            // 결과가 있으면 각 문서 객체화를 시킴
            if(count($output->data)) {
                foreach($output->data as $key => $attribute) {
                    $document_srl = $attribute->document_srl;

                    $oDocument = null;
                    $oDocument = new documentItem();
                    $oDocument->setAttribute($attribute, false);
                    $GLOBALS['XE_DOCUMENT_LIST'][$oDocument->document_srl] = $oDocument;

                    $document_list[$key] = $oDocument;
                }
                $oDocumentModel->setToAllDocumentExtraVars();
            } else {

                $document_list = array();
               
            }

            $document_count = count($document_list);
            $total_count = $widget_info->rows_list_count * $widget_info->cols_list_count;
            for($i=$document_count;$i<$total_count;$i++) $document_list[] = new DocumentItem();

            $widget_info->document_list = $document_list;

            Context::set('widget_info', $widget_info);

            // 템플릿의 스킨 경로를 지정 (skin, colorset에 따른 값을 설정)
            $tpl_path = sprintf('%sskins/%s', $this->widget_path, $args->skin);
            Context::set('colorset', $args->colorset);

            // 템플릿 파일을 지정
            $tpl_file = 'list';

            // 템플릿 컴파일
            $oTemplate = &TemplateHandler::getInstance();
            $output = $oTemplate->compile($tpl_path, $tpl_file);
            return $output;
        }
    }
?>

적용 페이지 http://howtoplay.x-y.net/zbxe/

 

최근 게시물 위젯을 받아서 수정을 하고 있는데, 도저히 더이상 진전이 없어서 이렇게 질문 올립니다^^;;

보시면 최대 2개까지만 최근 게시물이 출력되도록 설정해놓았는데, 2개가 넘어가게되면 페이지를 넘길 수 있는 방법은 없는건지,

또, 썸네일 크기가 고정이 아닌, 원본 이미지에 따라서 가변적으로 (예를들자면 원본 이미지 사이즈의 10%로 출력된다던지) 할 수 있는 방법이 혹시 있을까요??

 

 

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
gr8ppl 설문조사 선택항목수가..  
유아풀 생성했던 게시판들을 그대로 복사해서 쓰고 싶습니다.  
bagle 아이디/비밀번호 찾기 에러 문의 [1] 2009.07.07 by Bagle
아카스 게시물 인쇄시 원하는 폼으로 인쇄할려면 어디를 손봐야 하나요?  
초록배추 게시판에 글을 쓰면 작성자가 anonymous라고 뜹니다 [2] 2009.07.07 by 착한악마
list65 xe 1.0.0 버전인데요...업데이트 방법좀 알려주세요. [1] 2009.07.07 by 백성찬
서재필199 완전초짜가 질문좀.. [1] 2009.07.07 by 백성찬
민우 공지사항이요.. [1] 2009.07.07 by 백성찬
shion 1.2.4 업글후 타이틀이 없어졌습니다. [1] 2009.07.07 by *카멜레온*
쿨키드 제로보드 공식 홈페이지 로그인 스킨이나 게시판스킨은 [2] 2009.07.07 by 쿨키드
아포크리파 사이트 개편후..사라진 게시판들에대해  
nukelias 비밀번호 찾기랑 오픈ID 제대로 작동하시는 분? [3] 2009.07.07 by NukeliaS
강신봉 폼메일로 보내면 문자 깨져요.. [1] 2009.07.07 by 모노로그
너속의벌레 xe에서는 w3c표준인 clip:rect()가 왜서 안 되는걸가요? [2] 2009.07.07 by 글쓴이
오승만 1.1.1 에서 1.2.4 로 업데이트 후 이상증상 질문 [2] 2009.07.07 by 오승만
쎄바스찬 회원가입후 바로 글쓰기 문의 [1] file 2009.07.07 by 피키4
글쓴이 제로보드 EX 설치경로좀 알려주세요 [5] 2009.07.07 by 백성찬
박근모 업데이트 도중 난장판이 됐네요. (오류) [1] 2009.07.07 by 백성찬
Kemist 플래닛에서 전체글보기?  
list65 업데이트 질문과 파일첨부에 대해서 [2] 2009.07.07 by list65
쥐엉 레이아웃에서 상단메뉴 하단메뉴 설정하는 부분이 나오질 않아요.. file  
어나더요리 (스샷) 레이어 적용후 사진처럼 잔상이 생기네요.. file  
colip 최근 댓글에 new 이미지를 달려면 어떻게 해야 하나요? [4] 2009.07.08 by colip
장단엽 비나무님의 공지사항에 출력되는 부분은 어떻게 하신건가요?? [2] file 2009.07.08 by 글쓴이
일인자 php로 회원가입폼 만드는중에 아이디중복체크좀 알려주세요, 꼭좀부탁드립니다.........  
아카스 다중언어 사이트 제작시에.. [2] 2009.07.08 by 글쓴이
글쓴이 제로보드xe 에 플래쉬 메뉴 넣는 방법은 진정 없는건가요?  
글쓴이 레이어 적용후 스크롤을 움직이면 잔상이 생기고 뒤죽박죽이 됩니다.  
글쓴이 파일 첨부시 10MB 넘는 파일 사라지는 문제 [2] 2009.07.08 by 글쓴이
어나더요리 멀쩡히 잘 접속되다가 갑자기 이렇게 뜹니다... [1] file 2009.07.08 by MX