- * Check current user permissions based on it's group permissions in specified category (for non-system permissions) or just checks if system permission is set
- *
- * @param string $name permission name
- * @param int $cat_id category id, current used if not specified
- * @param int $type permission type {1 - system, 0 - per category}
- * @return int
- */
- function CheckPermission($name, $type = 1, $cat_id = null)
- WHERE (FilePath = ' . $this->Conn->qstr($t_parts['path']) . ') AND (FileName = ' . $this->Conn->qstr($t_parts['file'] . '.tpl') . ')';
- $template_found = $this->Conn->GetOne($sql);
-
- if (!$template_found) {
- array_shift($url_parts);
- }
- } while (!$template_found && $url_parts);
-
- if ($template_found) {
- $vars['t'] = $template_path;
- return true;
- }
-
- return false;
- }
-
- /**
- * Parses category part of url, build main part of url
- *
- * @param int $rewrite_mode Mode in what rewrite listener was called. Possbile two modes: REWRITE_MODE_BUILD, REWRITE_MODE_PARSE.
- * @param string $prefix Prefix, that listener uses for system integration
- * @param Array $params Params, that are used for url building or created during url parsing.
- * @param Array $url_parts Url parts to parse (only for parsing).
- * @param bool $keep_events Keep event names in resulting url (only for building).
- * @return bool|string|Array Return true to continue to next listener; return false (when building) not to rewrite given prefix; return false (when parsing) to stop processing at this listener.
- $vars['is_virtual'] = true; // for template from POST, strange code there!
- }
- else {
- $vars['m_cat_id'] = 0;
- }
-
- return $res;
- }
-
- /**
- * Builds/parses category item part of url
- *
- * @param int $rewrite_mode Mode in what rewrite listener was called. Possbile two modes: REWRITE_MODE_BUILD, REWRITE_MODE_PARSE.
- * @param string $prefix Prefix, that listener uses for system integration
- * @param Array $params Params, that are used for url building or created during url parsing.
- * @param Array $url_parts Url parts to parse (only for parsing).
- * @param bool $keep_events Keep event names in resulting url (only for building).
- * @return bool Return true to continue to next listener; return false (when building) not to rewrite given prefix; return false (when parsing) to stop processing at this listener.