diff --git a/plugin/customfooter/index.php b/plugin/customfooter/index.php new file mode 100644 index 0000000000..8303f4d695 --- /dev/null +++ b/plugin/customfooter/index.php @@ -0,0 +1,16 @@ +'; +if (!empty($plugin_info['settings']['customfooter_show_type'])) { + echo "
'; +echo ('[chamilo][cronjob] Starting cron jobs as process '.getmypid()."\n"); +require_once $_configuration['root_sys'].'main/cron/notification.php'; +error_log('[chamilo][cronjob] Ending cron jobs of process '.getmypid()); +echo('[chamilo][cronjob] Ending cron jobs of process '.getmypid()."\n"); +echo ''; diff --git a/plugin/vchamilo/cli/maincron.php b/plugin/vchamilo/cli/maincron.php new file mode 100644 index 0000000000..c595223c99 --- /dev/null +++ b/plugin/vchamilo/cli/maincron.php @@ -0,0 +1,22 @@ +|
'; + foreach($errortrace as $error){ + $str .= $error->message.''; + $str .= '
'; + $str .= @$error->content; + } + $str .= '
"); +echo("Chamilo VCron... start\n"); +echo("Last croned : ".api_get_setting('vchamilo_cron_lasthost', 'vchamilo')."\n"); + +if ($VCRON->STRATEGY == ROUND_ROBIN) { + $rr = 0; + foreach ($allvhosts as $vhostassoc) { + $vhost = (object)$vhostassoc; + if ($rr == 1) { + api_set_setting('vchamilo_cron_lasthost', $vhost->id); + echo("Round Robin : ".$vhost->root_web."\n"); + if ($VCRON->ACTIVATION == 'cli') { + exec_vhost_cron($vhost); + } else { + fire_vhost_cron($vhost); + } + + die('Done.'); + } + if ($vhost->id == api_get_setting('vchamilo_cron_lasthost', 'vchamilo')){ + $rr = 1; // take next one + } + } + + // We were at last. Loop back and take first. + $firsthost = (object)$allvhosts[0]; + api_set_setting('vchamilo_cron_lasthost', $firsthost->id, 'vchamilo'); + echo("Round Robin : ".$firsthost->root_web."\n"); + if ($VCRON->ACTIVATION == 'cli') { + exec_vhost_cron($firsthost); + } else { + fire_vhost_cron($firsthost); + } + +} else if ($VCRON->STRATEGY == LOWEST_POSSIBLE_GAP) { + // First make measurement of cron period. + if (api_get_setting('vcrontickperiod', 'vchamilo')) { + api_set_setting('vcrontime', time(), 'vchamilo'); + return; + } + api_set_setting('vcrontickperiod', time() - api_get_setting('vcrontime', 'vchamilo'), 'vchamilo'); + $hostsperturn = max(1, $VCRON->PERIOD / api_get_setting('vcrontickperiod', 'vchamilo') * count($allvhosts)); + $i = 0; + foreach ($allvhosts as $vhostassoc) { + $vhost = (object)$vhostassoc; + if ((time() - $vhost->lastcron) > $VCRON->PERIOD) { + if ($VCRON->ACTIVATION == 'cli') { + exec_vhost_cron($vhost); + } else { + fire_vhost_cron($vhost); + } + $i++; + if ($i >= $hostsperturn) { + return; + } + } + } +} + diff --git a/plugin/vchamilo/views/editinstance.controller.php b/plugin/vchamilo/views/editinstance.controller.php new file mode 100644 index 0000000000..f16e881790 --- /dev/null +++ b/plugin/vchamilo/views/editinstance.controller.php @@ -0,0 +1,230 @@ +what == 'addinstance' || $data->what == 'registerinstance') { + + unset($data->what); + unset($data->submitbutton); + unset($data->id); + $registeronly = $data->registeronly; + unset($data->registeronly); + $data->lastcron = 0; + $data->lastcrongap = 0; + $data->croncount = 0; + + if (isset($data->template)) { + $template = $data->template; + unset($data->template); + } + + ctrace("Registering VChamilo "); + $tablename = Database::get_main_table('vchamilo'); + if ($DB->record_exists('vchamilo', array('root_web' => $data->root_web))) { + $DB->update_record('vchamilo', $data, 'root_web'); + } else { + $DB->insert_record('vchamilo', $data); + } + + if ($registeronly){ + // Stop it now. + ctrace("Registering only. out."); + vchamilo_redirect(api_get_path(WEB_PLUGIN_PATH).'vchamilo/views/manage.php'); + } + + // or we continue with physical creation + + // Create course directory for operations. + // this is very important here (DO NOT USE api_get_path() !!) because storage may be remotely located + $absalternatecourse = vchamilo_get_config('vchamilo', 'course_real_root'); + if (!empty($absalternatecourse)){ + // this is the relocated case + $coursedir = str_replace('//', '/', $absalternatecourse.'/'.$data->course_folder); + } else { + // this is the standard local case + $coursedir = api_get_path(TO_SYS, SYS_PATH).$data->course_folder; + } + + if (!is_dir($coursedir)) { + ctrace("Creating physical course dir in $coursedir"); + mkdir($coursedir, 0777, true); + // initiate default index + $INDEX = fopen($coursedir.'/index.html', 'w'); + fputs($INDEX, vchamilo_get_default_course_index_fragment()); + fclose($INDEX); + + $HTACCESS = fopen($coursedir.'/.htaccess', 'w'); + fputs($HTACCESS, vchamilo_get_htaccess_fragment($data->course_folder)); + fclose($HTACCESS); + } + + // if real coursedir IS NOT under chamilo install, link to it + $standardlocation = str_replace('//', '/', $_configuration['root_sys'].'/'.$data->course_folder); // where it should be + ctrace("Checking course dir against standard $standardlocation "); + ctrace("checking standard location : ".is_dir($standardlocation)); + if ($coursedir != $standardlocation) { + + // The standard location dir SHOULD NOT EXIST YET + assert(!is_dir($standardlocation)); + + ctrace("Linking virtual coursedir "); + chdir(dirname($standardlocation)); + if (!symlink($coursedir, basename($coursedir))) { + ctrace("Could not link $standardlocation => $coursedir "); + } + } else { + ctrace("Course dir in standard location"); + } + + // create homedir + + // Structure of virtualized home folders : + + /* + * {LegacyHomeContainer} => {VChamiloSubcontainer} => {BrandedAccessUrlHome} + * + */ + + preg_match('#https?://([^\.]+)#', $data->root_web, $matches); + $home_folder = $matches[1]; + $archive_folder = $matches[1]; // prepare it now but use it later + if ($absalternatehome = vchamilo_get_config('vchamilo', 'home_real_root')){ + // absalternatehome is a vchamilo config setting that tells where the + // real physical storage for home pages are. + $homedir = str_replace('//', '/', $absalternatehome.'/'.$home_folder); + } else { + // homedir is the home container at install level. This may contains + // in reality home subdirs from branding suburls. + // In straight installs, this should be located as a hostname subrouted + // dir in home dir of the chamilo install. + // In delocated installs (clustered installations), the root 'home' directory + // may be a symbolic link to a delocated path. + $homedir = api_get_path(TO_SYS, SYS_PATH).'home/'.$home_folder; + } + + ctrace("Making home dir as $homedir "); + + if (!is_dir($homedir)){ + ctrace("Creating home dir "); + if (!mkdir($homedir, 0777, true)){ + ctrace("Error creating home dir $homedir \n"); + } + } + + ctrace("Checking direct home dir "); + + // if real homedir IS NOT under chamilo install, link to it + // Seems not be necessary as we can globally link the whole Home container + /* + $standardlocation = $_configuration['root_sys'].'home/'.$home_folder; // where it should be + if ($homedir != $standardlocation){ + ctrace("Linking virtual home dir "); + if (!symlink($homedir, $standardlocation)){ + ctrace("could not link $standardlocation => $homedir "); + } + } + */ + + // create archive + if($absalternatearchive = vchamilo_get_config('vchamilo', 'archive_real_root')){ + $archivedir = str_replace('//', '/', $absalternatearchive.'/'.$archive_folder); + } else { + $archivedir = $_configuration['root_sys'].'archive/'.$archive_folder; + } + + ctrace("Making archive dir as $archivedir "); + + if (!is_dir($archivedir)) { + ctrace("Creating archive dir "); + if(!mkdir($archivedir, 0777, true)) { + ctrace("Error creating archive dir $archivedir\n"); + } + } + + ctrace("Checking direct archive dir "); + + // if real archivedir IS NOT under chamilo install, link to it + // Seems not be necessary as we can globally link the whole Home container + /* + $standardlocation = $_configuration['root_sys'].'archive/'.$archive_folder; // where it should be + if ($archivedir != $standardlocation){ + ctrace("Linking virtual archive dir "); + if (!symlink($archivedir, $standardlocation)){ + ctrace("could not link $standardlocation => $archivedir "); + } + } + */ + + if (!$template) { + // Create empty database for install + ctrace("Creating databases (empty) "); + vchamilo_create_databases($data); + } else { + // deploy template database + + ctrace("Creating databases from template $template "); + + vchamilo_create_databases($data); + + ctrace("Loading data template $template "); + + vchamilo_load_db_template($data, 'main_database', $template); + if (!empty($data->statistics_database) && $data->main_database != $data->statistics_database) { + vchamilo_load_db_template($data, 'statistics_database', $template); + } + if (!empty($data->user_personal_database) && ($data->main_database != $data->user_personal_database) && ($data->user_personal_database != $data->statistics_database)) { + vchamilo_load_db_template($data, 'user_personal_database', $template); + } + + ctrace("Coying files from template $template "); + + vchamilo_load_files_from_template($data, $template); + } + + ctrace("Fixing records"); + + // Builds a new database manager on new instance to operate records + $NDB = new DatabaseManager($data); + + // pluging in site name institution + $settingstable = $NDB->format_table_name(TABLE_MAIN_SETTINGS_CURRENT); + $sitename = str_replace("'", "''", $data->sitename); + $institution = str_replace("'", "''", $data->institution); + $sqls[] = " UPDATE {$settingstable} SET selected_value = '{$sitename}' WHERE variable = 'siteName' AND category = 'Platform' "; + $sqls[] = " UPDATE {$settingstable} SET selected_value = '{$institution}' WHERE variable = 'institution' AND category = 'Platform' "; + $accessurltable = $NDB->format_table_name('access_url'); + $sqls[] = " UPDATE {$accessurltable} SET url = '{$data->root_web}' WHERE id = '1' "; + + foreach ($sqls as $sql) { + $NDB->execute_sql($sql); + } + + ctrace("Finished. "); + + if (!$automation) { + echo 'Continue'; + // vchamilo_redirect(api_get_path(WEB_PLUGIN_PATH).'vchamilo/views/manage.php'); + die; + } +} + +if ($data->what == 'updateinstance') { + + unset($data->what); + unset($data->submitbutton); + unset($data->registeronly); + unset($data->template); + $data->lastcron = 0; + $data->lastcrongap = 0; + $data->croncount = 0; + $data->id = $data->vid; + unset($data->vid); + + if (!$DB->update_record('vchamilo', $data, 'id')) { + error_log('Vchamilo update error'); + } + + vchamilo_redirect(api_get_path(WEB_PLUGIN_PATH).'vchamilo/views/manage.php'); +} diff --git a/plugin/vchamilo/views/editinstance.php b/plugin/vchamilo/views/editinstance.php new file mode 100644 index 0000000000..4c66de07f5 --- /dev/null +++ b/plugin/vchamilo/views/editinstance.php @@ -0,0 +1,68 @@ +'; + +// get parameters +$id = (int)($_REQUEST['vid']); +$action = $_REQUEST['what']; +$registeronly = @$_REQUEST['registeronly']; +$plugininstance = VChamiloPlugin::create(); +$thisurl = api_get_path(WEB_PLUGIN_PATH).'vchamilo/views/manage.php'; + +// security +api_protect_admin_script(); + + +if ($id) { + $mode = 'update'; +} else { + $mode = ($registeronly) ? 'register' : 'add' ; +} + +$form = new InstanceForm($plugininstance, $mode); +$form->definition(); + +$actions = ''; +$message = ''; + +// call controller +// $data = $form->get_data(); +if ($data = $form->get_data()){ + include(api_get_path(SYS_PLUGIN_PATH).'vchamilo/views/editinstance.controller.php'); +} + +if ($id){ + $vhost = $DB->get_record('vchamilo', array('id' => $id)); + $vhost->vid = $vhost->id; + unset($vhost->id); + $form->set_data((array)$vhost); +} else { + $data = array(); + $data['db_host'] = 'localhost'; + $data['single_database'] = 1; + $data['registeronly'] = $registeronly; + $form->set_data($data); +} + +$content = $form->return_form(); + +$tpl = new Template($tool_name, true, true, false, true, false); +$tpl->assign('actions', $actions); +$tpl->assign('message', $message); +$tpl->assign('content', $content); +$tpl->display_one_col_template(); diff --git a/plugin/vchamilo/views/editinstance_form.php b/plugin/vchamilo/views/editinstance_form.php new file mode 100644 index 0000000000..1d4479d923 --- /dev/null +++ b/plugin/vchamilo/views/editinstance_form.php @@ -0,0 +1,151 @@ +_plugin = $plugin; + + $returnurl = $_configuration['root_web'].'plugin/vchamilo/views/editinstance.php'; + $cancelurl = $_configuration['root_web'].'plugin/vchamilo/views/manage.php'; + parent::__construct($mode, $returnurl, $cancelurl); + } + + function definition(){ + global $_configuration; + + $cform = $this->_form; + + // Settings variables. + $size_input_text = 'size="30"'; + $size_input_text_big = 'size="60"'; + + /* + * Host's id. + */ + $cform->addElement('hidden', 'vid'); + $cform->addElement('hidden', 'what', $this->_mode.'instance'); + $cform->addElement('hidden', 'registeronly'); + + /* + * Features fieldset. + */ + $cform->addElement('header', $this->_plugin->get_lang('hostdefinition')); + // Name. + $cform->addElement('text', 'sitename', $this->_plugin->get_lang('sitename'), $size_input_text); + $cform->applyFilter('sitename', 'html_filter'); + $cform->applyFilter('sitename', 'trim'); + + // Shortname. + $cform->addElement('text', 'institution', $this->_plugin->get_lang('institution'), ($this->mode == 'edit' ? 'disabled="disabled" ' : '')); + $cform->applyFilter('institution', 'html_filter'); + $cform->applyFilter('institution', 'trim'); + + // Host's name. + $cform->addElement('text', 'root_web', $this->_plugin->get_lang('rootweb'), ($this->mode == 'edit' ? 'disabled="disabled" ' : '').$size_input_text); + $cform->applyFilter('root_web', 'trim'); + + /* + * Database fieldset. + */ + $cform->addElement('header', $this->_plugin->get_lang('dbgroup')); + + // Database host. + $cform->addElement('text', 'db_host', $this->_plugin->get_lang('dbhost'), array('id' => 'id_vdbhost')); + $cform->applyFilter('db_host', 'trim'); + + // Database login. + $cform->addElement('text', 'db_user', $this->_plugin->get_lang('dbuser'), array('id' => 'id_vdbuser')); + $cform->applyFilter('db_user', 'trim'); + + // Database password. + $cform->addElement('password', 'db_password', $this->_plugin->get_lang('dbpassword'), array('id' => 'id_vdbpassword')); + + // Button for testing database connection. + $cform->addElement('button', 'testconnection', $this->_plugin->get_lang('testconnection'), 'onclick="opencnxpopup(\''.$_configuration['root_web'].'\'); return false;"'); + + // Database name. + $cform->addElement('text', 'main_database', $this->_plugin->get_lang('maindatabase')); + + // Database name. + $cform->addElement('text', 'statistics_database', $this->_plugin->get_lang('statisticsdatabase')); + + // Database name. + $cform->addElement('text', 'user_personal_database', $this->_plugin->get_lang('userpersonaldatabase')); + + // tracking_enabled + $yesnooptions = array('0' => $this->_plugin->get_lang('no'), '1' => $this->_plugin->get_lang('yes')); + $cform->addElement('select', 'tracking_enabled', $this->_plugin->get_lang('trackingenabled'), $yesnooptions); + + // Single database + $cform->addElement('select', 'single_database', $this->_plugin->get_lang('singledatabase'), $yesnooptions); + + // Table's prefix. + $cform->addElement('text', 'table_prefix', $this->_plugin->get_lang('tableprefix')); + + // Db's prefix. + $cform->addElement('text', 'db_prefix', $this->_plugin->get_lang('dbprefix')); + + /* + * data fieldset. + */ + $cform->addElement('header', $this->_plugin->get_lang('datalocation')); + + // Path for "moodledata". + $cform->addElement('text', 'course_folder', $this->_plugin->get_lang('coursefolder'), array('size' => $size_input_text_big, 'id' => 'id_vdatapath')); + + // Button for testing datapath. + $cform->addElement('button', 'testdatapath', $this->_plugin->get_lang('testdatapath'), 'onclick="opendatapathpopup(\''.$_configuration['root_web'].'\'); return true;"'); + + /* + * Template selection. + */ + if ($this->is_in_add_mode()) { + $cform->addElement('header', $this->_plugin->get_lang('templating')); + + $templateoptions = vchamilo_get_available_templates(); + + // Template choice + $cform->addElement('select', 'template', $this->_plugin->get_lang('template'), $templateoptions); + } + + $submitstr = $this->_plugin->get_lang('savechanges'); + $cancelstr = $this->_plugin->get_lang('cancel'); + $this->add_action_buttons(true, $submitstr, $cancelstr); + + // Rules for the add mode. + if($this->is_in_add_mode()) { + $cform->addRule('sitename', $this->_plugin->get_lang('sitenameinputerror'), 'required', null, 'client'); + $cform->addRule('institution', $this->_plugin->get_lang('institutioninputerror'), 'required', null, 'client'); + $cform->addRule('root_web', $this->_plugin->get_lang('rootwebinputerror'), 'required', null, 'client'); + $cform->addRule('main_database', $this->_plugin->get_lang('databaseinputerror'), 'required', null, 'client'); + $cform->addRule('course_folder', $this->_plugin->get_lang('coursefolderinputerror'), 'required', null, 'client'); + } + } + + function validation($data, $files = null){ + global $plugininstance; + + $errors = array(); + var_dump($data); + if (!preg_match('/^courses[_-]/', $data['course_folder'])){ + $errors['course_folder'] = $plugininstance->get_lang('errormuststartwithcourses'); + } + + $tablename = Database::get_main_table('vchamilo'); + if($vchamilo = Database::select('*', $tablename, array('where' => array(' root_web = ? ' => array($data->root_web))))){ + $errors['root_web'] = $plugininstance->get_lang('errorrootwebexists'); + } + + if(!empty($errors)){ + return $errors; + } + } +} \ No newline at end of file diff --git a/plugin/vchamilo/views/manage.controller.php b/plugin/vchamilo/views/manage.controller.php new file mode 100644 index 0000000000..6fdda38418 --- /dev/null +++ b/plugin/vchamilo/views/manage.controller.php @@ -0,0 +1,375 @@ + array("id IN ('$vidlist')" => array()))); + } else { + $todelete = Database::select('*', 'vchamilo', array('where' => array("root_web = '{$n->root_web}' " => array()))); + } + + foreach ($todelete as $fooid => $instance) { + + echo "'; + $content .= ''; + + $tpl = new Template($tool_name, true, true, false, true, false); + $tpl->assign('actions', ''); + $tpl->assign('message', $plugininstance->get_lang('vchamilosnapshot1')); + $tpl->assign('content', $content); + $tpl->display_one_col_template(); + + die; + } else { + // continue next step + $vchamilostep = 1; + } + } + if ($vchamilostep >= 1) { + if ($wwwroot == $_configuration['root_web']) { + // Make fake Vchamilo record. + $vchamilo = vchamilo_make_this(); + $vcoursepath = api_get_path(TO_SYS, SYS_COURSE_PATH); + $vhomepath = api_get_path(TO_SYS, SYS_HOME_PATH); + $varchivepath = api_get_path(TO_SYS, SYS_ARCHIVE_PATH); + } else { + // Get Vchamilo known record. + $vchamilos = Database::select('*', 'vchamilo', array('where' => array('root_web = ?' => array($wwwroot)))); + $vchamilo = (object)array_pop($vchamilos); + $vcoursepath = api_get_path(TO_SYS, SYS_COURSE_PATH, (array)$vchamilo); + $vhomepath = api_get_path(TO_SYS, SYS_HOME_PATH, (array)$vchamilo); + $varchivepath = api_get_path(TO_SYS, SYS_ARCHIVE_PATH, (array)$vchamilo); + } + + if ($vchamilostep == 1) { + // Auto dump the databases in a master template folder. + // this will create three files : chamilo_master_main.sql, chamilo_master_statistics.sql, chamilo_master_user_personal.sql + $errors = vchamilo_dump_databases($vchamilo, $absolute_sqldir.$separator.'chamilo_master'); + + if (empty($fullautomation)) { + if(!empty($errors)) { + $actionurl = $_configuration['root_web'].'/plugin/vchamilo/views/manage.php'; + + $message = vchamilo_print_error($errors, true); + + $content .= ''; + } else { + $actionurl = $_configuration['root_web'].'/plugin/vchamilo/views/manage.php'; + + $message = $plugininstance->get_lang('vchamilosnapshot2'); + + $content .= ''; + } + + $tpl = new Template($tool_name, true, true, false, true, false); + $tpl->assign('actions', ''); + $tpl->assign('message', $message); + $tpl->assign('content', $content); + $tpl->display_one_col_template(); + + die; + } + } + + // end of process + + // copy chamilo data dirs and protect against copy recursion. + /* + echo ""; + echo ("Dropping instance databases \n"); + vchamilo_drop_databases($instance); + + // Remove all files and eventual symlinks + + $absalternatecourse = vchamilo_get_config('vchamilo', 'course_real_root'); + if (!empty($absalternatecourse)){ + // this is the relocated case + $coursedir = str_replace('//', '/', $absalternatecourse.'/'.$instance->course_folder); + } else { + // this is the standard local case + $coursedir = api_get_path(TO_SYS, SYS_PATH).$instance->course_folder; + } + $standardlocation = str_replace('//', '/', $_configuration['root_sys'].'/'.$instance->course_folder); // where it should be + + echo ("Deleting $coursedir \n"); + removeDir($coursedir); + if (is_link($standardlocation)) { + unlink($standardlocation); + } + + preg_match('#https?://([^\.]+)#', $instance->root_web, $matches); + $home_folder = $matches[1]; + $archive_folder = $matches[1]; // prepare it now + + if ($absalternatehome = vchamilo_get_config('vchamilo', 'home_real_root')){ + $homedir = str_replace('//', '/', $absalternatehome.'/'.$home_folder); + } else { + $homedir = api_get_path(TO_SYS, SYS_PATH).'home/'.$home_folder; + } + $standardlocation = $_configuration['root_sys'].'home/'.$home_folder; // where it should be + + echo ("Deleting $homedir \n"); + removeDir($homedir); + if (is_link($standardlocation)) { + unlink($standardlocation); + } + + // delete archive + if($absalternatearchive = vchamilo_get_config('vchamilo', 'archive_real_root')){ + $archivedir = str_replace('//', '/', $absalternatearchive.'/'.$archive_folder); + } else { + $archivedir = $_configuration['root_sys'].'archive/'.$archive_folder; + } + $standardlocation = $_configuration['root_sys'].'archive/'.$archive_folder; // where it should be + + echo ("Deleting $archivedir \n"); + removeDir($archivedir); + if (is_link($standardlocation)) { + unlink($standardlocation); + } + echo ''; + + echo ("Removing vchamilo record \n"); + $sql = " + DELETE FROM + {$table} + WHERE + id = {$instance->id} + "; + Database::query($sql); + + } + + // vchamilo_redirect($_configuration['root_web'].'/plugin/vchamilo/views/manage.php'); +} +if ($action == 'snapshotinstance') { + + $vid = $_REQUEST['vid']; + if ($vid) { + $vhosts = Database::select('*', 'vchamilo', array('where' => array('id = ?' => $vid))); + $vhost = (object)array_pop($vhosts); + } else { + $vhost = (object)$_configuration; + } + + // Parsing url for building the template name. + $wwwroot = $vhost->root_web; + $vchamilostep = $_REQUEST['step']; + preg_match('#https?://([^/]+)#', $wwwroot, $matches); + $hostname = $matches[1]; + + // Make template directory (files and SQL). + $separator = DIRECTORY_SEPARATOR; + $templatefoldername = 'plugin'.$separator.'vchamilo'.$separator.'templates'; + $relative_datadir = $templatefoldername.$separator.$hostname.'_vchamilodata'; + $absolute_datadir = $_configuration['root_sys'].$relative_datadir; + $relative_sqldir = $templatefoldername.$separator.$hostname.'_sql'; + $absolute_sqldir = $_configuration['root_sys'].$separator.$relative_sqldir; +// $absolute_templatesdir = api_get_path(SYS_PATH, CHAMILO_ARCHIVE_PATH).$separator.$templatefoldername; // can be problematic as self containing + $absolute_templatesdir = $_configuration['root_sys'].$templatefoldername; + + if (preg_match('/ /', $absolute_sqldir)){ + $erroritem = new StdClass(); + $erroritem->message = $plugininstance->get_lang('errorspacesinpath'); + vchamilo_print_error(array($erroritem)); + } + + if (!is_dir($absolute_templatesdir)){ + mkdir($absolute_templatesdir, 0777, true); + } + + if ($vchamilostep == 0) { + // Create directories, if necessary. + if (!is_dir($absolute_datadir)){ + mkdir($absolute_datadir, 0777, true); + mkdir($absolute_datadir.'/archive', 0777, true); + mkdir($absolute_datadir.'/home', 0777, true); + } + if (!is_dir($absolute_sqldir)) { + mkdir($absolute_sqldir, 0777, true); + } + if (empty($fullautomation)) { + $actionurl = $_configuration['root_web'].'/plugin/vchamilo/views/manage.php'; + $content .= '
"; + echo "copyDirTo($vcoursepath, $absolute_datadir, false); + copyDirTo($varchivepath, $absolute_datadir.'/archive, false); + copyDirTo($vhomepath, $absolute_datadir.'/home', false);"; + echo ""; + */ + + echo "
"; + echo ("Copying from $vcoursepath to $absolute_datadir \n"); + copyDirTo($vcoursepath, $absolute_datadir, false); + echo ("Copying from $varchivepath to {$absolute_datadir}/archive \n"); + copyDirTo($varchivepath, $absolute_datadir.'/archive', false); + echo ("Copying from $vhomepath to {$absolute_datadir}/home \n"); + copyDirTo($vhomepath, $absolute_datadir.'/home', false); + echo ""; + + // Store original hostname and some config info for further database or filestore replacements. + $FILE = fopen($absolute_sqldir.$separator.'manifest.php', 'w'); + fwrite($FILE, '<'.'?php '); + fwrite($FILE, "\$templatewwwroot = '".$wwwroot."';\n"); + fwrite($FILE, "\$templatevdbprefix = '".$vhost->table_prefix."';\n "); + fwrite($FILE, "\$coursefolder = '".$vhost->course_folder."';\n "); + fwrite($FILE, '?'.'>'); + fclose($FILE); + + // Every step was SUCCESS. + if (empty($fullautomation)){ + $message_object->message = $plugininstance->get_lang('successfinishedcapture'); + $message_object->style = 'notifysuccess'; + + // Save confirm message before redirection. + $_SESSION['confirm_message'] = $message_object; + $actionurl = $_configuration['root_web'].'/plugin/vchamilo/views/manage.php'; + $content .= '
'; + foreach ($toclear as $fooid => $instance) { + + if ($fooid == 0) { + echo ("Clearing master template cache \n"); + } else { + echo ("Clearing instance template cache \n"); + } + + // Get instance archive + $archivepath = api_get_path(SYS_ARCHIVE_PATH, TO_SYS, (array)$instance); + $templatepath = $archivepath.'twig'; + echo ("Deleting $templatepath \n"); + removeDir($templatepath); + } + echo ''; +} + +if ($action == 'setconfigvalue') { + + if ($_REQUEST['confirm']) { + } + + $select = ''; + + Display::display_header(); + + echo '