Questions tagged [joomla-component]

Joomla Components are the main Joomla extensions, which provide vital functionality for every Joomla website. They are usually displayed in the center of the page.

Joomla Components define the most vital parts of Joomla page functionality. While a Joomla site may exist without modules or plugins, it could never work without components.

Some components are hard-coded into Joomla, like com_content, which provides the basic Article functionality, or com_users which provides the interface into managing Joomla users. The com_installer is the component responsible to allow for new extension installations.

If you are inexperienced in developing Joomla extensions, you may start with modules or plugins, before getting into components.

For the more experienced, you can read how a component works, here.
To start creating your own component, you can go here.

182 questions
2
votes
2 answers

How to install component and route plugin in one package?

I have created custom component and a route plugin for Joomla 1.5 to to provide SEO URLs for my component and also articles and categories which are not menu tied. Now I have to install my component and route plugin separately. Is there a way to…
Vojtech
  • 2,533
  • 9
  • 34
  • 65
2
votes
1 answer

Passing data from joomla view to joomla template file in joomla 1.7

I want to know how can I pass data from joomla view to joomla template. How can I pass multiple variables? class CareerformViewCareerform extends JView { protected $state; protected $item; function display($tpl = null) { …
Hafiz
  • 4,187
  • 12
  • 58
  • 111
2
votes
3 answers

URLs for Joomla Component

I have created a simple basic component in joomla named, careerform so I want to know that what will be its url? Will it be : index.php/?option=com_careerform or in sef it will be something like: index.php/components/careerform or it will be…
Hafiz
  • 4,187
  • 12
  • 58
  • 111
2
votes
1 answer

Joomla: Is it possible to display a view of a component without iframe and plugin?

Is it possible to display a view of a component without iframe and plugin? (That is to say, if possible with a few lines of PHP and maybe SQL queries?) EDIT: To be more clear: I'd like to do it directly in the PHP-Template! (Would be fine to do it…
Alex
  • 751
  • 1
  • 6
  • 34
2
votes
0 answers

Joomla Component Creator table within a table

I have created a joomla component with Joomla Component Creator. It has two tables. The first table have a jText field called emne (subject). The second table have foregin key field called emneid (subjectid) so i can choose a subject from the first…
2
votes
1 answer

Get article alias name by using article title in joomla

How to get article alias name by using article title in joomla? i want the alias name which one is stored in database.
saravankg
  • 909
  • 1
  • 10
  • 21
2
votes
1 answer

How to set advanced tinymce in joomla 3 component

I call the editor and it apears, but it's extended version, which is set globaly for admin of whole page, and I want it to stay there that way. But in my component I want an advance version of tinymce. Here's code how i call tinymce: $editor =…
2
votes
1 answer

SQL-script does not insert values in component installation in Joomla

I'm working on creating a Joomla component for Joomla 2.5, but I'm having trouble with the installation script. In the install.mysql.utf8.sql file I have the following content: DROP TABLE IF EXISTS `#__products`; CREATE TABLE `#__products` ( `id`…
bvx89
  • 868
  • 5
  • 12
2
votes
2 answers

Joomla pagination is not working for joomla 3.0

I have created joomla pagination for my own component and its working fine for joomla 2.5 and i have use same for joomla 3.0 the data is displaying and also the pagination is also displaying correctly but the issue is when i click on any pagination…
Jitender Thakur
  • 490
  • 5
  • 15
2
votes
1 answer

Joomla site view without "read more"

I am new to Joomla and tried to make a little component on my own. I redirect the user on the site to a view where he can insert some information in a form and submit them. The logic somewhat works, but Jommla inserts three links for posts, read…
LostAvatar
  • 795
  • 7
  • 20
2
votes
3 answers

Sanitize input in joomla

I have code like this in my Joomla plugin: $some_id = $_GET["someid"]; $db = JFactory::getDBO(); $db->setQuery("SELECT * FROM #__table WHERE id = '$some_id'"); $result = $db->loadRow(); Does Joomla sanitize this automatically, or i need to do…
SomeoneS
  • 1,207
  • 2
  • 19
  • 34
2
votes
2 answers

how can I add menu item specific parameters and read them on joomla 2.5 menu?

I am programming a little on joomla(2.5) and I created a component, which works great, now I found a problem... I need that component to receive a paramenter (from a joomla's menu) and indicate a value, then with that value I will calculate some…
jpganz18
  • 5,508
  • 17
  • 66
  • 115
2
votes
1 answer

External administration login script?

I really need your help. I am junior Joomla! developer and also junior Android developer. I am currently building an Android app for Joomla! site administration. So, where do I need help? I managed without any problems to log in some user to…
PetarT
  • 79
  • 1
  • 8
2
votes
3 answers

Problems uninstalling SEO Boss extension in Joomla 2.5

I have created a website named www.connectedipvoice.com and installed SEO Boss extension. Somehow it was not working so I tried to remove it using my administrator mode from my website but it shows a message: JFolder: :delete: Path is not a…
Hardy
  • 21
  • 1
  • 2
2
votes
1 answer

Adding a custom field type on K2 component joomla 2.5

I'm trying to search on google for days already but I couldn't find some useful articles or resources that may able to help me with my concern. I would like to know if how I would be able to create a plugin for K2 component to add a new field type…
1
2
3
12 13