묻고답하기

<?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 남기남
croc 지식인 마지막 질문일듯하네요 ㅜㅜ [1] file 2012.09.12 by 송동우
용초딩 확장변수를 작성자만 볼 수 있게 가능한가요? [1] 2012.09.12 by 송동우
고이풀 로그인 할때마다 DB의 포인트가 자동으로 캐시에 리프래쉬 문의 [4] 2012.09.11 by 고이풀
꾸링 회원들의 메일주소 일괄 변경 쿼리 재문의~ [1] 2012.09.11 by 송동우
비비크림 현재 접속중인 회원수를 노출하고 싶습니다. [1] 2012.09.11 by sorigongan
임채원임 계속 게시판 클릭할때 넘어가는 화면에 1초동안 문자가 뜹니다  
쿠키1 해외용 홈페이지의 경우 웹호스팅은? [1] 2012.09.11 by 데브위트™
바카라QPR1000.COM 추천바ㅋㅏ라 WWW.QPR1000.COM 바ㅋㅏ라게임방법 WWW.QPR1000.COM 1억출금 WWW.QPR1000.COM file  
MHope 관리자 페이지 파일 경로 [1] file 2012.09.11 by 송동우
꾸링 잘못 입력한 회원의 이메일 주소 일괄변경 [1] 2012.09.11 by 송동우
gguzzun XE 공식 로그인 폼이 깨집니다. [1] file 2012.09.11 by sorigongan
공씨 게시판 수정 추가 질문드립니다. file  
키스미베이베 서버이전후 DB오류 제발가르쳐주세여 ㅜㅜ  
아직없는닉 관리자가 회원 글을 수정했을 시 작성자 바뀌지 않게 안되나요? [1] 2012.09.11 by 송동우
고이풀 포인트시스템-[회원 포인트 목록]에서 검색기능은  
쿠키1 페이지모듈 /xe주소 중복 [1] file 2012.09.11 by 송동우
sorigongan 메일 인증 관련 문의 드립니다. [1] 2020.03.14 by sorigongan
jjjnnn 호스팅업체 둘 중 어디가 나은가요? (광고말고 둘중하나만비교좀..) [2] 2012.09.11 by 워러9
별을사랑했네 현재 그룹별로 접근권한이 되어있는것을 레벨별로 접근 권한을 바꿀수 있는지요? file  
동히 else if 구문 하나만 도와주세요...