묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
포인트 선물 애드온 스킨변경
2015.09.13 22:25
https://www.xpressengine.com/index.php?mid=download&package_id=18410868
여기이거의 모듈 소스를 보시면
/**
* 스킨 경로를 미리 template_path 라는 변수로 설정함
* 스킨이 존재하지 않는다면 xe_default로 변경
**/
$config->skin = 'default';
$template_path = sprintf('%sskins/%s/',$this->module_path, $config->skin);
if(!is_dir($template_path))
{
$config->skin = 'default';
$template_path = sprintf('%sskins/%s/',$this->module_path, $config->skin);
}
$this->setTemplatePath($template_path);
이런식으로 나와있는데
스킨을 기본스킨말고 다른걸로 지정학고싶어요.
근데 문제가 A 스킨을 복제한 스킨 A(2) 스킨을 넣어야하는데
파일 가보니 A 폴더는 하나고 관리자 페이지에선 A와 A(2) 이렇게 두개가 뜨더라고요.
결론
포인트 선물을 애드온을 통해 눌렀을때
레이아웃을 A(2)로 하고싶습니다.