search
top

DW Pie Chart (or Bar Chart)

DW Pie Chart Hello All, I have added a new product in my store. DW Pie Chart Component for Joomla 1.5 This component has the option to toggle between Bar Chart and Pie Chart with a single click. Hope this is useful to Joomla people. This component is submitted to JED (Joomla Extension Directory) visit DW Pie Chart . Kindly rate and give reviews.
read more

DW Chart Component

Hello All, I have added a new product in my store. Chart Component for Joomla 1.5 Kindly check it out. This component is submitted to JED visit DW Column Chart. Kindly rate and give reviews.
read more

DW VExport Component

Hello All, I have added new product in my store, Kindly rate and review. DW VChart Component is a Joomla 1.5 native component for exporting Virtuemart Products and its categories. It is based on Virtue Mart, you can export the Products in CSV format and in XML format, XML file can directly be imported in Google Base. Various seacrh filters are also given for exporting the Products. DW VExport Component...
read more

DW VChart Component

Hello All, I have added new product in my store, Kindly rate and review. DW VChart Component for Joomla 1.5 This component is submitted to JED visit DW VChart Component. Kindly rate and give reviews.
read more

DW Graph Component

Hello All, I have added new product in my store, Kindly rate and review. Graph Component for Joomla 1.5 This component is submitted to JED visit DW Graph Component. Kindly rate and give reviews.
read more

Get Database Prefix

I am listing an example for retrieving the Joomla database prefix. <?php $db =& JFactory::getDBO(); //Returns a reference to the global database object echo "Database prefix is : " . $db->getPrefix(); //output will be something like this Database prefix is : jos_ ?>
read more

File Management Component

File Management Download the component :com_filemgmt.zip. Commercial version (with customizable features) : Visit . This is a component for uploading and downloading the files in Joomla!®. A pre-defined directory ‘dwfuploads’ will be created in the site’s root directory, all the files uploded will be stored there. You can upload and delete the files through this component. You can...
read more

Joomla essentials

Joomla is a very great CMS. I am listing below important variable used in joomla. JPath is used to get the directory path. DS — is used as a directory separator. JPATH_ADMINISTRATOR– Sets the path to /Joomla/administrator JPATH_BASE — sets the entry to joomla /Joomla JPATH_CACHE –Sets the cache path /Joomla/cache JPATH_COMPONENT — Sets the component path /Joomla/components/com_example JPATH_COMPONENT_ADMINISTRATOR...
read more

Send email from components

While working in Joomla CMS, many times need arises to send mail from the components. Joomla has a class defined for doing this. I am listing here the method for sending mail. <?php $admin_email = ‘test@test.com’; $subject = ‘Mail Testing’; $Body = “Sending mail from component”; $sender_email = “sender@sender.com”; $sender_name = “Sender Name”; $mail = &JFactory::getMailer();...
read more

top