커스텀 알림의 타입리스트를 확인하고 해당 알림을 삭제할 수 있도록 개선

This commit is contained in:
BJRambo 2017-05-02 02:50:32 +09:00
parent de7213bb22
commit f702b6c7d6
9 changed files with 138 additions and 0 deletions

View file

@ -31,4 +31,15 @@ class ncenterliteAdminModel extends ncenterlite
$output->data = $list;
return $output;
}
/**
* Get notify type list.
* @return object
*/
function getNotifyType()
{
$output = executeQueryArray('ncenterlite.getNotifyTypeAdminList');
return $output;
}
}