Lines Matching refs:this

23         $controller->register_hook('HTMLOK_ACCESS_EVENT', 'BEFORE', $this, 'errors_top');
24 $controller->register_hook('PARSER_CACHE_USE', 'BEFORE', $this, 'bypasss_cache');
25 …$controller->register_hook('TEMPLATE_USERTOOLS_DISPLAY', 'BEFORE', $this, 'action_link', array('us…
26 …$controller->register_hook('TEMPLATE_HTMLOKAYTOOLS_DISPLAY', 'BEFORE', $this, 'action_link', array…
27 … $controller->register_hook('ACTION_HEADERS_SEND', 'BEFORE', $this, 'modify_headers', array());
28 $controller->register_hook('DOKUWIKI_STARTED', 'BEFORE', $this, 'dw_started', array());
29 …$controller->register_hook('TPL_ACT_RENDER', 'BEFORE', $this, 'errors_top', array()); …
33 $this->_init();
39 $this->get_info();
42 if(!$this->files) {
45 if(!in_array('all', $this->files) && !in_array($page, $this->files)) {
77 $this->helper->get_info();
79 $namespace = $this->helper->get_namespace();
81 $this->namespace = $namespace;
83 $access_file = $this->helper->get_access_file(HTMLOK_ACCESS_DIR, $namespace);
84 $this->set_dbg_msg("access file: $access_file");
87 … $INFO['htmlOK_access_scope'] = $this->helper->get_access_scope($access_file);
88 $this->set_dbg_msg("file exists: access file: $access_file");
89 $this->saved_inf = $this->helper->get_saved_inf();
90 if (!$this->saved_inf)
95 $this->files = $this->saved_inf['filespecs'];
97 $this->curent_file = basename($INFO['filepath']);
100 $this->curent_file = noNS($ID) . '.txt';
102 $this->access_file = $access_file;
128 if(!$this->do_dbg) return;
129 $this->db_msg .= $msg . '<br />';
136 $this->helper = $this->loadhelper('htmlOKay',1);
138 $this->do_dbg = true;
140 $this->get_info();
154 $this->format_error_window();
155 $this->debug();
176 $this->setup_debug ($event,$params);
181 $this->JS_ErrString .= $this->get_JSErrString("<b>---End User Info---</b>");
182 …$this->JS_ErrString .= $this->get_JSErrString("hmtlOK_access_level: " . $this->helper->get_access…
185 $this->JS_ErrString .= $this->get_JSErrString("client: " . $INFO['htmlOK_client']);
189 $this->JS_ErrString .= $this->get_JSErrString("client: " . $INFO['client']);
192 $this->JS_ErrString .= $this->get_JSErrString("Scope: " . $INFO['htmlOK_access_scope']);
193 $this->JS_ErrString .= $this->get_JSErrString("<b>User Info:</b>");
196 $this->access_level = $INFO['hmtlOK_access_level'];
200 $this->access_level = $INFO['htmlOK_displayOnly'];
265 if(!$this->do_dbg) return;
281 echo $this->db_msg;
284 echo "Current File: $this->curent_file<br />";
285 … echo "Access Directory: " . HTMLOK_ACCESS_DIR . "<br />Access File: $this->access_file <br /> \n";
304 print_r($this->saved_inf,true);