Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
How to develop categories and Sub categories
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
josef amalraj  
View profile  
 More options May 14 2012, 7:17 am
From: josef amalraj <josefamal...@gmail.com>
Date: Mon, 14 May 2012 16:47:11 +0530
Local: Mon, May 14 2012 7:17 am
Subject: How to develop categories and Sub categories

Hi,,everyone to all,
                         i nedd assistance from your side,,i develop small
components  How to develop categories and Sub categories from joomla admin
components mmmis there any idea pls reply or given some example codings
,,,and packages to easy lines

Thanks
Josef


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel  
View profile  
 More options May 14 2012, 5:09 pm
From: Daniel <daniel.iguera...@gmail.com>
Date: Mon, 14 May 2012 23:09:38 +0200
Local: Mon, May 14 2012 5:09 pm
Subject: Re: [jcms] How to develop categories and Sub categories

Hi Josef,

https://github.com/Niambie
This is a J! component creator.
Just amazing, very helpful and free.

Regards,
Daniel

Le 14/05/2012 13:17, josef amalraj a �crit :


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark Dexter  
View profile  
 More options May 14 2012, 7:25 pm
From: Mark Dexter <dextercow...@gmail.com>
Date: Mon, 14 May 2012 16:25:37 -0700
Local: Mon, May 14 2012 7:25 pm
Subject: Re: [jcms] How to develop categories and Sub categories
You can add a category manager with just a few lines of code. If you
look at administrator/components/com_weblinks/weblinks.xml, you will
see a menu link element with:

<menu link="option=com_categories&amp;extension=com_weblinks"
   view="categories" img="class:weblinks-cat"
   alt="Weblinks/Categories">com_weblinks_categories</menu>

This adds the category menu during installation. Then, in
administrator/components/com_weblinks/helpers/weblinks.php there is
this code:

  JSubMenuHelper::addEntry(
      JText::_('COM_WEBLINKS_SUBMENU_CATEGORIES'),
      'index.php?option=com_categories&extension=com_weblinks',
      $vName == 'categories'
   );
   if ($vName=='categories') {
      JToolBarHelper::title(
         JText::sprintf('COM_CATEGORIES_CATEGORIES_TITLE',
JText::_('com_weblinks')),
            'weblinks-categories');
      }

That adds the Categories tab to the Web Links manager. All we are
doing is calling com_categories with the extension variable in the
URL.

Good luck. Mark


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
joseph amalraj  
View profile  
 More options May 16 2012, 9:10 am
From: joseph amalraj <jos...@hdwebplayer.com>
Date: Wed, 16 May 2012 18:40:24 +0530
Local: Wed, May 16 2012 9:10 am
Subject: Re: [jcms] How to develop categories and Sub categories

hi friends thanks for your information..........


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »