2016-03-06 00:50:22 +00:00
< ? php
/*--------------------------------------------------------------------------------------------------------| www . vdm . io |------/
__ __ _ _____ _ _ __ __ _ _ _
\ \ / / | | | __ \ | | | | | \ / | | | | | | |
\ \ / / _ _ ___ | | _ | | | | _____ _____ | | ___ _ __ _ __ ___ ___ _ __ | | _ | \ / | ___ | | _ | | __ ___ __ | |
\ \ / / _ ` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| ' _ \ / _ \ / _ ` |
\ / ( _ | \__ \ | _ | | __ | | __ / \ V / __ / | ( _ ) | | _ ) | | | | | | __ / | | | | _ | | | | __ / | _ | | | | ( _ ) | ( _ | |
\ / \__ , _ | ___ / \__ | | _____ / \___ | \_ / \___ | _ | \___ /| . __ /| _ | | _ | | _ | \___ | _ | | _ | \__ | | _ | | _ | \___ | \__ | _ | | _ | \___ / \__ , _ |
2019-04-04 11:53:29 +00:00
| |
| _ |
2016-03-06 00:50:22 +00:00
/-------------------------------------------------------------------------------------------------------------------------------/
2019-04-04 11:53:29 +00:00
@ version 1.0 . 10
2019-08-14 01:50:35 +00:00
@ build 14 th August , 2019
2016-03-06 00:50:22 +00:00
@ created 24 th February , 2016
@ package Support Groups
@ subpackage script . php
2019-04-04 11:53:29 +00:00
@ author Llewellyn van der Merwe < http :// www . vdm . io >
2016-03-06 00:50:22 +00:00
@ copyright Copyright ( C ) 2015. All Rights Reserved
2019-04-04 11:53:29 +00:00
@ license GNU / GPL Version 2 or later - http :// www . gnu . org / licenses / gpl - 2.0 . html
Support Groups
2016-03-06 00:50:22 +00:00
/-----------------------------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined ( '_JEXEC' ) or die ( 'Restricted access' );
JHTML :: _ ( 'behavior.modal' );
/**
* Script File of Supportgroups Component
*/
class com_supportgroupsInstallerScript
{
/**
2019-08-14 01:50:35 +00:00
* Constructor
2016-03-06 00:50:22 +00:00
*
2019-08-14 01:50:35 +00:00
* @ param JAdapterInstance $parent The object responsible for running this script
2016-03-06 00:50:22 +00:00
*/
2019-08-14 01:50:35 +00:00
public function __construct ( JAdapterInstance $parent ) {}
2016-03-06 00:50:22 +00:00
2019-08-14 01:50:35 +00:00
/**
* Called on installation
*
* @ param JAdapterInstance $parent The object responsible for running this script
*
* @ return boolean True on success
*/
public function install ( JAdapterInstance $parent ) {}
2016-03-06 00:50:22 +00:00
/**
2019-08-14 01:50:35 +00:00
* Called on uninstallation
2016-03-06 00:50:22 +00:00
*
2019-08-14 01:50:35 +00:00
* @ param JAdapterInstance $parent The object responsible for running this script
2016-03-06 00:50:22 +00:00
*/
2019-08-14 01:50:35 +00:00
public function uninstall ( JAdapterInstance $parent )
2016-03-06 00:50:22 +00:00
{
// Get Application object
$app = JFactory :: getApplication ();
// Get The Database object
$db = JFactory :: getDbo ();
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
// Where Support_group alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.support_group' ) );
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
$support_group_found = $db -> getNumRows ();
// Now check if there were any rows
if ( $support_group_found )
{
// Since there are load the needed support_group type ids
$support_group_ids = $db -> loadColumn ();
// Remove Support_group from the content type table
$support_group_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.support_group' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $support_group_condition );
$db -> setQuery ( $query );
// Execute the query to remove Support_group items
$support_group_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $support_group_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove Support_group add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.support_group) type alias was removed from the <b>#__content_type</b> table' ));
}
// Remove Support_group items from the contentitem tag map table
$support_group_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.support_group' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
$query -> where ( $support_group_condition );
$db -> setQuery ( $query );
// Execute the query to remove Support_group items
$support_group_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $support_group_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove Support_group add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.support_group) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
}
// Remove Support_group items from the ucm content table
$support_group_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.support_group' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
$query -> where ( $support_group_condition );
$db -> setQuery ( $query );
// Execute the query to remove Support_group items
$support_group_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $support_group_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove Support_group add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.support_group) type alias was removed from the <b>#__ucm_content</b> table' ));
}
// Make sure that all the Support_group items are cleared from DB
foreach ( $support_group_ids as $support_group_id )
{
// Remove Support_group items from the ucm base table
$support_group_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $support_group_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
$query -> where ( $support_group_condition );
$db -> setQuery ( $query );
// Execute the query to remove Support_group items
$db -> execute ();
// Remove Support_group items from the ucm history table
$support_group_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $support_group_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
$query -> where ( $support_group_condition );
$db -> setQuery ( $query );
// Execute the query to remove Support_group items
$db -> execute ();
}
}
2016-03-08 10:24:26 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
// Where Payment alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.payment' ) );
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
$payment_found = $db -> getNumRows ();
// Now check if there were any rows
if ( $payment_found )
{
// Since there are load the needed payment type ids
$payment_ids = $db -> loadColumn ();
// Remove Payment from the content type table
$payment_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.payment' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $payment_condition );
$db -> setQuery ( $query );
// Execute the query to remove Payment items
$payment_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $payment_done )
2016-03-08 10:24:26 +00:00
{
// If succesfully remove Payment add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.payment) type alias was removed from the <b>#__content_type</b> table' ));
}
// Remove Payment items from the contentitem tag map table
$payment_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.payment' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
$query -> where ( $payment_condition );
$db -> setQuery ( $query );
// Execute the query to remove Payment items
$payment_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $payment_done )
2016-03-08 10:24:26 +00:00
{
// If succesfully remove Payment add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.payment) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
}
// Remove Payment items from the ucm content table
$payment_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.payment' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
$query -> where ( $payment_condition );
$db -> setQuery ( $query );
// Execute the query to remove Payment items
$payment_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $payment_done )
2016-03-08 10:24:26 +00:00
{
// If succesfully remove Payment add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.payment) type alias was removed from the <b>#__ucm_content</b> table' ));
}
// Make sure that all the Payment items are cleared from DB
foreach ( $payment_ids as $payment_id )
{
// Remove Payment items from the ucm base table
$payment_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $payment_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
$query -> where ( $payment_condition );
$db -> setQuery ( $query );
// Execute the query to remove Payment items
$db -> execute ();
// Remove Payment items from the ucm history table
$payment_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $payment_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
$query -> where ( $payment_condition );
$db -> setQuery ( $query );
// Execute the query to remove Payment items
$db -> execute ();
}
}
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
2018-05-05 13:35:10 +00:00
// Where Facility alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.facility' ) );
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
$facility_found = $db -> getNumRows ();
// Now check if there were any rows
if ( $facility_found )
{
// Since there are load the needed facility type ids
$facility_ids = $db -> loadColumn ();
// Remove Facility from the content type table
$facility_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.facility' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $facility_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility items
$facility_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $facility_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Facility add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.facility) type alias was removed from the <b>#__content_type</b> table' ));
}
// Remove Facility items from the contentitem tag map table
$facility_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.facility' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
$query -> where ( $facility_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility items
$facility_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $facility_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Facility add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.facility) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
}
// Remove Facility items from the ucm content table
$facility_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.facility' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
$query -> where ( $facility_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility items
$facility_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $facility_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Facility add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.facility) type alias was removed from the <b>#__ucm_content</b> table' ));
}
// Make sure that all the Facility items are cleared from DB
foreach ( $facility_ids as $facility_id )
{
// Remove Facility items from the ucm base table
$facility_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $facility_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
$query -> where ( $facility_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility items
$db -> execute ();
// Remove Facility items from the ucm history table
$facility_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $facility_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
$query -> where ( $facility_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility items
$db -> execute ();
}
}
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
// Where Facility_type alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.facility_type' ) );
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
$facility_type_found = $db -> getNumRows ();
// Now check if there were any rows
if ( $facility_type_found )
{
// Since there are load the needed facility_type type ids
$facility_type_ids = $db -> loadColumn ();
// Remove Facility_type from the content type table
$facility_type_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.facility_type' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $facility_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility_type items
$facility_type_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $facility_type_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Facility_type add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.facility_type) type alias was removed from the <b>#__content_type</b> table' ));
}
// Remove Facility_type items from the contentitem tag map table
$facility_type_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.facility_type' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
$query -> where ( $facility_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility_type items
$facility_type_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $facility_type_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Facility_type add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.facility_type) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
}
// Remove Facility_type items from the ucm content table
$facility_type_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.facility_type' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
$query -> where ( $facility_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility_type items
$facility_type_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $facility_type_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Facility_type add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.facility_type) type alias was removed from the <b>#__ucm_content</b> table' ));
}
// Make sure that all the Facility_type items are cleared from DB
foreach ( $facility_type_ids as $facility_type_id )
{
// Remove Facility_type items from the ucm base table
$facility_type_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $facility_type_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
$query -> where ( $facility_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility_type items
$db -> execute ();
// Remove Facility_type items from the ucm history table
$facility_type_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $facility_type_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
$query -> where ( $facility_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Facility_type items
$db -> execute ();
}
}
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
// Where Additional_info alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.additional_info' ) );
2016-03-08 10:24:26 +00:00
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
2018-05-05 13:35:10 +00:00
$additional_info_found = $db -> getNumRows ();
2016-03-08 10:24:26 +00:00
// Now check if there were any rows
2018-05-05 13:35:10 +00:00
if ( $additional_info_found )
2016-03-08 10:24:26 +00:00
{
2018-05-05 13:35:10 +00:00
// Since there are load the needed additional_info type ids
$additional_info_ids = $db -> loadColumn ();
// Remove Additional_info from the content type table
$additional_info_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.additional_info' ) );
2016-03-08 10:24:26 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $additional_info_condition );
2016-03-08 10:24:26 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Additional_info items
$additional_info_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $additional_info_done )
2016-03-08 10:24:26 +00:00
{
2018-05-05 13:35:10 +00:00
// If succesfully remove Additional_info add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.additional_info) type alias was removed from the <b>#__content_type</b> table' ));
2016-03-08 10:24:26 +00:00
}
2018-05-05 13:35:10 +00:00
// Remove Additional_info items from the contentitem tag map table
$additional_info_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.additional_info' ) );
2016-03-08 10:24:26 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $additional_info_condition );
2016-03-08 10:24:26 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Additional_info items
$additional_info_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $additional_info_done )
2016-03-08 10:24:26 +00:00
{
2018-05-05 13:35:10 +00:00
// If succesfully remove Additional_info add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.additional_info) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
2016-03-08 10:24:26 +00:00
}
2018-05-05 13:35:10 +00:00
// Remove Additional_info items from the ucm content table
$additional_info_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.additional_info' ) );
2016-03-08 10:24:26 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $additional_info_condition );
2016-03-08 10:24:26 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Additional_info items
$additional_info_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $additional_info_done )
2016-03-08 10:24:26 +00:00
{
2018-05-05 13:35:10 +00:00
// If succesfully remove Additional_info add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.additional_info) type alias was removed from the <b>#__ucm_content</b> table' ));
2016-03-08 10:24:26 +00:00
}
2018-05-05 13:35:10 +00:00
// Make sure that all the Additional_info items are cleared from DB
foreach ( $additional_info_ids as $additional_info_id )
2016-03-08 10:24:26 +00:00
{
2018-05-05 13:35:10 +00:00
// Remove Additional_info items from the ucm base table
$additional_info_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $additional_info_id );
2016-03-08 10:24:26 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $additional_info_condition );
2016-03-08 10:24:26 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Additional_info items
2016-03-08 10:24:26 +00:00
$db -> execute ();
2018-05-05 13:35:10 +00:00
// Remove Additional_info items from the ucm history table
$additional_info_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $additional_info_id );
2016-03-08 10:24:26 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $additional_info_condition );
2016-03-08 10:24:26 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Additional_info items
2016-03-08 10:24:26 +00:00
$db -> execute ();
}
}
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
2018-05-05 13:35:10 +00:00
// Where Info_type alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.info_type' ) );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
2018-05-05 13:35:10 +00:00
$info_type_found = $db -> getNumRows ();
2016-03-06 00:50:22 +00:00
// Now check if there were any rows
2018-05-05 13:35:10 +00:00
if ( $info_type_found )
2016-03-06 00:50:22 +00:00
{
2018-05-05 13:35:10 +00:00
// Since there are load the needed info_type type ids
$info_type_ids = $db -> loadColumn ();
// Remove Info_type from the content type table
$info_type_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.info_type' ) );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $info_type_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Info_type items
$info_type_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $info_type_done )
2016-03-06 00:50:22 +00:00
{
2018-05-05 13:35:10 +00:00
// If succesfully remove Info_type add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.info_type) type alias was removed from the <b>#__content_type</b> table' ));
2016-03-06 00:50:22 +00:00
}
2018-05-05 13:35:10 +00:00
// Remove Info_type items from the contentitem tag map table
$info_type_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.info_type' ) );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $info_type_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Info_type items
$info_type_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $info_type_done )
2016-03-06 00:50:22 +00:00
{
2018-05-05 13:35:10 +00:00
// If succesfully remove Info_type add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.info_type) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
2016-03-06 00:50:22 +00:00
}
2018-05-05 13:35:10 +00:00
// Remove Info_type items from the ucm content table
$info_type_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.info_type' ) );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $info_type_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Info_type items
$info_type_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $info_type_done )
2016-03-06 00:50:22 +00:00
{
2018-05-05 13:35:10 +00:00
// If succesfully remove Info_type add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.info_type) type alias was removed from the <b>#__ucm_content</b> table' ));
2016-03-06 00:50:22 +00:00
}
2018-05-05 13:35:10 +00:00
// Make sure that all the Info_type items are cleared from DB
foreach ( $info_type_ids as $info_type_id )
2016-03-06 00:50:22 +00:00
{
2018-05-05 13:35:10 +00:00
// Remove Info_type items from the ucm base table
$info_type_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $info_type_id );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $info_type_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Info_type items
2016-03-06 00:50:22 +00:00
$db -> execute ();
2018-05-05 13:35:10 +00:00
// Remove Info_type items from the ucm history table
$info_type_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $info_type_id );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $info_type_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2018-05-05 13:35:10 +00:00
// Execute the query to remove Info_type items
$db -> execute ();
}
}
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
// Where Area alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.area' ) );
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
$area_found = $db -> getNumRows ();
// Now check if there were any rows
if ( $area_found )
{
// Since there are load the needed area type ids
$area_ids = $db -> loadColumn ();
// Remove Area from the content type table
$area_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.area' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $area_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area items
$area_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $area_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Area add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.area) type alias was removed from the <b>#__content_type</b> table' ));
}
// Remove Area items from the contentitem tag map table
$area_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.area' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
$query -> where ( $area_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area items
$area_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $area_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Area add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.area) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
}
// Remove Area items from the ucm content table
$area_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.area' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
$query -> where ( $area_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area items
$area_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $area_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Area add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.area) type alias was removed from the <b>#__ucm_content</b> table' ));
}
// Make sure that all the Area items are cleared from DB
foreach ( $area_ids as $area_id )
{
// Remove Area items from the ucm base table
$area_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $area_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
$query -> where ( $area_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area items
$db -> execute ();
// Remove Area items from the ucm history table
$area_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $area_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
$query -> where ( $area_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area items
$db -> execute ();
}
}
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
// Where Area_type alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.area_type' ) );
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
$area_type_found = $db -> getNumRows ();
// Now check if there were any rows
if ( $area_type_found )
{
// Since there are load the needed area_type type ids
$area_type_ids = $db -> loadColumn ();
// Remove Area_type from the content type table
$area_type_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.area_type' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $area_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area_type items
$area_type_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $area_type_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Area_type add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.area_type) type alias was removed from the <b>#__content_type</b> table' ));
}
// Remove Area_type items from the contentitem tag map table
$area_type_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.area_type' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
$query -> where ( $area_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area_type items
$area_type_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $area_type_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Area_type add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.area_type) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
}
// Remove Area_type items from the ucm content table
$area_type_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.area_type' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
$query -> where ( $area_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area_type items
$area_type_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $area_type_done )
2018-05-05 13:35:10 +00:00
{
// If succesfully remove Area_type add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.area_type) type alias was removed from the <b>#__ucm_content</b> table' ));
}
// Make sure that all the Area_type items are cleared from DB
foreach ( $area_type_ids as $area_type_id )
{
// Remove Area_type items from the ucm base table
$area_type_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $area_type_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
$query -> where ( $area_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area_type items
$db -> execute ();
// Remove Area_type items from the ucm history table
$area_type_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $area_type_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
$query -> where ( $area_type_condition );
$db -> setQuery ( $query );
// Execute the query to remove Area_type items
2016-03-06 00:50:22 +00:00
$db -> execute ();
}
}
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
// Where Region alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.region' ) );
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
$region_found = $db -> getNumRows ();
// Now check if there were any rows
if ( $region_found )
{
// Since there are load the needed region type ids
$region_ids = $db -> loadColumn ();
// Remove Region from the content type table
$region_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.region' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $region_condition );
$db -> setQuery ( $query );
// Execute the query to remove Region items
$region_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $region_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove Region add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.region) type alias was removed from the <b>#__content_type</b> table' ));
}
// Remove Region items from the contentitem tag map table
$region_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.region' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
$query -> where ( $region_condition );
$db -> setQuery ( $query );
// Execute the query to remove Region items
$region_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $region_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove Region add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.region) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
}
// Remove Region items from the ucm content table
$region_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.region' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
$query -> where ( $region_condition );
$db -> setQuery ( $query );
// Execute the query to remove Region items
$region_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $region_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove Region add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.region) type alias was removed from the <b>#__ucm_content</b> table' ));
}
// Make sure that all the Region items are cleared from DB
foreach ( $region_ids as $region_id )
{
// Remove Region items from the ucm base table
$region_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $region_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
$query -> where ( $region_condition );
$db -> setQuery ( $query );
// Execute the query to remove Region items
$db -> execute ();
// Remove Region items from the ucm history table
$region_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $region_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
$query -> where ( $region_condition );
$db -> setQuery ( $query );
// Execute the query to remove Region items
$db -> execute ();
}
}
2016-03-08 10:24:26 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
// Where Country alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.country' ) );
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
$country_found = $db -> getNumRows ();
// Now check if there were any rows
if ( $country_found )
{
// Since there are load the needed country type ids
$country_ids = $db -> loadColumn ();
// Remove Country from the content type table
$country_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.country' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $country_condition );
$db -> setQuery ( $query );
// Execute the query to remove Country items
$country_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $country_done )
2016-03-08 10:24:26 +00:00
{
// If succesfully remove Country add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.country) type alias was removed from the <b>#__content_type</b> table' ));
}
// Remove Country items from the contentitem tag map table
$country_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.country' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
$query -> where ( $country_condition );
$db -> setQuery ( $query );
// Execute the query to remove Country items
$country_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $country_done )
2016-03-08 10:24:26 +00:00
{
// If succesfully remove Country add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.country) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
}
// Remove Country items from the ucm content table
$country_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.country' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
$query -> where ( $country_condition );
$db -> setQuery ( $query );
// Execute the query to remove Country items
$country_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $country_done )
2016-03-08 10:24:26 +00:00
{
// If succesfully remove Country add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.country) type alias was removed from the <b>#__ucm_content</b> table' ));
}
// Make sure that all the Country items are cleared from DB
foreach ( $country_ids as $country_id )
{
// Remove Country items from the ucm base table
$country_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $country_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
$query -> where ( $country_condition );
$db -> setQuery ( $query );
// Execute the query to remove Country items
$db -> execute ();
// Remove Country items from the ucm history table
$country_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $country_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
$query -> where ( $country_condition );
$db -> setQuery ( $query );
// Execute the query to remove Country items
$db -> execute ();
}
}
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
// Where Currency alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.currency' ) );
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
$currency_found = $db -> getNumRows ();
// Now check if there were any rows
if ( $currency_found )
{
// Since there are load the needed currency type ids
$currency_ids = $db -> loadColumn ();
// Remove Currency from the content type table
$currency_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.currency' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $currency_condition );
$db -> setQuery ( $query );
// Execute the query to remove Currency items
$currency_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $currency_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove Currency add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.currency) type alias was removed from the <b>#__content_type</b> table' ));
}
// Remove Currency items from the contentitem tag map table
$currency_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.currency' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
$query -> where ( $currency_condition );
$db -> setQuery ( $query );
// Execute the query to remove Currency items
$currency_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $currency_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove Currency add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.currency) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
}
// Remove Currency items from the ucm content table
$currency_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.currency' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
$query -> where ( $currency_condition );
$db -> setQuery ( $query );
// Execute the query to remove Currency items
$currency_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $currency_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove Currency add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.currency) type alias was removed from the <b>#__ucm_content</b> table' ));
}
// Make sure that all the Currency items are cleared from DB
foreach ( $currency_ids as $currency_id )
{
// Remove Currency items from the ucm base table
$currency_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $currency_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
$query -> where ( $currency_condition );
$db -> setQuery ( $query );
// Execute the query to remove Currency items
$db -> execute ();
// Remove Currency items from the ucm history table
$currency_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $currency_id );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
$query -> where ( $currency_condition );
$db -> setQuery ( $query );
// Execute the query to remove Currency items
$db -> execute ();
}
}
// Create a new query object.
$query = $db -> getQuery ( true );
// Select id from content type table
$query -> select ( $db -> quoteName ( 'type_id' ));
$query -> from ( $db -> quoteName ( '#__content_types' ));
2016-03-08 10:24:26 +00:00
// Where Help_document alias is found
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.help_document' ) );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
// Execute query to see if alias is found
$db -> execute ();
2016-03-08 10:24:26 +00:00
$help_document_found = $db -> getNumRows ();
2016-03-06 00:50:22 +00:00
// Now check if there were any rows
2016-03-08 10:24:26 +00:00
if ( $help_document_found )
2016-03-06 00:50:22 +00:00
{
2016-03-08 10:24:26 +00:00
// Since there are load the needed help_document type ids
$help_document_ids = $db -> loadColumn ();
// Remove Help_document from the content type table
$help_document_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.help_document' ) );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__content_types' ));
2016-03-08 10:24:26 +00:00
$query -> where ( $help_document_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2016-03-08 10:24:26 +00:00
// Execute the query to remove Help_document items
$help_document_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $help_document_done )
2016-03-06 00:50:22 +00:00
{
2016-03-08 10:24:26 +00:00
// If succesfully remove Help_document add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.help_document) type alias was removed from the <b>#__content_type</b> table' ));
2016-03-06 00:50:22 +00:00
}
2016-03-08 10:24:26 +00:00
// Remove Help_document items from the contentitem tag map table
$help_document_condition = array ( $db -> quoteName ( 'type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.help_document' ) );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__contentitem_tag_map' ));
2016-03-08 10:24:26 +00:00
$query -> where ( $help_document_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2016-03-08 10:24:26 +00:00
// Execute the query to remove Help_document items
$help_document_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $help_document_done )
2016-03-06 00:50:22 +00:00
{
2016-03-08 10:24:26 +00:00
// If succesfully remove Help_document add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.help_document) type alias was removed from the <b>#__contentitem_tag_map</b> table' ));
2016-03-06 00:50:22 +00:00
}
2016-03-08 10:24:26 +00:00
// Remove Help_document items from the ucm content table
$help_document_condition = array ( $db -> quoteName ( 'core_type_alias' ) . ' = ' . $db -> quote ( 'com_supportgroups.help_document' ) );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_content' ));
2016-03-08 10:24:26 +00:00
$query -> where ( $help_document_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2016-03-08 10:24:26 +00:00
// Execute the query to remove Help_document items
$help_document_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $help_document_done )
2016-03-06 00:50:22 +00:00
{
2016-03-08 10:24:26 +00:00
// If succesfully remove Help_document add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'The (com_supportgroups.help_document) type alias was removed from the <b>#__ucm_content</b> table' ));
2016-03-06 00:50:22 +00:00
}
2016-03-08 10:24:26 +00:00
// Make sure that all the Help_document items are cleared from DB
foreach ( $help_document_ids as $help_document_id )
2016-03-06 00:50:22 +00:00
{
2016-03-08 10:24:26 +00:00
// Remove Help_document items from the ucm base table
$help_document_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $help_document_id );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_base' ));
2016-03-08 10:24:26 +00:00
$query -> where ( $help_document_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2016-03-08 10:24:26 +00:00
// Execute the query to remove Help_document items
2016-03-06 00:50:22 +00:00
$db -> execute ();
2016-03-08 10:24:26 +00:00
// Remove Help_document items from the ucm history table
$help_document_condition = array ( $db -> quoteName ( 'ucm_type_id' ) . ' = ' . $help_document_id );
2016-03-06 00:50:22 +00:00
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__ucm_history' ));
2016-03-08 10:24:26 +00:00
$query -> where ( $help_document_condition );
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
2016-03-08 10:24:26 +00:00
// Execute the query to remove Help_document items
2016-03-06 00:50:22 +00:00
$db -> execute ();
}
}
// If All related items was removed queued success message.
$app -> enqueueMessage ( JText :: _ ( 'All related items was removed from the <b>#__ucm_base</b> table' ));
$app -> enqueueMessage ( JText :: _ ( 'All related items was removed from the <b>#__ucm_history</b> table' ));
// Remove supportgroups assets from the assets table
$supportgroups_condition = array ( $db -> quoteName ( 'name' ) . ' LIKE ' . $db -> quote ( 'com_supportgroups%' ) );
// Create a new query object.
$query = $db -> getQuery ( true );
$query -> delete ( $db -> quoteName ( '#__assets' ));
$query -> where ( $supportgroups_condition );
$db -> setQuery ( $query );
2016-03-08 10:24:26 +00:00
$help_document_done = $db -> execute ();
2019-04-04 11:53:29 +00:00
if ( $help_document_done )
2016-03-06 00:50:22 +00:00
{
// If succesfully remove supportgroups add queued success message.
$app -> enqueueMessage ( JText :: _ ( 'All related items was removed from the <b>#__assets</b> table' ));
}
// little notice as after service, in case of bad experience with component.
echo ' < h2 > Did something go wrong ? Are you disappointed ? </ h2 >
2018-05-05 13:35:10 +00:00
< p > Please let me know at < a href = " mailto:joomla@vdm.io " > joomla @ vdm . io </ a >.
2016-03-06 00:50:22 +00:00
< br /> We at Vast Development Method are committed to building extensions that performs proficiently ! You can help us , really !
< br /> Send me your thoughts on improvements that is needed , trust me , I will be very grateful !
< br /> Visit us at < a href = " http://www.vdm.io " target = " _blank " > http :// www . vdm . io </ a > today !</ p > ' ;
}
/**
2019-08-14 01:50:35 +00:00
* Called on update
2016-03-06 00:50:22 +00:00
*
2019-08-14 01:50:35 +00:00
* @ param JAdapterInstance $parent The object responsible for running this script
*
* @ return boolean True on success
2016-03-06 00:50:22 +00:00
*/
2019-08-14 01:50:35 +00:00
public function update ( JAdapterInstance $parent ){}
2016-03-06 00:50:22 +00:00
/**
2019-08-14 01:50:35 +00:00
* Called before any type of action
2016-03-06 00:50:22 +00:00
*
2019-08-14 01:50:35 +00:00
* @ param string $type Which action is happening ( install | uninstall | discover_install | update )
* @ param JAdapterInstance $parent The object responsible for running this script
*
* @ return boolean True on success
2016-03-06 00:50:22 +00:00
*/
2019-08-14 01:50:35 +00:00
public function preflight ( $type , JAdapterInstance $parent )
2016-03-06 00:50:22 +00:00
{
2018-05-05 13:35:10 +00:00
// get application
$app = JFactory :: getApplication ();
2019-08-14 01:50:35 +00:00
// is redundant or so it seems ...hmmm let me know if it works again
if ( $type === 'uninstall' )
2018-05-05 13:35:10 +00:00
{
2016-03-06 00:50:22 +00:00
return true ;
}
2018-05-05 13:35:10 +00:00
// the default for both install and update
2016-03-06 00:50:22 +00:00
$jversion = new JVersion ();
2019-08-14 01:50:35 +00:00
if ( ! $jversion -> isCompatible ( '3.8.0' ))
2016-03-06 00:50:22 +00:00
{
2019-08-14 01:50:35 +00:00
$app -> enqueueMessage ( 'Please upgrade to at least Joomla! 3.8.0 before continuing!' , 'error' );
2016-03-06 00:50:22 +00:00
return false ;
}
2018-05-05 13:35:10 +00:00
// do any updates needed
2019-08-14 01:50:35 +00:00
if ( $type === 'update' )
2018-05-05 13:35:10 +00:00
{
}
// do any install needed
2019-08-14 01:50:35 +00:00
if ( $type === 'install' )
2018-05-05 13:35:10 +00:00
{
}
2019-08-14 01:50:35 +00:00
return true ;
2016-03-06 00:50:22 +00:00
}
/**
2019-08-14 01:50:35 +00:00
* Called after any type of action
*
* @ param string $type Which action is happening ( install | uninstall | discover_install | update )
* @ param JAdapterInstance $parent The object responsible for running this script
2016-03-06 00:50:22 +00:00
*
2019-08-14 01:50:35 +00:00
* @ return boolean True on success
2016-03-06 00:50:22 +00:00
*/
2019-08-14 01:50:35 +00:00
public function postflight ( $type , JAdapterInstance $parent )
2016-03-06 00:50:22 +00:00
{
2018-05-05 13:35:10 +00:00
// get application
$app = JFactory :: getApplication ();
2016-03-06 00:50:22 +00:00
// set the default component settings
2019-08-14 01:50:35 +00:00
if ( $type === 'install' )
2016-03-06 00:50:22 +00:00
{
// Get The Database object
$db = JFactory :: getDbo ();
// Create the support_group content type object.
$support_group = new stdClass ();
$support_group -> type_title = 'Supportgroups Support_group' ;
$support_group -> type_alias = 'com_supportgroups.support_group' ;
$support_group -> table = '{"special": {"dbtable": "#__supportgroups_support_group","key": "id","type": "Support_group","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
2018-05-05 13:35:10 +00:00
$support_group -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "details","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","phone":"phone","area":"area","facility":"facility","male":"male","female":"female","marker":"marker","alias":"alias","details":"details","female_art":"female_art","female_children":"female_children","male_art":"male_art","male_children":"male_children","info":"info"}}' ;
2016-03-06 00:50:22 +00:00
$support_group -> router = 'SupportgroupsHelperRoute::getSupport_groupRoute' ;
2018-05-05 13:35:10 +00:00
$support_group -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/support_group.xml","hideFields": ["asset_id","checked_out","checked_out_time","version","marker"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","area","facility","male","female","female_art","female_children","male_art","male_children"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "area","targetTable": "#__supportgroups_area","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "facility","targetTable": "#__supportgroups_facility","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "info","targetTable": "#__supportgroups_additional_info","targetColumn": "id","displayColumn": "name"}]}' ;
2016-03-06 00:50:22 +00:00
// Set the object into the content types table.
$support_group_Inserted = $db -> insertObject ( '#__content_types' , $support_group );
2016-03-08 10:24:26 +00:00
// Create the payment content type object.
$payment = new stdClass ();
$payment -> type_title = 'Supportgroups Payment' ;
$payment -> type_alias = 'com_supportgroups.payment' ;
$payment -> table = '{"special": {"dbtable": "#__supportgroups_payment","key": "id","type": "Payment","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$payment -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "support_group","core_state": "published","core_alias": "null","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"support_group":"support_group","year":"year","amount":"amount"}}' ;
$payment -> router = 'SupportgroupsHelperRoute::getPaymentRoute' ;
$payment -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/payment.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","support_group","year"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "support_group","targetTable": "#__supportgroups_support_group","targetColumn": "id","displayColumn": "name"}]}' ;
// Set the object into the content types table.
$payment_Inserted = $db -> insertObject ( '#__content_types' , $payment );
2018-05-05 13:35:10 +00:00
// Create the facility content type object.
$facility = new stdClass ();
$facility -> type_title = 'Supportgroups Facility' ;
$facility -> type_alias = 'com_supportgroups.facility' ;
$facility -> table = '{"special": {"dbtable": "#__supportgroups_facility","key": "id","type": "Facility","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$facility -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "details","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","facility_type":"facility_type","phone":"phone","details":"details","marker":"marker","alias":"alias"}}' ;
$facility -> router = 'SupportgroupsHelperRoute::getFacilityRoute' ;
$facility -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/facility.xml","hideFields": ["asset_id","checked_out","checked_out_time","version","marker"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","facility_type"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "facility_type","targetTable": "#__supportgroups_facility_type","targetColumn": "id","displayColumn": "name"}]}' ;
2016-03-08 10:24:26 +00:00
// Set the object into the content types table.
2018-05-05 13:35:10 +00:00
$facility_Inserted = $db -> insertObject ( '#__content_types' , $facility );
2016-03-08 10:24:26 +00:00
2018-05-05 13:35:10 +00:00
// Create the facility_type content type object.
$facility_type = new stdClass ();
$facility_type -> type_title = 'Supportgroups Facility_type' ;
$facility_type -> type_alias = 'com_supportgroups.facility_type' ;
$facility_type -> table = '{"special": {"dbtable": "#__supportgroups_facility_type","key": "id","type": "Facility_type","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$facility_type -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","alias":"alias"}}' ;
$facility_type -> router = 'SupportgroupsHelperRoute::getFacility_typeRoute' ;
$facility_type -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/facility_type.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"}]}' ;
2016-03-06 00:50:22 +00:00
// Set the object into the content types table.
2018-05-05 13:35:10 +00:00
$facility_type_Inserted = $db -> insertObject ( '#__content_types' , $facility_type );
// Create the additional_info content type object.
$additional_info = new stdClass ();
$additional_info -> type_title = 'Supportgroups Additional_info' ;
$additional_info -> type_alias = 'com_supportgroups.additional_info' ;
$additional_info -> table = '{"special": {"dbtable": "#__supportgroups_additional_info","key": "id","type": "Additional_info","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$additional_info -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "null","core_created_time": "created","core_modified_time": "modified","core_body": "details","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","info_type":"info_type","details":"details","alias":"alias"}}' ;
$additional_info -> router = 'SupportgroupsHelperRoute::getAdditional_infoRoute' ;
$additional_info -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/additional_info.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","info_type"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "info_type","targetTable": "#__supportgroups_info_type","targetColumn": "id","displayColumn": "name"}]}' ;
// Set the object into the content types table.
$additional_info_Inserted = $db -> insertObject ( '#__content_types' , $additional_info );
// Create the info_type content type object.
$info_type = new stdClass ();
$info_type -> type_title = 'Supportgroups Info_type' ;
$info_type -> type_alias = 'com_supportgroups.info_type' ;
$info_type -> table = '{"special": {"dbtable": "#__supportgroups_info_type","key": "id","type": "Info_type","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$info_type -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","alias":"alias"}}' ;
$info_type -> router = 'SupportgroupsHelperRoute::getInfo_typeRoute' ;
$info_type -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/info_type.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"}]}' ;
// Set the object into the content types table.
$info_type_Inserted = $db -> insertObject ( '#__content_types' , $info_type );
// Create the area content type object.
$area = new stdClass ();
$area -> type_title = 'Supportgroups Area' ;
$area -> type_alias = 'com_supportgroups.area' ;
$area -> table = '{"special": {"dbtable": "#__supportgroups_area","key": "id","type": "Area","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$area -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "details","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","area_type":"area_type","region":"region","details":"details","color":"color","alias":"alias"}}' ;
$area -> router = 'SupportgroupsHelperRoute::getAreaRoute' ;
$area -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/area.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","area_type","region"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "area_type","targetTable": "#__supportgroups_area_type","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "region","targetTable": "#__supportgroups_region","targetColumn": "id","displayColumn": "name"}]}' ;
// Set the object into the content types table.
$area_Inserted = $db -> insertObject ( '#__content_types' , $area );
// Create the area_type content type object.
$area_type = new stdClass ();
$area_type -> type_title = 'Supportgroups Area_type' ;
$area_type -> type_alias = 'com_supportgroups.area_type' ;
$area_type -> table = '{"special": {"dbtable": "#__supportgroups_area_type","key": "id","type": "Area_type","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$area_type -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","alias":"alias"}}' ;
$area_type -> router = 'SupportgroupsHelperRoute::getArea_typeRoute' ;
$area_type -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/area_type.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"}]}' ;
// Set the object into the content types table.
$area_type_Inserted = $db -> insertObject ( '#__content_types' , $area_type );
2016-03-06 00:50:22 +00:00
// Create the region content type object.
$region = new stdClass ();
$region -> type_title = 'Supportgroups Region' ;
$region -> type_alias = 'com_supportgroups.region' ;
$region -> table = '{"special": {"dbtable": "#__supportgroups_region","key": "id","type": "Region","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
2018-05-05 13:35:10 +00:00
$region -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","country":"country","alias":"alias"}}' ;
2016-03-06 00:50:22 +00:00
$region -> router = 'SupportgroupsHelperRoute::getRegionRoute' ;
$region -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/region.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","country"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "country","targetTable": "#__supportgroups_country","targetColumn": "id","displayColumn": "name"}]}' ;
// Set the object into the content types table.
$region_Inserted = $db -> insertObject ( '#__content_types' , $region );
2016-03-08 10:24:26 +00:00
// Create the country content type object.
$country = new stdClass ();
$country -> type_title = 'Supportgroups Country' ;
$country -> type_alias = 'com_supportgroups.country' ;
$country -> table = '{"special": {"dbtable": "#__supportgroups_country","key": "id","type": "Country","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$country -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","currency":"currency","worldzone":"worldzone","codethree":"codethree","codetwo":"codetwo","alias":"alias"}}' ;
$country -> router = 'SupportgroupsHelperRoute::getCountryRoute' ;
$country -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/country.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "currency","targetTable": "#__supportgroups_currency","targetColumn": "codethree","displayColumn": "name"}]}' ;
// Set the object into the content types table.
$country_Inserted = $db -> insertObject ( '#__content_types' , $country );
2016-03-06 00:50:22 +00:00
// Create the currency content type object.
$currency = new stdClass ();
$currency -> type_title = 'Supportgroups Currency' ;
$currency -> type_alias = 'com_supportgroups.currency' ;
$currency -> table = '{"special": {"dbtable": "#__supportgroups_currency","key": "id","type": "Currency","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
2018-05-05 13:35:10 +00:00
$currency -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","codethree":"codethree","numericcode":"numericcode","symbol":"symbol","alias":"alias","negativestyle":"negativestyle","positivestyle":"positivestyle","decimalsymbol":"decimalsymbol","decimalplace":"decimalplace","thousands":"thousands"}}' ;
2016-03-06 00:50:22 +00:00
$currency -> router = 'SupportgroupsHelperRoute::getCurrencyRoute' ;
$currency -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/currency.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","numericcode","decimalplace"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"}]}' ;
// Set the object into the content types table.
$currency_Inserted = $db -> insertObject ( '#__content_types' , $currency );
2016-03-08 10:24:26 +00:00
// Create the help_document content type object.
$help_document = new stdClass ();
$help_document -> type_title = 'Supportgroups Help_document' ;
$help_document -> type_alias = 'com_supportgroups.help_document' ;
$help_document -> table = '{"special": {"dbtable": "#__supportgroups_help_document","key": "id","type": "Help_document","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
2018-05-05 13:35:10 +00:00
$help_document -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "title","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "content","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"title":"title","type":"type","groups":"groups","location":"location","admin_view":"admin_view","site_view":"site_view","not_required":"not_required","content":"content","article":"article","url":"url","target":"target","alias":"alias"}}' ;
2016-03-08 10:24:26 +00:00
$help_document -> router = 'SupportgroupsHelperRoute::getHelp_documentRoute' ;
2018-05-05 13:35:10 +00:00
$help_document -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/help_document.xml","hideFields": ["asset_id","checked_out","checked_out_time","version","not_required"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","type","location","not_required","article","target"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "article","targetTable": "#__content","targetColumn": "id","displayColumn": "title"}]}' ;
2016-03-06 00:50:22 +00:00
// Set the object into the content types table.
2016-03-08 10:24:26 +00:00
$help_document_Inserted = $db -> insertObject ( '#__content_types' , $help_document );
2016-03-06 00:50:22 +00:00
// Install the global extenstion params.
$query = $db -> getQuery ( true );
// Field to update.
$fields = array (
2018-05-05 13:35:10 +00:00
$db -> quoteName ( 'params' ) . ' = ' . $db -> quote ( '{"autorName":"Llewellyn van der Merwe","autorEmail":"joomla@vdm.io","maptype":"ROADMAP","maxzoom":"6","gotozoom":"8","cluster":"0","cluster_at":"300","clustergridsize":"100","clustermaxzoom":"7","set_browser_storage":"1","storage_time_to_live":"global","check_in":"-1 day","save_history":"1","history_limit":"10","uikit_load":"1","uikit_min":"","uikit_style":""}' ),
2016-03-06 00:50:22 +00:00
);
// Condition.
$conditions = array (
$db -> quoteName ( 'element' ) . ' = ' . $db -> quote ( 'com_supportgroups' )
);
$query -> update ( $db -> quoteName ( '#__extensions' )) -> set ( $fields ) -> where ( $conditions );
$db -> setQuery ( $query );
$allDone = $db -> execute ();
2018-05-05 13:35:10 +00:00
2016-03-06 00:50:22 +00:00
echo ' < a target = " _blank " href = " http://www.vdm.io " title = " Support Groups " >
2018-05-05 13:35:10 +00:00
< img src = " components/com_supportgroups/assets/images/vdm-component.jpg " />
2016-03-06 00:50:22 +00:00
</ a > ' ;
}
// do any updates needed
2019-08-14 01:50:35 +00:00
if ( $type === 'update' )
2016-03-06 00:50:22 +00:00
{
// Get The Database object
$db = JFactory :: getDbo ();
// Create the support_group content type object.
$support_group = new stdClass ();
$support_group -> type_title = 'Supportgroups Support_group' ;
$support_group -> type_alias = 'com_supportgroups.support_group' ;
$support_group -> table = '{"special": {"dbtable": "#__supportgroups_support_group","key": "id","type": "Support_group","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
2018-05-05 13:35:10 +00:00
$support_group -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "details","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","phone":"phone","area":"area","facility":"facility","male":"male","female":"female","marker":"marker","alias":"alias","details":"details","female_art":"female_art","female_children":"female_children","male_art":"male_art","male_children":"male_children","info":"info"}}' ;
2016-03-06 00:50:22 +00:00
$support_group -> router = 'SupportgroupsHelperRoute::getSupport_groupRoute' ;
2018-05-05 13:35:10 +00:00
$support_group -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/support_group.xml","hideFields": ["asset_id","checked_out","checked_out_time","version","marker"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","area","facility","male","female","female_art","female_children","male_art","male_children"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "area","targetTable": "#__supportgroups_area","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "facility","targetTable": "#__supportgroups_facility","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "info","targetTable": "#__supportgroups_additional_info","targetColumn": "id","displayColumn": "name"}]}' ;
2016-03-06 00:50:22 +00:00
// Check if support_group type is already in content_type DB.
$support_group_id = null ;
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $support_group -> type_alias ));
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
$support_group -> type_id = $db -> loadResult ();
$support_group_Updated = $db -> updateObject ( '#__content_types' , $support_group , 'type_id' );
}
else
{
$support_group_Inserted = $db -> insertObject ( '#__content_types' , $support_group );
}
2016-03-08 10:24:26 +00:00
// Create the payment content type object.
$payment = new stdClass ();
$payment -> type_title = 'Supportgroups Payment' ;
$payment -> type_alias = 'com_supportgroups.payment' ;
$payment -> table = '{"special": {"dbtable": "#__supportgroups_payment","key": "id","type": "Payment","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$payment -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "support_group","core_state": "published","core_alias": "null","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"support_group":"support_group","year":"year","amount":"amount"}}' ;
$payment -> router = 'SupportgroupsHelperRoute::getPaymentRoute' ;
$payment -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/payment.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","support_group","year"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "support_group","targetTable": "#__supportgroups_support_group","targetColumn": "id","displayColumn": "name"}]}' ;
// Check if payment type is already in content_type DB.
$payment_id = null ;
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $payment -> type_alias ));
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
$payment -> type_id = $db -> loadResult ();
$payment_Updated = $db -> updateObject ( '#__content_types' , $payment , 'type_id' );
}
else
{
$payment_Inserted = $db -> insertObject ( '#__content_types' , $payment );
}
2018-05-05 13:35:10 +00:00
// Create the facility content type object.
$facility = new stdClass ();
$facility -> type_title = 'Supportgroups Facility' ;
$facility -> type_alias = 'com_supportgroups.facility' ;
$facility -> table = '{"special": {"dbtable": "#__supportgroups_facility","key": "id","type": "Facility","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$facility -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "details","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","facility_type":"facility_type","phone":"phone","details":"details","marker":"marker","alias":"alias"}}' ;
$facility -> router = 'SupportgroupsHelperRoute::getFacilityRoute' ;
$facility -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/facility.xml","hideFields": ["asset_id","checked_out","checked_out_time","version","marker"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","facility_type"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "facility_type","targetTable": "#__supportgroups_facility_type","targetColumn": "id","displayColumn": "name"}]}' ;
// Check if facility type is already in content_type DB.
$facility_id = null ;
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $facility -> type_alias ));
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
$facility -> type_id = $db -> loadResult ();
$facility_Updated = $db -> updateObject ( '#__content_types' , $facility , 'type_id' );
}
else
{
$facility_Inserted = $db -> insertObject ( '#__content_types' , $facility );
}
// Create the facility_type content type object.
$facility_type = new stdClass ();
$facility_type -> type_title = 'Supportgroups Facility_type' ;
$facility_type -> type_alias = 'com_supportgroups.facility_type' ;
$facility_type -> table = '{"special": {"dbtable": "#__supportgroups_facility_type","key": "id","type": "Facility_type","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$facility_type -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","alias":"alias"}}' ;
$facility_type -> router = 'SupportgroupsHelperRoute::getFacility_typeRoute' ;
$facility_type -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/facility_type.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"}]}' ;
// Check if facility_type type is already in content_type DB.
$facility_type_id = null ;
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $facility_type -> type_alias ));
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
$facility_type -> type_id = $db -> loadResult ();
$facility_type_Updated = $db -> updateObject ( '#__content_types' , $facility_type , 'type_id' );
}
else
{
$facility_type_Inserted = $db -> insertObject ( '#__content_types' , $facility_type );
}
// Create the additional_info content type object.
$additional_info = new stdClass ();
$additional_info -> type_title = 'Supportgroups Additional_info' ;
$additional_info -> type_alias = 'com_supportgroups.additional_info' ;
$additional_info -> table = '{"special": {"dbtable": "#__supportgroups_additional_info","key": "id","type": "Additional_info","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$additional_info -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "null","core_created_time": "created","core_modified_time": "modified","core_body": "details","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","info_type":"info_type","details":"details","alias":"alias"}}' ;
$additional_info -> router = 'SupportgroupsHelperRoute::getAdditional_infoRoute' ;
$additional_info -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/additional_info.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","info_type"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "info_type","targetTable": "#__supportgroups_info_type","targetColumn": "id","displayColumn": "name"}]}' ;
// Check if additional_info type is already in content_type DB.
$additional_info_id = null ;
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $additional_info -> type_alias ));
$db -> setQuery ( $query );
$db -> execute ();
2016-03-08 10:24:26 +00:00
2018-05-05 13:35:10 +00:00
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
$additional_info -> type_id = $db -> loadResult ();
$additional_info_Updated = $db -> updateObject ( '#__content_types' , $additional_info , 'type_id' );
}
else
{
$additional_info_Inserted = $db -> insertObject ( '#__content_types' , $additional_info );
}
// Create the info_type content type object.
$info_type = new stdClass ();
$info_type -> type_title = 'Supportgroups Info_type' ;
$info_type -> type_alias = 'com_supportgroups.info_type' ;
$info_type -> table = '{"special": {"dbtable": "#__supportgroups_info_type","key": "id","type": "Info_type","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$info_type -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","alias":"alias"}}' ;
$info_type -> router = 'SupportgroupsHelperRoute::getInfo_typeRoute' ;
$info_type -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/info_type.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"}]}' ;
// Check if info_type type is already in content_type DB.
$info_type_id = null ;
2016-03-08 10:24:26 +00:00
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $info_type -> type_alias ));
2016-03-08 10:24:26 +00:00
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
2018-05-05 13:35:10 +00:00
$info_type -> type_id = $db -> loadResult ();
$info_type_Updated = $db -> updateObject ( '#__content_types' , $info_type , 'type_id' );
2016-03-08 10:24:26 +00:00
}
else
{
2018-05-05 13:35:10 +00:00
$info_type_Inserted = $db -> insertObject ( '#__content_types' , $info_type );
2016-03-08 10:24:26 +00:00
}
2018-05-05 13:35:10 +00:00
// Create the area content type object.
$area = new stdClass ();
$area -> type_title = 'Supportgroups Area' ;
$area -> type_alias = 'com_supportgroups.area' ;
$area -> table = '{"special": {"dbtable": "#__supportgroups_area","key": "id","type": "Area","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$area -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "details","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","area_type":"area_type","region":"region","details":"details","color":"color","alias":"alias"}}' ;
$area -> router = 'SupportgroupsHelperRoute::getAreaRoute' ;
$area -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/area.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","area_type","region"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "area_type","targetTable": "#__supportgroups_area_type","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "region","targetTable": "#__supportgroups_region","targetColumn": "id","displayColumn": "name"}]}' ;
// Check if area type is already in content_type DB.
$area_id = null ;
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $area -> type_alias ));
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
$area -> type_id = $db -> loadResult ();
$area_Updated = $db -> updateObject ( '#__content_types' , $area , 'type_id' );
}
else
{
$area_Inserted = $db -> insertObject ( '#__content_types' , $area );
}
2016-03-06 00:50:22 +00:00
2018-05-05 13:35:10 +00:00
// Create the area_type content type object.
$area_type = new stdClass ();
$area_type -> type_title = 'Supportgroups Area_type' ;
$area_type -> type_alias = 'com_supportgroups.area_type' ;
$area_type -> table = '{"special": {"dbtable": "#__supportgroups_area_type","key": "id","type": "Area_type","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$area_type -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","alias":"alias"}}' ;
$area_type -> router = 'SupportgroupsHelperRoute::getArea_typeRoute' ;
$area_type -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/area_type.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"}]}' ;
// Check if area_type type is already in content_type DB.
$area_type_id = null ;
2016-03-06 00:50:22 +00:00
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
2018-05-05 13:35:10 +00:00
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $area_type -> type_alias ));
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
2018-05-05 13:35:10 +00:00
$area_type -> type_id = $db -> loadResult ();
$area_type_Updated = $db -> updateObject ( '#__content_types' , $area_type , 'type_id' );
2016-03-06 00:50:22 +00:00
}
else
{
2018-05-05 13:35:10 +00:00
$area_type_Inserted = $db -> insertObject ( '#__content_types' , $area_type );
2016-03-06 00:50:22 +00:00
}
// Create the region content type object.
$region = new stdClass ();
$region -> type_title = 'Supportgroups Region' ;
$region -> type_alias = 'com_supportgroups.region' ;
$region -> table = '{"special": {"dbtable": "#__supportgroups_region","key": "id","type": "Region","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
2018-05-05 13:35:10 +00:00
$region -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","country":"country","alias":"alias"}}' ;
2016-03-06 00:50:22 +00:00
$region -> router = 'SupportgroupsHelperRoute::getRegionRoute' ;
$region -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/region.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","country"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "country","targetTable": "#__supportgroups_country","targetColumn": "id","displayColumn": "name"}]}' ;
// Check if region type is already in content_type DB.
$region_id = null ;
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $region -> type_alias ));
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
$region -> type_id = $db -> loadResult ();
$region_Updated = $db -> updateObject ( '#__content_types' , $region , 'type_id' );
}
else
{
$region_Inserted = $db -> insertObject ( '#__content_types' , $region );
}
2016-03-08 10:24:26 +00:00
// Create the country content type object.
$country = new stdClass ();
$country -> type_title = 'Supportgroups Country' ;
$country -> type_alias = 'com_supportgroups.country' ;
$country -> table = '{"special": {"dbtable": "#__supportgroups_country","key": "id","type": "Country","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
$country -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","currency":"currency","worldzone":"worldzone","codethree":"codethree","codetwo":"codetwo","alias":"alias"}}' ;
$country -> router = 'SupportgroupsHelperRoute::getCountryRoute' ;
$country -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/country.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "currency","targetTable": "#__supportgroups_currency","targetColumn": "codethree","displayColumn": "name"}]}' ;
// Check if country type is already in content_type DB.
$country_id = null ;
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $country -> type_alias ));
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
$country -> type_id = $db -> loadResult ();
$country_Updated = $db -> updateObject ( '#__content_types' , $country , 'type_id' );
}
else
{
$country_Inserted = $db -> insertObject ( '#__content_types' , $country );
}
2016-03-06 00:50:22 +00:00
// Create the currency content type object.
$currency = new stdClass ();
$currency -> type_title = 'Supportgroups Currency' ;
$currency -> type_alias = 'com_supportgroups.currency' ;
$currency -> table = '{"special": {"dbtable": "#__supportgroups_currency","key": "id","type": "Currency","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
2018-05-05 13:35:10 +00:00
$currency -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "name","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "null","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"name":"name","codethree":"codethree","numericcode":"numericcode","symbol":"symbol","alias":"alias","negativestyle":"negativestyle","positivestyle":"positivestyle","decimalsymbol":"decimalsymbol","decimalplace":"decimalplace","thousands":"thousands"}}' ;
2016-03-06 00:50:22 +00:00
$currency -> router = 'SupportgroupsHelperRoute::getCurrencyRoute' ;
$currency -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/currency.xml","hideFields": ["asset_id","checked_out","checked_out_time","version"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","numericcode","decimalplace"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"}]}' ;
// Check if currency type is already in content_type DB.
$currency_id = null ;
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $currency -> type_alias ));
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
$currency -> type_id = $db -> loadResult ();
$currency_Updated = $db -> updateObject ( '#__content_types' , $currency , 'type_id' );
}
else
{
$currency_Inserted = $db -> insertObject ( '#__content_types' , $currency );
}
2016-03-08 10:24:26 +00:00
// Create the help_document content type object.
$help_document = new stdClass ();
$help_document -> type_title = 'Supportgroups Help_document' ;
$help_document -> type_alias = 'com_supportgroups.help_document' ;
$help_document -> table = '{"special": {"dbtable": "#__supportgroups_help_document","key": "id","type": "Help_document","prefix": "supportgroupsTable","config": "array()"},"common": {"dbtable": "#__ucm_content","key": "ucm_id","type": "Corecontent","prefix": "JTable","config": "array()"}}' ;
2018-05-05 13:35:10 +00:00
$help_document -> field_mappings = '{"common": {"core_content_item_id": "id","core_title": "title","core_state": "published","core_alias": "alias","core_created_time": "created","core_modified_time": "modified","core_body": "content","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "null","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "null","core_metadesc": "null","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"title":"title","type":"type","groups":"groups","location":"location","admin_view":"admin_view","site_view":"site_view","not_required":"not_required","content":"content","article":"article","url":"url","target":"target","alias":"alias"}}' ;
2016-03-08 10:24:26 +00:00
$help_document -> router = 'SupportgroupsHelperRoute::getHelp_documentRoute' ;
2018-05-05 13:35:10 +00:00
$help_document -> content_history_options = '{"formFile": "administrator/components/com_supportgroups/models/forms/help_document.xml","hideFields": ["asset_id","checked_out","checked_out_time","version","not_required"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","type","location","not_required","article","target"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "article","targetTable": "#__content","targetColumn": "id","displayColumn": "title"}]}' ;
2016-03-06 00:50:22 +00:00
2016-03-08 10:24:26 +00:00
// Check if help_document type is already in content_type DB.
$help_document_id = null ;
2016-03-06 00:50:22 +00:00
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'type_id' )));
$query -> from ( $db -> quoteName ( '#__content_types' ));
2016-03-08 10:24:26 +00:00
$query -> where ( $db -> quoteName ( 'type_alias' ) . ' LIKE ' . $db -> quote ( $help_document -> type_alias ));
2016-03-06 00:50:22 +00:00
$db -> setQuery ( $query );
$db -> execute ();
// Set the object into the content types table.
if ( $db -> getNumRows ())
{
2016-03-08 10:24:26 +00:00
$help_document -> type_id = $db -> loadResult ();
$help_document_Updated = $db -> updateObject ( '#__content_types' , $help_document , 'type_id' );
2016-03-06 00:50:22 +00:00
}
else
{
2016-03-08 10:24:26 +00:00
$help_document_Inserted = $db -> insertObject ( '#__content_types' , $help_document );
2016-03-06 00:50:22 +00:00
}
echo ' < a target = " _blank " href = " http://www.vdm.io " title = " Support Groups " >
2018-05-05 13:35:10 +00:00
< img src = " components/com_supportgroups/assets/images/vdm-component.jpg " />
2016-03-06 00:50:22 +00:00
</ a >
2019-04-04 11:53:29 +00:00
< h3 > Upgrade to Version 1.0 . 10 Was Successful ! Let us know if anything is not working as expected .</ h3 > ' ;
2016-03-06 00:50:22 +00:00
}
2019-08-14 01:50:35 +00:00
return true ;
2016-03-06 00:50:22 +00:00
}
}