Lines Matching refs:_profile

21 	var $_profile = array();  variable in helper_plugin_freesync
49 return $this->_profile['name'];
53 return $this->_profile;
58 $this->_profile["pages"] = null;
59 $this->_profile["files"] = null;
61 $profile = array_merge($this->_profile, $profile);
98 $this->_profile = parse_ini_file($pfFN);
100 $this->_profile = array();
101 if(!empty($this->_profile['namespace']) && !preg_match('/.*:$/', $this->_profile['namespace']))
102 $this->_profile['namespace'] .= ":";
110 $this->_client = new IXR_Client($this->_profile['xmlrpcurl']);
111 if(!empty($this->_profile['user'])) {
112 … $loginurl = str_replace('lib/exe/xmlrpc.php', 'doku.php?do=login', $this->_profile['xmlrpcurl']);
115 array("id" => "start", "u" => $this->_profile['user'], "p" => $this->_profile['pass']),
145 if($this->_profile['pages']) {
171 if($this->_profile['files']) {
214 if($page['llastModified'].','.$page['rlastModified'] == $this->_profile[$id]) {
217 return !strncmp($id, $this->_profile['namespace'], strlen($this->_profile['namespace'])) &&
272 $this->_profile[$id] = $page['version'].','.$rversion['lastModified']->getTimestamp();
273 $this->saveProfile($this->getProfileName(), $this->_profile);
354 $this->_profile[$id] = $lversion['version'].','.$page['lastModified']->getTimestamp();
355 $this->saveProfile($this->getProfileName(), $this->_profile);
387 $fetchurl = str_replace('xmlrpc.php', 'fetch.php?media='.$id, $this->_profile['xmlrpcurl']);
403 $this->_profile[$id] = $file['lastModified'].','.$rversion['lastModified'];
404 $this->saveProfile($this->getProfileName(), $this->_profile);
476 $this->_profile[$id] = $lversion['lastModified'].','.$file['lastModified'];
477 $this->saveProfile($this->getProfileName(), $this->_profile);