Joomla!: What do to add links in footer? - joomla1.5

I wanted to add some (internal) links to the footer in a custom template,
how should I do this?
I'm very new to Joomla! and I don't know how to do this best.
I couldn't/don't want install plugins, it should simple work with built-in possibilities.

If I understand the question correctly, all you need to so is add a new menu.
Log in to Joomla and select Menu Manager from the Menu menu
Create a new menu
Select the new menu in the Menu menu
Add menu items - internal links or what ever you want
Select Module Manager from Extensions meni
Create new Menu module, select the new menu and the footer position
You should be able to then style the menu accordingly with CSS.

Related

locationURI of "New"Menu Item

I want to know locationURI of "New" MenuItem of Eclipse plugin. For example, for "Configure" Menu the locationURI is "org.eclipse.ui.projectConfigure". My task is to make popup submenu item adding "New" menu. So I need to know menubarpath for New Menu. If someone knows, please share source code to me.
The id is org.eclipse.ui.file.newQuickMenu according to the code which creates it in WorkbenchActionBuilder.
The New menu is handled specially and normal ways of contributing to it may not work. The normal way to add to the New menu is by using the org.eclipse.ui.newWizards extension point.

Eclipse e4: add commands to context menu

I defined several commands in my Application Model, say like openCommand, saveCommand. And I can add them to the menu bar or tool bar easily. Now I want them to also appear in the context menu of the edit part, how can this be done?
To be short, I want a menu item in main menu, a tool bar item in tool bar and another menu item in context menu. All these three items have the same function and thus should be mapped to the same command. I can do the first two but have no idea about the third.
Any help would be appreciated! Thanks a lot!
You define the context menu for a Part in the Menu section of the Part Descriptor in the application model. Add a 'Popup Menu' and give it a unique id. Add menu items to the popup menu in the normal way.
Tell Eclipse the menu is the context menu for a control using the EMenuService:
#Inject
private EMenuService menuService;
...
menuService.registerContextMenu(control, "menu id");

Why some widgets do not get included in WindowBuilder?

Im using WindowBuilder tool to build a GUI for my application and I see that some widgets or tools don't get included in the Design view. In my case, I have created a new SWT Application window and I try to add DropDown Menu in the Application window and I always get a red icon when I take the DropDown menu from the palette to the design area. Can anyone tell me what is the problem in this case?
I found the mistake I was doing...It is not possible to directly add a DropDown Menu in the design editor. You first have to add a Menu and then add a DropDown Menu. And the widgets do work in all forms of applications you want to develop.

About Main Menu in joomla

In admin , main menu is not displaying from menu manager but other menus like footer menu and header menu are displaying / working.
Has it been created? Was it accidentally deleted?
You may be able to recreate it - or go into the module manager and make sure that there's the appropriate module for it!

How to access to menu items?

I created a menu of RCP application only in plugin.xml. How to access to items of this menu programicaly to change their texts and images at runtime?
If you are using command framework to contribute those menu items, you can use org.eclipse.ui.commands.IElementUpdater to change the text and image.