묻고답하기
content 위젯 좀 봐주세요
2015.03.02 14:54
특정기간(예;201501)의 자료만 빼오려고 컨텐트위젯을 변형하여 사용하고자합니다
1. info.xml 파일에 위젯 설정을 입력하려고 아래 내용을 추가하고
<var id="gigan" type="text">
<name xml:lang="ko">출력년월</name>
<description xml:lang="ko">출력될 내용의 년월을 설정 (예:201501)</description>
</var>
2. content.class.php 파일에
// 출력기간
if(!$args->gigan) $args->gigan = 201001;
3. getNewestDocument.xml 에 아래 조건을 추가하였습니다
<conditions>
<condition operation="equal" column="substr(documents.regdate,1,6)" var="gigan" notnull="notnull">
<condition operation="in" column="documents.module_srl" var="module_srl" filter="number" notnull="notnull" pipe="and" />
<condition operation="equal" column="documents.category_srl" var="category_srl" pipe="and" />
<condition operation="in" column="status" var="statusList" pipe="and" />
</conditions>
그러나, 아무것도 출력되는것이 없습니다
오류표시도 없고 .. ㅠ
어디가 잘못된걸까요?