Adding a custom link to your ColdFusion Administrator in CF8
Today when I tried to add Raymond Camden’s SpoolMail ColdFusion Mail Reader on my development server whch is CF8, I noticed the change in adding a custom link to CF adminstrator. Prior to CF8 , it was like adding the link on extensionscustom.cfm wich can be found under /CFIDE/admistrator/ folder. But In CF 8 it is changed and now it is much more modular as it in an XML file named custommenu.xml under /CFIDE/admistrator/.
This is how we can add a link now :
<submenu label=”Spool Mail”>
<menuitem href=”spoolmail/index.cfm” target=”content”>SpoolMail</menuitem>
</submenu>
1 Comment »
Leave a comment
-
Archives
- October 2009 (1)
- September 2009 (2)
- April 2009 (1)
- March 2009 (1)
- January 2009 (1)
- November 2008 (1)
- August 2008 (1)
- July 2008 (1)
- June 2008 (1)
- May 2008 (1)
- November 2007 (2)
-
Categories
-
RSS
Entries RSS
Comments RSS

Yeah it’s pretty nice, I added some links to my CF Administrator earlier today, including SpoolMail. One thing to watch – I think the target attribute is required, so if you want to redirect from the Administrator to another site/application, you have to specify target=”_blank” for a new window, or target=”_self” I think would work for the current window.