You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.8 KiB
71 lines
2.8 KiB
<?php
|
|
|
|
$cidReset = true;
|
|
require_once '../../../main/inc/global.inc.php';
|
|
|
|
api_protect_admin_script();
|
|
|
|
require_once api_get_path(SYS_PLUGIN_PATH).'vchamilo/lib.php';
|
|
require_once api_get_path(SYS_PLUGIN_PATH).'vchamilo/lib/vchamilo_plugin.class.php';
|
|
|
|
$action = isset($_GET['what']) ? $_GET['what'] : '';
|
|
define('CHAMILO_INTERNAL', true);
|
|
|
|
$plugininstance = VChamiloPlugin::create();
|
|
$thisurl = api_get_path(WEB_PLUGIN_PATH).'vchamilo/views/manage.php';
|
|
|
|
if ($action){
|
|
require_once(api_get_path(SYS_PLUGIN_PATH).'vchamilo/views/syncparams.controller.php');
|
|
}
|
|
|
|
$settings = api_get_settings();
|
|
|
|
$table = new HTML_Table(array('class' => 'data_table', 'width' => '100%'));
|
|
$column = 0;
|
|
$row = 0;
|
|
|
|
// $table->set_additional_parameters($parameters);
|
|
$headers = array('', $plugininstance->get_lang('variable'), $plugininstance->get_lang('subkey'), $plugininstance->get_lang('category'), $plugininstance->get_lang('accessurl'), $plugininstance->get_lang('value'), '');
|
|
$attrs = array('center' => 'left');
|
|
$table->addRow($headers, $attrs, 'th');
|
|
|
|
foreach ($settings as $param) {
|
|
// $check = '<input type="checkbox" name="sync_'.$param->id.'" value="'.$param->selected_value.'" />';
|
|
$check = '';
|
|
$attrs = array('center' => 'left');
|
|
$syncthisbutton = '<input type="button" name="syncthis" value="'.$plugininstance->get_lang('syncthis').'" onclick="ajax_sync_setting(\''.$_configuration['root_web'].'\', \''.$param['id'].'\')" />
|
|
<input type="checkbox" name="del_'.$param['id'].'" value="1" title="'.$plugininstance->get_lang('deleteifempty').'" /> <span id="res_'.$param['id'].'"></span>';
|
|
$data = array(
|
|
$check,
|
|
$param['variable'],
|
|
$param['subkey'],
|
|
$param['category'],
|
|
$param['access_url'],
|
|
'<input type="text" name="value_'.$param['id'].'" value="'.htmlspecialchars(
|
|
$param['selected_value'],
|
|
ENT_COMPAT,
|
|
'UTF-8'
|
|
).'" />',
|
|
$syncthisbutton,
|
|
);
|
|
$row = $table->addRow($data, $attrs, 'td');
|
|
$table->setRowAttributes($row, array('id' => 'row_'.$param['id']), true);
|
|
}
|
|
|
|
$content = '<form name="settingsform" action="'.$thisurl.'">';
|
|
$content .= '<input type="hidden" name="what" value="" />';
|
|
$content .= $table->toHtml();
|
|
// $content .= '<div class"vchamilo-right"><div></div><div><input type="button" name="syncall" value="'.$plugininstance->get_lang('syncall').'" onclick="this.form.what.value=\'syncall\';this.form.submit();">';
|
|
$content .= '</form>';
|
|
|
|
$actions = '';
|
|
$message = '';
|
|
|
|
$message = require_js('ajax.js', 'vchamilo', true);
|
|
|
|
$interbreadcrumb[] = array('url' => 'manage.php', 'name' => get_lang('VChamilo'));
|
|
$tpl = new Template($plugininstance->get_lang('sync_settings'), true, true, false, true, false);
|
|
$tpl->assign('actions', $actions);
|
|
$tpl->assign('message', $message);
|
|
$tpl->assign('content', $content);
|
|
$tpl->display_one_col_template();
|
|
|