예제 #1
0
파일: item.php 프로젝트: educakanchay/educa
 function tags()
 {
     require_once JPATH_COMPONENT_ADMINISTRATOR . DS . 'models' . DS . 'tag.php';
     $model = new K2ModelTag();
     $model->tags();
 }
예제 #2
0
파일: item.php 프로젝트: emavro/k2
 function tags()
 {
     $user = JFactory::getUser();
     if ($user->guest) {
         JError::raiseError(403, JText::_('K2_ALERTNOTAUTH'));
     }
     require_once JPATH_COMPONENT_ADMINISTRATOR . DS . 'models' . DS . 'tag.php';
     $model = new K2ModelTag();
     $model->tags();
 }