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
A plugin for Joomla
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
  15 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
 
Poornima Alexander  
View profile  
 More options Jul 24 2012, 5:02 am
From: Poornima Alexander <poornima.a...@gmail.com>
Date: Tue, 24 Jul 2012 02:02:28 -0700 (PDT)
Local: Tues, Jul 24 2012 5:02 am
Subject: A plugin for Joomla

Hi, can someone please explain me what does the xml file does in a plugin?
What parts are mandatory in coding?

Thank you very much...


 
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.
MOHAMED AKRAM  
View profile  
 More options Jul 24 2012, 5:05 am
From: MOHAMED AKRAM <mohamedakra...@gmail.com>
Date: Tue, 24 Jul 2012 14:35:57 +0530
Local: Tues, Jul 24 2012 5:05 am
Subject: Re: [jcms] A plugin for Joomla

<?xml version="1.0" encoding="utf-8"?>
<extension version="2.5" type="plugin" group="search">
    <name>plg_search_scanpdf</name> //here plg is prefix and after plg_ u
have to define the plugin group, _and then name of the plugin

    <author>Lankacom Services</author>
    <creationDate>July 2012</creationDate>
    <copyright>Copyright (C) 2012 - 2020 . All rights reserved.</copyright>
    <license>Commercial; see LICENSE.txt</license>
    <authorEmail>ak...@lankacom.net</authorEmail>
    <authorUrl>www.lankacom.net</authorUrl>
    <version>2.5.0</version>
    <description>Extends Default Search option</description>
    <files>
        <filename plugin="scanpdf">scanpdf.php</filename>
        <filename>index.html</filename>
    </files>

</extension>

On Tue, Jul 24, 2012 at 2:32 PM, Poornima Alexander <poornima.a...@gmail.com


 
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.
Poornima Alexander  
View profile  
 More options Jul 24 2012, 5:32 am
From: Poornima Alexander <poornima.a...@gmail.com>
Date: Tue, 24 Jul 2012 02:32:28 -0700 (PDT)
Local: Tues, Jul 24 2012 5:32 am
Subject: Re: A plugin for Joomla

@  Mohamed Akram
Are only these need to be made mandatory?

Thank you very much...


 
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.
MOHAMED AKRAM  
View profile  
 More options Jul 24 2012, 5:36 am
From: MOHAMED AKRAM <mohamedakra...@gmail.com>
Date: Tue, 24 Jul 2012 15:06:49 +0530
Local: Tues, Jul 24 2012 5:36 am
Subject: Re: [jcms] Re: A plugin for Joomla

if you want you can add plugin parameters in the following way, this is a
example

    <config>
        <fields name="params">
            <fieldset name="basic">
                <field name="enabled" type="radio" default="0"
label="Enable" description="If you enable this, make sure you have added a
password. You will not be able to access the /administrator folder without
your password!">
                    <option value="1">JYES</option>
                    <option value="0">JNO</option>
                </field>
                <field name="password" type="password" size="50" default=""
label="Password" description="This is your password. You will use it to
access your /administrator folder. Dont Forget It" />
                <field name="mode" type="radio" default="0" label="Mode"
description="This is the authentication mode. If you use PHP as an Apache
module, use the HTTP Authentication (more security). ">
                    <option value="1">HTTP Authentication</option>
                    <option value="0">URL Hashkey</option>
                </field>
            </fieldset>
        </fields>
        </config>

On Tue, Jul 24, 2012 at 3:02 PM, Poornima Alexander <poornima.a...@gmail.com


 
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.
Poornima Alexander  
View profile  
 More options Jul 24 2012, 5:37 am
From: Poornima Alexander <poornima.a...@gmail.com>
Date: Tue, 24 Jul 2012 02:37:49 -0700 (PDT)
Local: Tues, Jul 24 2012 5:37 am
Subject: Re: A plugin for Joomla

@  Mohamed Akram
I have seen that most of the xml files of plugins and modules contain a tag
called <config>. Please tell me what that is...

Thank you very much...


 
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.
Poornima Alexander  
View profile  
 More options Jul 24 2012, 5:42 am
From: Poornima Alexander <poornima.a...@gmail.com>
Date: Tue, 24 Jul 2012 02:42:12 -0700 (PDT)
Local: Tues, Jul 24 2012 5:42 am
Subject: Re: A plugin for Joomla

@  Mohamed Akram
I am new to developing plugins for Joomla. This is the first time that i am
going to develop a plugin.
Can you please give me a brief description for params for a plugin?

Thank you very much...


 
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.
MOHAMED AKRAM  
View profile  
 More options Jul 24 2012, 5:47 am
From: MOHAMED AKRAM <mohamedakra...@gmail.com>
Date: Tue, 24 Jul 2012 15:17:50 +0530
Local: Tues, Jul 24 2012 5:47 am
Subject: Re: [jcms] Re: A plugin for Joomla

Here is an example for a search plugin in joomla documentation,
http://docs.joomla.org/Creating_a_search_plugin

actually you can define any number of params for any joomla extension,
assume, you want develop a search plugin where you want allow the
administrator to define the search limit, and based on the defined limit
via the back end you can show the result,

in your php code you can get the params set for a plugin like this,

$plugin = JPluginHelper::getPlugin('system', 'yourplugin name');
$this->params = new JParameter($plugin->params);

$search_limit = $this->params->get('search_limit')

On Tue, Jul 24, 2012 at 3:12 PM, Poornima Alexander <poornima.a...@gmail.com


 
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.
MOHAMED AKRAM  
View profile  
 More options Jul 24 2012, 5:48 am
From: MOHAMED AKRAM <mohamedakra...@gmail.com>
Date: Tue, 24 Jul 2012 15:18:33 +0530
Local: Tues, Jul 24 2012 5:48 am
Subject: Re: [jcms] Re: A plugin for Joomla

On Tue, Jul 24, 2012 at 3:17 PM, MOHAMED AKRAM <mohamedakra...@gmail.com>wrote:


 
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.
MOHAMED AKRAM  
View profile  
 More options Jul 24 2012, 5:49 am
From: MOHAMED AKRAM <mohamedakra...@gmail.com>
Date: Tue, 24 Jul 2012 15:19:36 +0530
Local: Tues, Jul 24 2012 5:49 am
Subject: Re: [jcms] Re: A plugin for Joomla

$plugin = JPluginHelper::getPlugin('plugin_group', 'yourplugin name');

and here is another tutariol for plugin development
http://www.informit.com/articles/article.aspx?p=1858258&seqNum=7

On Tue, Jul 24, 2012 at 3:18 PM, MOHAMED AKRAM <mohamedakra...@gmail.com>wrote:


 
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.
fornandakishore  
View profile  
 More options Jul 24 2012, 5:49 am
From: fornandakishore <fornandakish...@gmail.com>
Date: Tue, 24 Jul 2012 15:19:23 +0530
Local: Tues, Jul 24 2012 5:49 am
Subject: Re: [jcms] Re: A plugin for Joomla

Hello Poornima,

I suggest you to have a look on this tutorial :
http://docs.joomla.org/Creating_a_content_plugin

In this everything has been explain clear and nice. I learned from this
document and build some plug-ins.

Hope this will help you.

---------------------

Nanda Kishore. M

Software Engineer

http://php-desk.blogspot.com

Mobile: + 91 98499 71144

On Tue, Jul 24, 2012 at 3:12 PM, Poornima Alexander <poornima.a...@gmail.com


 
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.
Poornima Alexander  
View profile  
 More options Jul 24 2012, 6:16 am
From: Poornima Alexander <poornima.a...@gmail.com>
Date: Tue, 24 Jul 2012 03:16:50 -0700 (PDT)
Local: Tues, Jul 24 2012 6:16 am
Subject: Re: A plugin for Joomla

The plugin i intend to develop is like this.
User is allowed to select videos or audios from a list of items. Once the
user selects one item the video/audio is played inside the site. (without
redirecting to youtube or any other site). I hope to facilitate the user to
upload such videos and audios into the database also.
Yet i still cannot decide where should i start.
Can you please give me an idea on how to start this?

Thank you very much...


 
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.
b2z  
View profile  
 More options Jul 24 2012, 3:14 pm
From: b2z <bzzj...@gmail.com>
Date: Tue, 24 Jul 2012 12:14:40 -0700 (PDT)
Local: Tues, Jul 24 2012 3:14 pm
Subject: Re: A plugin for Joomla

Hi Alexander.

I think that for such tasks you will need not a plugin, but a component. And the best way to start is to take a paper and write down some base ideas how it should work, what db schemas will it use and so on.

Also look at docs.joomla.org in Developers section, there is a tutorial of creating basic component.

Best regards,
Dmitry.


 
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.
b2z  
View profile  
 More options Jul 24 2012, 3:15 pm
From: b2z <bzzj...@gmail.com>
Date: Tue, 24 Jul 2012 12:15:07 -0700 (PDT)
Local: Tues, Jul 24 2012 3:15 pm
Subject: Re: A plugin for Joomla

Hi Alexander.

I think that for such tasks you will need not a plugin, but a component. And the best way to start is to take a paper and write down some base ideas how it should work, what db schemas will it use and so on.

Also look at docs.joomla.org in Developers section, there is a tutorial of creating basic component.

Best regards,
Dmitry.


 
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.
Nick Savov  
View profile   Translate to Translated (View Original)
 More options Jul 24 2012, 7:44 pm
From: "Nick Savov" <n...@iowawebcompany.com>
Date: Tue, 24 Jul 2012 18:44:10 -0500
Local: Tues, Jul 24 2012 7:44 pm
Subject: Re: [jcms] A plugin for Joomla
Hi guys,

Sorry, but this list is for Joomla Core CMS developer and discussion of
how to improve the CMS, therefore this discussion is off-topic.

You should instead ask this question on the Joomla General Developer list.
 Here's the direct link to it:
https://groups.google.com/forum/?fromgroups#!forum/joomla-dev-general

Hope this helps!

Kind regards,
Nick


 
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.
fornandakishore  
View profile  
 More options Jul 25 2012, 12:11 am
From: fornandakishore <fornandakish...@gmail.com>
Date: Wed, 25 Jul 2012 09:41:07 +0530
Local: Wed, Jul 25 2012 12:11 am
Subject: Re: [jcms] Re: A plugin for Joomla

I hope to achieve your task you need to create a component or else you need
to use an existing components and customize .

Ex:
http://extensions.joomla.org/extensions/multimedia/multimedia-players...

http://extensions.joomla.org/extensions/multimedia/multimedia-players...

---------------------

Nanda Kishore. M

Software Engineer

http://php-desk.blogspot.com

Mobile: + 91 98499 71144

On Tue, Jul 24, 2012 at 3:46 PM, Poornima Alexander <poornima.a...@gmail.com


 
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 »