url = $url; $this->ssl = $ssl; $this->cdn = Config::CDN() ?: false; if ((Request::SERVER('HTTPS') == 'on') || (Request::SERVER('HTTPS') == '1')) { $this->baseurl = $ssl; } else { $this->baseurl = $url; } } /** * @param string $route * @param string $args * @param string $connection * @return string */ public function link($route, $args = '', $connection = 'NONSSL') { if ($connection == 'NONSSL') { $url = $this->url; } else { $url = $this->ssl; } $url .= 'index.php?route=' . $route; if ($args) { if (is_array($args)) { $url .= '&' . http_build_query($args); } else { //$url .= str_replace('&', '&', '&' . ltrim($args, '&')); $url .= '&' . ltrim($args, '&'); } } return $this->rewrite($url); } /** * @param string $hook * @return void */ public function addRewrite($hook) { $this->hook[] = $hook; } /** * @param string $url * @return string */ public function rewrite($url) { foreach ($this->hook as $hook) { $url = $hook->rewrite($url); } return $url; } }