묻고답하기

<?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 남기남
챨스0521 메인에 최근글 어떻게 [3] 2010.08.06 by LutZ
정준영590 zeroboard4 data export tool 이용 중 질문드립니다. [1] file 2010.08.06 by LutZ
중년 143으로 업후 카페 회원목록이 이상하게 나옵니다.  
팔공산 댓글등록 버턴의 위치가 이상합니다. [5] file 2010.08.06 by 팔공산
바람의매 Elkha - sky2 레이아웃 질문 [1] 2010.08.06 by 김 무건
마르77 내용 직접 수정에서만 파일 첨부가 안되네요..  
어쭈구리メ 에러가 이런상황이 나오는데 왜그런거죠? file  
대빌진 탭형태 출력  
나는새 이사이트처럼 포토페이지를 만들고싶습니다. [1] 2010.08.06 by LutZ
중국정복 ftp접속오류 문의드립니다. file  
시부타쿠 최근 게시물 수정때문에 질문올립니다  
수피아소년 오늘의 베스트.. 이런기능 되나요?  
제아라 로그인 페이지를 별도의 html이나 php로 작성하려 합니다  
아호아호 ** 드림위버에서 로그인폼달기 ** [3] 2010.08.06 by INN
나나나자 gzhandler 문제: 레이아웃이 안보입니다. [1] file 2010.08.06 by SMaker
청개굴이 자동출첵되게 하려면..? [2] 2010.08.06 by 청개굴이
황효복 게시판 스킨 여러개로 변경 해가면서 쓸수 있는법 가르쳐 주세요 [1] 2010.08.06 by 제로환상
조지영932 게시판 본문에 이미지가 떳다가 바로 사라지는데요...ㅠㅜ [5] 2010.08.29 by 세일성남
쿠호인 이게 가능한건지 봐주세요.. [1] 2010.08.06 by guny
XE정복자 로그아웃시 주메뉴와 서브메뉴가 사라지는 문제 [1] 2010.08.06 by 라띤즈
라띤즈 회원db공유하는 두 계정 사이에 로그인 유지에 대해  
시나브로74 첨부파일 누르면 반응이 없습니다. [2] 2010.08.06 by 시나브로74
REGOLITH tingenara레이아웃!!문제.... 로그인페이지가 어디루?.... [1] file 2010.08.06 by LutZ
세렌디링 이 페이지를 수정하려면 어디의 CSS파일을 수정해야 할까요 [1] file 2010.08.06 by LutZ
Badboy Syndication API 철치 어떻게 하는지 [1] 2010.08.06 by LutZ
늘아 태그를 랜덤 말고 가나다순으로 정렬하는 방법은 없나요?  
yeoma 여러 게시판과 최근 게시물 연결 해서 사용해본 경헙있으신 분... [2] 2010.08.06 by 라띤즈
시나브로74 스킨파일에서 자바스크립트 출력하는 방법 [1] 2010.08.06 by 에피스
괴적인격 조회수 포인트를요?  
kumuka livexe 최근 게시물을 content 위젯으로 불러오는 법