묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
조금만 도와주시면 될것같은데...ㅠㅠ
2009.03.05 15:02
{@$imgLocation = $oDocument->getThumbnail($widget_info->thumbnail_width,$widget_info->thumbnail_height,$widget_info->thumbnail_type);}
{@$movieLocation = $oDocument->get('file_srl')}
{@$Subject = $oDocument->getTitle($widget_info->title_length);}
{@$author = $oDocument->getNickName();}
{@$Date = $oDocument->getRegdate();}
{@$url = getUrl('+ '+ '','document_srl',$oDocument->document_srl);}
<!--DB에서 가져온 정보로 Xml문서의 Element를 구성-->
{@$xmlList .=" <track>\n";}
{@$xmlList .=" <location>$movieLocation</location>\n";}<!-- 동영상경로 -->
{@$xmlList .=" <image>$imgLocation</image>\n";}<!-- 이미지경로 -->
{@$xmlList .=" <title>$Subject</title>\n";} <!-- 게시판제목 -->
{@$xmlList .=" <creator>by $author</creator>\n";} <!-- 작성자 -->
{@$xmlList .=" <info>$url</info>\n";} <!-- 링크 -->
{@$xmlList .=" </track>\n\n";}
<!--@end-->
이렇게 변수를 줘서 xml로 뿌려주려고 합니다.
위 코드같이 적었더니
<track>
<location></location>
<image>/files/cache/thumbnails/423/052/100x100.crop.jpg</image>
<title>동영상테스트</title>
<creator>by 관리자</creator>
<info>/52423</info>
</track>
생성된 xml파일내용에 타이틀이나 작성자, 이미지경로들은 뽑아오는데 동영상경로만 생성이 안됩니다.
{@$movieLocation = $oDocument->get('file_srl')}
{@$Subject = $oDocument->getTitle($widget_info->title_length);}
{@$author = $oDocument->getNickName();}
{@$Date = $oDocument->getRegdate();}
{@$url = getUrl('+ '+ '','document_srl',$oDocument->document_srl);}
<!--DB에서 가져온 정보로 Xml문서의 Element를 구성-->
{@$xmlList .=" <track>\n";}
{@$xmlList .=" <location>$movieLocation</location>\n";}<!-- 동영상경로 -->
{@$xmlList .=" <image>$imgLocation</image>\n";}<!-- 이미지경로 -->
{@$xmlList .=" <title>$Subject</title>\n";} <!-- 게시판제목 -->
{@$xmlList .=" <creator>by $author</creator>\n";} <!-- 작성자 -->
{@$xmlList .=" <info>$url</info>\n";} <!-- 링크 -->
{@$xmlList .=" </track>\n\n";}
<!--@end-->
이렇게 변수를 줘서 xml로 뿌려주려고 합니다.
위 코드같이 적었더니
<track>
<location></location>
<image>/files/cache/thumbnails/423/052/100x100.crop.jpg</image>
<title>동영상테스트</title>
<creator>by 관리자</creator>
<info>/52423</info>
</track>
생성된 xml파일내용에 타이틀이나 작성자, 이미지경로들은 뽑아오는데 동영상경로만 생성이 안됩니다.