Reputation: 12885
I've done this befor but with all my memory, search efforts and logic failing I can't figure out how to add a new "Big Icon" link on the main dashboard of the Joomla administration. What file am i looking to change? I'm sitting on a fresh install of 1.5.15
Upvotes: 0
Views: 3848
Reputation: 11
The best way is to make new Quickicon plugin. The simpliest way is to inspire in Extensionupdate or Joomlaupdate Quickicon plugin.
Quickicon
Plugin name, edit the file in what you want ... the base thing is that the plugin must return Icon Definition array#_extensions
(# is db prefix) new line of code defining that the plg_guickicon_ownplugin
is there (again, inspire in Joomlaupdate/Extensionupdate
plugin SQL record)And that's all, no hacking needed, just make own plugin for Quickicon module
Upvotes: 1
Reputation: 1
The file is a module, you can create a module and assign it to the position of 'icons'.
Upvotes: 0
Reputation: 721
Do you mean addin a new "big Icon" to the control panel of the Joomla administration dashboard?
image-example: http://i49.tinypic.com/9ampmq.png
(image is in spanish, just an example) Anyway, if that is what you're looking for:
<div id="cpanel">...</div>
$link = 'index.php?option=com_media';
quickiconButton( $link, 'icon-48-media.png', JText::_( 'Media Manager' ) );
.. and edit it according to what you need/want. I guess you know what I mean, but just to make sure, you probably want to change the image, the $link (for that you'll have to create a custom folder if you wanna keep it clean, such as "com_whateveryouwant".
I hope this helps. You could also just download this extension.. but it'll be boring: --sorry can't post more links, if you're interested, write me back--
Chris.
Upvotes: 3