phpgroupware-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Phpgroupware-developers] moving compose and folder links


From: Lars Kneschke
Subject: Re: [Phpgroupware-developers] moving compose and folder links
Date: Tue, 26 Mar 2002 22:18:00 +0100

On Wed, 27 Mar 2002 14:32:24 +0530, you wrote: 
>hi,
> problem:
> ---------
>
> This is regarding a need to move the compose  and mange  folders link in
>email to navbar ie where application are placed

Hm, i can't really understand what your problem is, but i'll try my best.

The links are just links. So lets create them.

// create the compose link
$linkData = array
(
         'menuaction'    => 'email.uicompose.compose'
);
$this->t->set_var('compose_link',$GLOBALS['phpgw']->link
('/index.php',$linkData));


// create the manage folder link
$linkData = array
(
         'menuaction'    => 'email.uifolder.folder'
);
$this->t->set_var('manage_folder_link',$GLOBALS['phpgw']->link
('/index.php',$linkData));


$this->t is a pointer to the current template object.

Good luck!! :)

--
Lars Kneschke <address@hidden>






reply via email to

[Prev in Thread] Current Thread [Next in Thread]