Icons added into navbar

This commit is contained in:
Saqib Razzaq 2015-05-20 13:02:27 +00:00
parent 5e91a12e69
commit fb0ae5a0cf

View file

@ -509,12 +509,12 @@ class ClipBucket
function head_menu($params = NULL)
{
global $cbpage;
$this->head_menu[] = array('name' => lang("menu_home"), 'link' => BASEURL, "this" => "home", "section" => "home", "extra_attr" => "");
$this->head_menu[] = array('name' => lang("videos"), 'link' => cblink(array('name' => 'videos')), "this" => "videos", "section" => "home");
$this->head_menu[] = array('name' => lang("photos"), 'link' => cblink(array('name' => 'photos')), "this" => "photos");
$this->head_menu[] = array('name' => lang("menu_channels"), 'link' => cblink(array('name' => 'channels')), "this" => "channels", "section" => "channels");
$this->head_menu[] = array('name' => lang("Collections"), 'link' => cblink(array('name' => 'collections')), "this" => "collections", "section" => "collections");
$this->head_menu[] = array('name' => lang("groups"), 'link' => cblink(array('name' => 'groups')), "this" => "groups", "section" => "groups");
$this->head_menu[] = array('name' => lang("<i class='fa fa-home'></i>&nbsp; Home"), 'link' => BASEURL, "this" => "home", "section" => "home", "extra_attr" => "");
$this->head_menu[] = array('name' => lang("<i class='fa fa-video-camera'></i>&nbsp; Videos"), 'link' => cblink(array('name' => 'videos')), "this" => "videos", "section" => "home");
$this->head_menu[] = array('name' => lang("<i class='fa fa-camera'></i>&nbsp; Photos"), 'link' => cblink(array('name' => 'photos')), "this" => "photos");
$this->head_menu[] = array('name' => lang("<i class='fa fa-desktop'></i>&nbsp; Channels"), 'link' => cblink(array('name' => 'channels')), "this" => "channels", "section" => "channels");
$this->head_menu[] = array('name' => lang("<i class='fa fa-bars'></i>&nbsp; Collections"), 'link' => cblink(array('name' => 'collections')), "this" => "collections", "section" => "collections");
$this->head_menu[] = array('name' => lang("<i class='fa fa-users'></i>&nbsp; Groups"), 'link' => cblink(array('name' => 'groups')), "this" => "groups", "section" => "groups");
if (!userid())
$this->head_menu[] = array('name' => lang("signup"), 'link' => cblink(array('name' => 'signup')), "this" => "signup");