Cleaned up the installer script

- Quoted the table name correctly
- Used some shortcuts
This commit is contained in:
bembelimen 2015-04-03 21:22:26 +02:00
parent 5d3877b9c1
commit 088e19514a
1 changed files with 11 additions and 16 deletions

View File

@ -78,28 +78,23 @@ class Com_WeblinksInstallerScript
*/
function postflight($type, $parent)
{
$tasks = array(
'0' => 'sid',
'1' => 'date',
'2' => 'archived',
'3' => 'approved',
$oldColumns = array(
'sid',
'date',
'archived',
'approved',
);
$db = JFactory::getDbo();
$table = $db->getTableColumns('#__weblinks');
foreach ($tasks as $column)
$columns = array_intersect($oldColumns, array_keys($table));
foreach ($columns as $column)
{
foreach ($table as $columName => $columType)
{
if ($columName == $column)
{
$sql = "ALTER TABLE `#__weblinks` DROP COLUMN `" . $column . "`";
$db->clean();
$db->setQuery($sql);
$db->execute();
}
}
$sql = 'ALTER TABLE ' . $db->qn('#__weblinks') . ' DROP COLUMN ' . $db->qn($column);
$db->setQuery($sql);
$db->execute();
}
}
}