Lines Matching refs:remote_url
24 private $remote_url; variable in helper_plugin_dwcommits
49 $this->remote_url=$this->set_githubURL();
89 function set_githubURL($remote_url="") { argument
99 if($remote_url) {
100 $inf[$slot] = $remote_url;
102 return "$remote_url saved";
129 $this->remote_url = $inf[$slot];
131 else $this->remote_url = "";
132 return $this->remote_url . " slot=$slot";
222 $this->remote_url = $retv[0];
223 $this->remote_url = preg_replace('/:(?!\/)/',"/",$this->remote_url);
224 $this->remote_url = preg_replace('/^\s*.*?@/',"",$this->remote_url);
225 if(!preg_match('/http/',$this->remote_url)) {
226 if(preg_match('/github/',$this->remote_url)) {
227 $this->remote_url = 'https://'. $this->remote_url;
233 if($this->remote_url) {
234 $this->status_message[] = "Remote URL: $this->remote_url";
243 if(!$this->remote_url) return false;
245 $url = preg_replace('/\.git$/',"", $this->remote_url) . '/commit/';
251 return $this->remote_url;