Lines Matching refs:this

19 				$this->parent = $parent;
20 $this->direct_post = $parent->getConf('direct_post');
21 $this->notify = $parent->getConf('notify');
22 $this->post_url = $parent->getConf('post_url');
23 $this->show_max = $parent->getConf('show_max');
29 if ( is_null($this->parent) && !is_null($parent))
30 $this->parent = $parent;
32 $db_server = $this->parent->getConf('db_server');
33 $db_user = $this->parent->getConf('db_user');
34 $db_name = $this->parent->getConf('db_name');
35 $db_password = $this->parent->getConf('db_passwd');
36 $this->direct_post = $this->parent->getConf('direct_post');
37 $this->notify = $this->parent->getConf('notify');
38 $this->post_url = $parent->getConf('post_url');
40 …$this->db = @mysql_connect($db_server, $db_user, $db_password) or die ("Konnte keine Verbindung zu…
41 @mysql_select_db($db_name, $this->db);
47 @mysql_close($this->db);
48 $this->db = null;
74 $this->connect_db($parent);
99 $this->close_db();
117 $this->admin = $admin;
125 $nav = $this->navBar($parent);
127 …"submit" class="button" name="createEntry" value="Neuer Eintrag" />' . (!$this->admin?'':'<input t…
136 …$sql="SELECT messagehead, messagetext, name, date, ID, active FROM wiki_guestbook " . (!$this->adm…
142 if ($this->admin) {
160 …"submit" class="button" name="createEntry" value="Neuer Eintrag" />' . (!$this->admin?'':'<input t…
171 if ($this->admin && intval($admin)>0)
187 …if ($this->admin) $output .= '<input type="hidden" name="do" value="admin" /><input type="hidden" …
189 $output .= $this->error_handle();
196 …if ($this->admin && intval($admin)>0) $output .= '<input type="hidden" name="oldID" value="' . int…
250 if(intval($_POST['guestDelete'])>0 && $this->admin) {
262 if(intval($_POST['guestActivate']) > 0 && $this->admin) {
274 if(intval($_GET['activate']) > 0 && $this->admin) {
305 if (intval($admin) > 0 && $this->admin)
322 …mail($email_to, $subject, $this->emailbody($guestbook_database->quote_smart($_POST['subject']), $g…
339 if (intval($admin) > 0 && $this->admin)
408 …$this->actualDate = !empty($_POST['oldDate'])?date("Y-m-d", strtotime($_POST['oldDate'])):(empty($…
409 $this->actualTime = (empty($_POST['date'])?date("H:i", time()):date("H:i", $_POST['date']));
410 …$this->actualTimestamp = !empty($_POST['oldDate'])?strtotime($_POST['oldDate']):(empty($_POST['dat…
415 return $this->actualDate;
420 return $this->actualTime;
425 return $this->actualTimestamp;