summaryrefslogtreecommitdiffstats
path: root/application/views/helpers/BaseUrl.php
blob: c8e9007af453482ea7b1ed8d14279b125a56c1b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?php

class Zend_View_Helper_BaseUrl
{
    function baseUrl()
    {
        $fc = Zend_Controller_Front::getInstance();
        return $fc->getBaseUrl();
    }
}