Lines Matching refs:this

45     $this->page=str_replace(':', "",$page); 
48 $this->subdir ="/$subdir";
51 if($exact == 'on') $this->exact_page_match = true;
53 list($this->timestamp,$this->t_when) = explode(':',$tm);
54 $this->dtype = $dtype;
57 $this->search = $search;
60 $this->fuzzy = $this->get_regex($fuzzy);
63 if($ltype) $this->ltype = $ltype;
67 $this->recurse('.');
68 if(!$this->match){
85 if (is_dir("$dir/$file")) $this->recurse("$dir/$file");
87 if($this->page && !preg_match("/" . $this->page ."/",$file)) continue;
88 if($this->exact_page_match) {
89 if(!preg_match("/^" . $this->page ."\.meta$/",$file)) continue;
92 $store_name = preg_replace('/^\./', $this->subdir, "$dir/$file");
95 $success = $this->get_data("$dir/$file","$id_name",$store_name);
97 $this->match = true;
121 if($this->t_when) {
122 $tmstmp = $this->getcurrent('date', $this->dtype);
123 if($this->t_when == 'b' && $tmstmp > $this->timestamp) {
126 else if($this->t_when == 'a' && $tmstmp < $this->timestamp) {
133 if($this->fuzzy) {
134 $search = $this->fuzzy;
137 else if($this->search) {
138 $search = $this->search;
142 if($this->ltype == 'descr') {
143 $description = $this->getcurrent('description','abstract');
149 else if($this->ltype == 'media') {
150 $media = $this->check_listtypes('media',$regex);
153 else if($this->ltype == 'links') {
154 $references = $this->check_listtypes('references',$regex);
157 else if($this->ltype == 'contrib') {
158 $contribs = $this->getcurrent('contributor', null);
168 else if($this->ltype == 'creator') {
169 $creator = $this->getcurrent('creator', null);
170 $creator_id = $this->getcurrent('user', null);
181 $this->match = true;
189 $title = $this->getcurrent($header, null);
193 …$this->process_dates($this->getcurrent('date', 'created'),$this->getcurrent('date', 'modified'));
203 $creator = $this->getcurrent('creator', null);
206 $creator_id = $this->getcurrent('user', null);
208 $this->process_users($creator,$creator_id);
212 … $last_change = $this->getSimpleKeyValue($this->getcurrent($header, null),"last_change");
219 $contributors = $this->getcurrent($header, null);
225 $this->process_users($name,$userid, '');
230 $isreferencedby = $this->getcurrent($header,'isreferencedby');
232 $references = $this->getcurrent($header,'references');
235 $media = $this->getcurrent($header,'media');
237 $firstimage = $this->getcurrent($header,'firstimage');
238 $haspart = $this->getcurrent($header,'haspart');
239 $subject = $this->getcurrent($header,'subject');
240 … $this->process_relation($isreferencedby,$references,$media,$firstimage,$haspart,$subject);
245 $description = htmlentities($this->getcurrent($header,'abstract'));
320 $list = $this->create_list(array_keys($isreferencedby));
321 $this->insertListInTable($list,'Backlinks');
324 $list = $this->create_list(array_keys($references));
325 $this->insertListInTable($list,'[Links]');
328 $list = $this->create_list(array_keys($media));
329 $this->insertListInTable($list,'[Media]');
335 $list = $this->create_list(array_keys($haspart));
336 $this->insertListInTable($list,'haspart');
340 $this->insertListInTable($list,'Subject');
381 $ar = $this->getcurrent('relation',$which);