Archived

Setting parameters to default on installation

From Joomla! Documentation

(Redirected from Setting parameters to default on installation)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

When developing an component you can ensure that the `params` field of the `#__extensions` table is populated during the installation process by using the installation script file as described in Part 15 of the Developing an MVC Component tutorial.

Adding code similar to the following to the postflight() function within the script file will update `#__extensions` with the required parameters:

   function postflight($type, $parent)
   {
       // $parent is the class calling this method
       // $type is the type of change (install, update or discover_install)
   
       if ($type == 'install') {
           $db = JFactory::getDBO();
           $query = $db->getQuery(true);
           $query->update($db->quoteName('#__extensions'));
           $defaults = '{"param1":"value1","param2":"value2"}'; // JSON format for the parameters
           $query->set($db->quoteName('params') . ' = ' . $db->quote($defaults));
           $query->where($db->quoteName('name') . ' = ' . $db->quote('com_XXX')); // com_XXX is your component 
           $db->setQuery($query);
           $db->query();
       } 
   }