예제 #1
0
파일: frame.php 프로젝트: Roman921/Step-21
 public function parseRoute()
 {
     // Check plugin
     $pl = reqGmp::getVar('pl');
     if ($pl == GMP_CODE) {
         $mod = reqGmp::getMode();
         if ($mod) {
             $this->_mod = $mod;
         }
         $action = reqGmp::getVar('action');
         if ($action) {
             $this->_action = $action;
         }
     }
 }