How to display pretty text - Joomla! Forum - community, help and support
hi,
i'm developing component joomla 1.5, , working on admin side of it. everything's going pretty ok, want display funky fading-background type of messages other admin components show (eg "the configuration details have been updated" message when change in config). i've had bit of @ com_install , com_config files, can't seem pick out part plain text gets stored in $msg gets funkified ready display.
could point me in right direction? quick overview of how these messages stored, made snazzy, displayed lovely; failing that, "look @ line: xxx in file , line: yyy in 1 , you'll see function calls need" type of response @ least me foothold on understanding bit of codebase. didn't see in dev wiki, , forum searches turned nothing either, may have been being blind.
thanks in advance guys , gals.
hello
:-lightinthedark
i'm developing component joomla 1.5, , working on admin side of it. everything's going pretty ok, want display funky fading-background type of messages other admin components show (eg "the configuration details have been updated" message when change in config). i've had bit of @ com_install , com_config files, can't seem pick out part plain text gets stored in $msg gets funkified ready display.
could point me in right direction? quick overview of how these messages stored, made snazzy, displayed lovely; failing that, "look @ line: xxx in file , line: yyy in 1 , you'll see function calls need" type of response @ least me foothold on understanding bit of codebase. didn't see in dev wiki, , forum searches turned nothing either, may have been being blind.
thanks in advance guys , gals.
hello
:-lightinthedark
look @ $mainframe->redirect();
basically, use redirect page. joomla! components perform data manipulation, , redirect results page. might:
ian
basically, use redirect page. joomla! components perform data manipulation, , redirect results page. might:
code: select all
$mainframe->redirect( 'index.php?option=com_component&view=objects', 'this message wanted display' );
ian
Comments
Post a Comment