339 lines
8.3 KiB
XML
339 lines
8.3 KiB
XML
<?xml version="1.0"?>
|
|
<menu
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="urn:joomla.org"
|
|
xsi:schemaLocation="urn:joomla.org menu.xsd"
|
|
>
|
|
<menuitem
|
|
type="component"
|
|
title="MOD_MENU_CONTROL_PANEL"
|
|
link="index.php"
|
|
class="class:home"
|
|
element="com_cpanel"
|
|
/>
|
|
|
|
<menuitem
|
|
title="COM_CONTENT_MENUS"
|
|
type="heading"
|
|
icon="file-alt"
|
|
class="class:file-alt"
|
|
dashboard="content"
|
|
>
|
|
<menuitem
|
|
title="COM_CONTENT_MENUS_ARTICLE_MANAGER"
|
|
quicktask-title="COM_CONTENT_MENUS_NEW_ARTICLE"
|
|
type="component"
|
|
element="com_content"
|
|
link="index.php?option=com_content&view=articles"
|
|
quicktask="index.php?option=com_content&task=article.add"
|
|
/>
|
|
|
|
<menuitem
|
|
title="COM_CONTENT_MENUS_CATEGORY_MANAGER"
|
|
quicktask-title="COM_CONTENT_MENUS_NEW_CATEGORY"
|
|
type="component"
|
|
element="com_categories"
|
|
link="index.php?option=com_categories&view=categories&extension=com_content"
|
|
quicktask="index.php?option=com_categories&extension=com_content&task=category.add"
|
|
/>
|
|
|
|
<menuitem
|
|
title="COM_CONTENT_MENUS_FEATURED"
|
|
type="component"
|
|
element="com_content"
|
|
link="index.php?option=com_content&view=featured"
|
|
class="class:featured"
|
|
/>
|
|
|
|
<menuitem
|
|
title="COM_CONTENT_MENUS_WORKFLOW"
|
|
type="component"
|
|
element="com_workflow"
|
|
link="index.php?option=com_workflow&view=workflows&extension=com_content.article"
|
|
/>
|
|
|
|
<menuitem
|
|
type="separator"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_FIELDS"
|
|
type="component"
|
|
element="com_fields"
|
|
link="index.php?option=com_fields&view=fields&context=com_content.article"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_FIELDS_GROUP"
|
|
type="component"
|
|
element="com_fields"
|
|
link="index.php?option=com_fields&view=groups&context=com_content.article"
|
|
/>
|
|
|
|
<menuitem
|
|
type="separator"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_MEDIA_MANAGER"
|
|
type="component"
|
|
element="com_media"
|
|
link="index.php?option=com_media"
|
|
class="class:image"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_EXTENSIONS_MODULE_MANAGER_SITE"
|
|
quicktask-title="COM_CONTENT_MENUS_NEW_SITE_MODULE"
|
|
type="component"
|
|
element="com_modules"
|
|
link="index.php?option=com_modules&view=modules&client_id=0"
|
|
quicktask="index.php?option=com_modules&view=select&client_id=0"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_EXTENSIONS_MODULE_MANAGER_ADMINISTRATOR"
|
|
quicktask-title="COM_CONTENT_MENUS_NEW_ADMIN_MODULE"
|
|
type="component"
|
|
element="com_modules"
|
|
link="index.php?option=com_modules&view=modules&client_id=1"
|
|
quicktask="index.php?option=com_modules&view=select&client_id=1"
|
|
/>
|
|
</menuitem>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_MENUS"
|
|
type="heading"
|
|
icon="list"
|
|
class="class:list"
|
|
dashboard="menus"
|
|
>
|
|
<menuitem
|
|
title="MOD_MENU_MENU_MANAGER"
|
|
type="component"
|
|
element="com_menus"
|
|
link="index.php?option=com_menus&view=menus"
|
|
/>
|
|
|
|
<menuitem
|
|
type="separator"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_MENUS_ALL_ITEMS"
|
|
type="component"
|
|
element="com_menus"
|
|
link="index.php?option=com_menus&view=items&menutype="
|
|
/>
|
|
|
|
<!--
|
|
Following is an example of repeatable group based on simple database query.
|
|
This requires sql_* attributes (sql_select and sql_from are required)
|
|
The values can be used like - "{sql:columnName}" in any attribute of repeated elements.
|
|
The repeated elements are placed inside this xml node but they will be populated in the same level in the rendered menu
|
|
-->
|
|
<menuitem
|
|
type="separator"
|
|
title="JSITE"
|
|
hidden="false"
|
|
sql_select="a.id, a.title, a.menutype, CASE COALESCE(SUM(m.home), 0) WHEN 0 THEN '' WHEN 1 THEN CASE m.language WHEN '*' THEN 'class:icon-home' ELSE CONCAT('image:', l.lang_code) END ELSE 'image:mod_languages/icon-16-language.png' END AS icon"
|
|
sql_from="#__menu_types AS a"
|
|
sql_where="a.client_id = 0"
|
|
sql_leftjoin="#__menu AS m ON m.menutype = a.menutype AND m.home = 1 LEFT JOIN #__languages AS l ON l.lang_code = m.language"
|
|
sql_group="a.id, a.title, a.menutype, m.language, l.lang_code"
|
|
sql_order="a.ordering ASC"
|
|
>
|
|
<menuitem
|
|
title="{sql:title}"
|
|
quicktask-title="MOD_MENU_MENU_MANAGER_NEW_SITE_MENU_ITEM"
|
|
type="component"
|
|
element="com_menus"
|
|
link="index.php?option=com_menus&view=items&menutype={sql:menutype}"
|
|
icon="{sql:icon}"
|
|
class="class:menu"
|
|
quicktask="index.php?option=com_menus&task=item.add&menutype={sql:menutype}"
|
|
/>
|
|
</menuitem>
|
|
|
|
<menuitem
|
|
type="separator"
|
|
title="JADMINISTRATOR"
|
|
hidden="false"
|
|
sql_select="title, menutype"
|
|
sql_from="#__menu_types"
|
|
sql_where="client_id = 1"
|
|
sql_order="ordering ASC"
|
|
>
|
|
<menuitem
|
|
title="{sql:title}"
|
|
quicktask-title="MOD_MENU_MENU_MANAGER_NEW_ADMIN_MENU_ITEM"
|
|
type="component"
|
|
element="com_menus"
|
|
link="index.php?option=com_menus&view=items&menutype={sql:menutype}"
|
|
icon="{sql:icon}"
|
|
class="class:menu"
|
|
quicktask="index.php?option=com_menus&task=item.add&client_id=1&menutype={sql:menutype}"
|
|
/>
|
|
</menuitem>
|
|
</menuitem>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_COMPONENTS"
|
|
type="container"
|
|
class="class:puzzle-piece"
|
|
dashboard="components"
|
|
/>
|
|
|
|
<menuitem
|
|
title="COM_USERS_MENUS_USERS"
|
|
type="heading"
|
|
icon="users"
|
|
class="class:users"
|
|
alias="users"
|
|
dashboard="users"
|
|
>
|
|
<menuitem
|
|
title="COM_USERS_MENUS_USER_MANAGER"
|
|
quicktask-title="COM_USERS_MENUS_ADD_USER"
|
|
type="component"
|
|
element="com_users"
|
|
link="index.php?option=com_users&view=users"
|
|
quicktask="index.php?option=com_users&task=user.add"
|
|
/>
|
|
|
|
<menuitem
|
|
title="COM_USERS_MENUS_GROUPS"
|
|
type="component"
|
|
element="com_users"
|
|
link="index.php?option=com_users&view=groups"
|
|
/>
|
|
|
|
<menuitem
|
|
title="COM_USERS_MENUS_LEVELS"
|
|
type="component"
|
|
element="com_users"
|
|
link="index.php?option=com_users&view=levels"
|
|
/>
|
|
|
|
<menuitem
|
|
type="separator"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_FIELDS"
|
|
type="component"
|
|
element="com_fields"
|
|
link="index.php?option=com_fields&view=fields&context=com_users.user"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_FIELDS_GROUP"
|
|
type="component"
|
|
element="com_fields"
|
|
link="index.php?option=com_fields&view=groups&context=com_users.user"
|
|
/>
|
|
|
|
<menuitem
|
|
type="separator"
|
|
/>
|
|
|
|
<menuitem
|
|
title="COM_USERS_MENUS_NOTES"
|
|
type="component"
|
|
element="com_users"
|
|
link="index.php?option=com_users&view=notes"
|
|
/>
|
|
|
|
<menuitem
|
|
title="COM_USERS_MENUS_NOTE_CATEGORIES"
|
|
type="component"
|
|
element="com_categories"
|
|
link="index.php?option=com_categories&view=categories&extension=com_users"
|
|
/>
|
|
|
|
<menuitem
|
|
type="separator"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_COM_PRIVACY"
|
|
type="heading"
|
|
icon="user-secret"
|
|
class="class:privacy"
|
|
dashboard="privacy"
|
|
>
|
|
<menuitem
|
|
title="MOD_MENU_COM_PRIVACY_REQUESTS"
|
|
type="component"
|
|
element="com_privacy"
|
|
link="index.php?option=com_privacy&view=requests"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_COM_PRIVACY_CAPABILITIES"
|
|
type="component"
|
|
element="com_privacy"
|
|
link="index.php?option=com_privacy&view=capabilities"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_COM_PRIVACY_CONSENTS"
|
|
type="component"
|
|
element="com_privacy"
|
|
link="index.php?option=com_privacy&view=consents"
|
|
/>
|
|
</menuitem>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_COM_ACTIONLOGS"
|
|
type="component"
|
|
element="com_actionlogs"
|
|
link="index.php?option=com_actionlogs&view=actionlogs"
|
|
class="class:userlogs"
|
|
/>
|
|
|
|
<menuitem
|
|
type="separator"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_MASS_MAIL_USERS"
|
|
type="component"
|
|
element="com_users"
|
|
link="index.php?option=com_users&view=mail"
|
|
scope="massmail"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_MESSAGING"
|
|
type="component"
|
|
element="com_messages"
|
|
link="index.php?option=com_messages"
|
|
>
|
|
<menuitem
|
|
title="MOD_MENU_MESSAGING_PRIVATE"
|
|
type="component"
|
|
element="com_messages"
|
|
link="index.php?option=com_messages&view=messages"
|
|
quicktask="index.php?option=com_messages&task=message.add"
|
|
/>
|
|
</menuitem>
|
|
</menuitem>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_SYSTEM"
|
|
type="component"
|
|
element="com_cpanel"
|
|
class="class:wrench"
|
|
link="index.php?option=com_cpanel&view=cpanel&dashboard=system"
|
|
/>
|
|
|
|
<menuitem
|
|
title="MOD_MENU_HELP"
|
|
type="component"
|
|
element="com_cpanel"
|
|
class="class:info-circle"
|
|
link="index.php?option=com_cpanel&view=cpanel&dashboard=help"
|
|
/>
|
|
</menu>
|