search
top

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