OVERCODE

xe 확장변수 eid로 정렬하기 본문

프로그래밍/XE

xe 확장변수 eid로 정렬하기

오버코드 2015. 10. 8. 18:51

document.model.php 의

 

function _setSortIndex() 의 젤 윗줄에 아래 코드 추가

 

function _setSortIndex($obj, $load_extra_vars) {
//확장변수 eid로 정렬
if($obj->sort_index == 'eng_name') { //확장변수의 eid
	$returnObj = new stdClass();
	$returnObj->sort_index = $obj->sort_index;
	$returnObj->isExtraVars = true;
	return $returnObj;
}
.......

이런식으로 쓰면됨

 

$args = new stdClass();
$args->module_srl = 104;
$args->sort_index = 'eng_name';
$output = $oDocumentModel->getDocumentList($args);

Comments