File Manager
<?php
#BEGIN_LICENSE
#-------------------------------------------------------------------------
# Module: CGExtensions (c) 2008-2014 by Robert Campbell
# (calguy1000@cmsmadesimple.org)
# An addon module for CMS Made Simple to provide useful functions
# and commonly used gui capabilities to other modules.
#
#-------------------------------------------------------------------------
# CMSMS - CMS Made Simple is (c) 2005 by Ted Kulp (wishy@cmsmadesimple.org)
# Visit the CMSMS Homepage at: http://www.cmsmadesimple.org
#
#-------------------------------------------------------------------------
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# However, as a special exception to the GPL, this software is distributed
# as an addon module to CMS Made Simple. You may not use this software
# in any Non GPL version of CMS Made simple, or in any version of CMS
# Made simple that does not indicate clearly and obviously in its admin
# section that the site was built with CMS Made simple.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# Or read it online: http://www.gnu.org/licenses/licenses.html#GPL
#
#-------------------------------------------------------------------------
#END_LICENSE
//$db = cge_utils::get_db();
$taboptarray = array( 'mysql' => 'TYPE=MyISAM' );
$dict = NewDataDictionary($db);
if( version_compare($oldversion,'1.8') < 0 )
{
// tables
$flds = "id I KEY AUTO,
code C(2) KEY,
name C(50),
sorting I DEFAULT 0";
$sqlarray = $dict->CreateTableSQL(CGEXTENSIONS_TABLE_COUNTRIES,$flds,$taboptarray);
$dict->ExecuteSQLArray($sqlarray);
$sqlarray = $dict->CreateTableSQL(CGEXTENSIONS_TABLE_STATES,$flds,$taboptarray);
$dict->ExecuteSQLArray($sqlarray);
// default content
$fn = cms_join_path(dirname(__FILE__),'countries.txt');
$raw_countries = @file($fn);
$query = 'INSERT INTO '.CGEXTENSIONS_TABLE_COUNTRIES.' (code,name,sorting) VALUES (?,?,0)';
foreach($raw_countries as $one)
{
list($acronym,$country_name) = explode(',',$one);
$acronym = strtoupper(trim($acronym));
$country_name = trim($country_name);
$db->Execute($query,array($acronym,$country_name));
}
$fn = cms_join_path(dirname(__FILE__),'states.txt');
$raw_states = @file($fn);
$query = 'INSERT INTO '.CGEXTENSIONS_TABLE_STATES.' (code,name,sorting) VALUES (?,?,0)';
foreach($raw_states as $one)
{
list($acronym,$state_name) = explode(',',$one);
$acronym = strtoupper(trim($acronym));
$state_name = trim($state_name);
$db->Execute($query,array($acronym,$state_name));
}
} // version_compare
if( version_compare($oldversion,'1.11') < 0 ) {
$tabopotarray = array( 'mysql' => 'TYPE=MyISAM' );
$dict = NewDataDictionary($db);
$flds = "id I KEY AUTO,
key1 C(255),
key2 C(255),
key3 C(255),
key4 C(255),
data X,
type C(20),
create_date ".CMS_ADODB_DT.",
modified_date ".CMS_ADODB_DT;
$sqlarray = $dict->CreateTableSQL(cms_db_prefix().'module_cge_assocdata', $flds,$taboptarray);
$dict->ExecuteSQLArray($sqlarray);
}
if( version_compare($oldversion,'1.16') < 0 )
{
$tabopotarray = array( 'mysql' => 'TYPE=MyISAM' );
$dict = NewDataDictionary($db);
$tmp = $dict->DropTableSQL(CGEXTENSIONS_TABLE_ASSOCDATA);
$dict->ExecuteSQLArray($tmp);
$flds = "id I KEY AUTO,
key1 C(255),
key2 C(255),
key3 C(255),
key4 C(255),
data X,
expiry C(20),
create_date ".CMS_ADODB_DT.",
modified_date ".CMS_ADODB_DT;
$sqlarray = $dict->CreateTableSQL(CGEXTENSIONS_TABLE_ASSOCDATA,$flds,$taboptarray);
$dict->ExecuteSQLArray($sqlarray);
}
if( version_compare($oldversion,'1.19.3') < 0 ) {
$flds = "id I KEY AUTO,
code C(2) KEY NOT NULL,
name C(50) KEY NOT NULL,
sorting I DEFAULT 0";
$sqlarray = $dict->CreateTableSQL(CGEXTENSIONS_TABLE_COUNTRIES,$flds,$taboptarray);
$dict->ExecuteSQLArray($sqlarray);
$sqlarray = $dict->CreateTableSQL(CGEXTENSIONS_TABLE_STATES,$flds,$taboptarray);
$dict->ExecuteSQLArray($sqlarray);
$sqlarray = $dict->CreateIndexSQL(CGEXTENSIONS_TABLE_COUNTRIES,'cge_idx_countries1','code',array('UNIQUE'=>1));
$dict->ExecuteSQLArray($sqlarray);
// default content
$db->Execute('TRUNCATE TABLE '.CGEXTENSIONS_TABLE_COUNTRIES);
$fn = cms_join_path(dirname(__FILE__),'countries.txt');
$raw_countries = @file($fn);
$query = 'INSERT INTO '.CGEXTENSIONS_TABLE_COUNTRIES.' (code,name,sorting) VALUES (?,?,0)';
foreach($raw_countries as $one) {
list($acronym,$country_name) = explode(',',$one);
$acronym = trim($acronym);
$country_name = trim($country_name);
$db->Execute($query,array($acronym,$country_name));
}
$db->Execute('TRUNCATE TABLE '.CGEXTENSIONS_TABLE_STATES);
$fn = cms_join_path(dirname(__FILE__),'states.txt');
$raw_states = @file($fn);
$query = 'INSERT INTO '.CGEXTENSIONS_TABLE_STATES.' (code,name,sorting) VALUES (?,?,0)';
foreach($raw_states as $one) {
list($acronym,$state_name) = explode(',',$one);
$acronym = trim($acronym);
$state_name = trim($state_name);
$db->Execute($query,array($acronym,$state_name));
}
}
if( version_compare($oldversion,'1.24.3') < 0 ) {
$sqlarray = $dict->AddColumnSQL(CGEXTENSIONS_TABLE_ASSOCDATA,'type C(50)');
$dict->ExecuteSQLArray($sqlarray);
}
if( version_compare($oldversion,'1.37.1') < 0 ) {
// copied from the installer because of a bonehead maneuver I did.
$flds = "id I KEY AUTO,
code C(2) KEY,
name C(50) KEY,
sorting I DEFAULT 0";
$sqlarray = $dict->CreateTableSQL(CGEXTENSIONS_TABLE_COUNTRIES,$flds,$taboptarray);
$dict->ExecuteSQLArray($sqlarray);
$sqlarray = $dict->CreateTableSQL(CGEXTENSIONS_TABLE_STATES,$flds,$taboptarray);
$dict->ExecuteSQLArray($sqlarray);
$flds = "id I KEY AUTO,
key1 C(255),
key2 C(255),
key3 C(255),
key4 C(255),
data X,
type C(20),
expiry C(20),
create_date ".CMS_ADODB_DT.",
modified_date ".CMS_ADODB_DT;
$sqlarray = $dict->CreateTableSQL(CGEXTENSIONS_TABLE_ASSOCDATA,$flds,$taboptarray);
$dict->ExecuteSQLArray($sqlarray);
// default content
$db->Execute('TRUNCATE TABLE '.CGEXTENSIONS_TABLE_COUNTRIES);
$fn = cms_join_path(dirname(__FILE__),'countries.txt');
$raw_countries = @file($fn);
$query = 'INSERT INTO '.CGEXTENSIONS_TABLE_COUNTRIES.' (code,name,sorting) VALUES (?,?,0)';
foreach($raw_countries as $one) {
list($acronym,$country_name) = explode(',',$one);
$acronym = trim($acronym);
$country_name = trim($country_name);
$db->Execute($query,array($acronym,$country_name));
}
$db->Execute('TRUNCATE TABLE '.CGEXTENSIONS_TABLE_STATES);
$fn = cms_join_path(dirname(__FILE__),'states.txt');
$raw_states = @file($fn);
$query = 'INSERT INTO '.CGEXTENSIONS_TABLE_STATES.' (code,name,sorting) VALUES (?,?,0)';
foreach($raw_states as $one) {
list($acronym,$state_name) = explode(',',$one);
$acronym = trim($acronym);
$state_name = trim($state_name);
$db->Execute($query,array($acronym,$state_name));
}
}
if( version_compare($oldversion,'1.38.3') < 0 ) {
// default content
$db->Execute('TRUNCATE TABLE '.CGEXTENSIONS_TABLE_COUNTRIES);
$sqlarray = $dict->CreateIndexSQL('cge_idx_countries1',CGEXTENSIONS_TABLE_COUNTRIES,'code',array('UNIQUE'=>1));
$dict->ExecuteSQLArray($sqlarray);
$fn = cms_join_path(dirname(__FILE__),'countries.txt');
$raw_countries = @file($fn);
$query = 'INSERT INTO '.CGEXTENSIONS_TABLE_COUNTRIES.' (code,name,sorting) VALUES (?,?,0)';
foreach($raw_countries as $one) {
list($acronym,$country_name) = explode(',',$one);
$acronym = trim($acronym);
$country_name = trim($country_name);
$db->Execute($query,array($acronym,$country_name));
}
$db->Execute('TRUNCATE TABLE '.CGEXTENSIONS_TABLE_STATES);
$sqlarray = $dict->CreateIndexSQL('cge_idx_states1',CGEXTENSIONS_TABLE_STATES,'code',array('UNIQUE'=>1));
$dict->ExecuteSQLArray($sqlarray);
$fn = cms_join_path(dirname(__FILE__),'states.txt');
$raw_states = @file($fn);
$query = 'INSERT INTO '.CGEXTENSIONS_TABLE_STATES.' (code,name,sorting) VALUES (?,?,0)';
foreach($raw_states as $one) {
list($acronym,$state_name) = explode(',',$one);
$acronym = trim($acronym);
$state_name = trim($state_name);
$db->Execute($query,array($acronym,$state_name));
}
}
if( version_compare($oldversion,'1.40') < 0 ) {
$loader = new cgjsloader_libdefn('cg_cmsms');
$loader->callback = array('cge_jshandler','load');
cge_jsloader::register($loader);
}
// this may fail, but let it fail.
$this->AddEventHandler('Core','ContentPostRender');
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com