Welcome Guest, Not a member yet? Register   Sign In
new simple function for URI class
#1

[eluser]Iverson[/eluser]
I run multiple applications for separate clients on one CI install. However, I still want them to be able to access my top level domain so I created a simple function almost identical to site_url();

In your application/config.php, add

Code:
// Add the trailing slash!
$conf['top_url'] = 'http://example.com/';

In <b>url_helper.php</b>, add

Code:
/**
* Top URL
*
* Returns the "top_url" item from your config file
*
* @access    public
* @return    string
*/
if ( ! function_exists('top_url'))
{
    function top_url($uri = '')
    {
        $CI =& get_instance();
        return $CI->config->item('top_url') . $uri;
    }
}

// ------------------------------------------------------------------------

Now all you have to do is call "top_url()" and it'll take you to your top level domain. Might not be useful for others, but I figured I'd share it anyway. Suggestions welcome.


Messages In This Thread
new simple function for URI class - by El Forum - 12-16-2008, 03:12 AM
new simple function for URI class - by El Forum - 12-16-2008, 03:27 AM
new simple function for URI class - by El Forum - 12-16-2008, 04:42 AM



Theme © iAndrew 2016 - Forum software by © MyBB