@@ -22,7 +22,7 @@ |
||
22 | 22 | |
23 | 23 | $CLI_VCHAMILO_PRECHECK = true; // force first config to be minimal |
24 | 24 | require(dirname(dirname(dirname(dirname(__FILE__)))).'/main/inc/conf/configuration.php'); // get boot config |
25 | -require_once($_configuration['root_sys'].'plugin/vchamilo/cli/clilib.php'); // cli only functions |
|
25 | +require_once($_configuration['root_sys'].'plugin/vchamilo/cli/clilib.php'); // cli only functions |
|
26 | 26 | |
27 | 27 | // Ensure errors are well explained |
28 | 28 |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | echo "Chamilo Bulk Nodes Creation v.1.0\n"; |
19 | 19 | echo "=================================\n"; |
20 | 20 | require_once('../../../main/inc/global.inc.php'); |
21 | -require_once('clilib.php'); // cli only functions |
|
21 | +require_once('clilib.php'); // cli only functions |
|
22 | 22 | // Ensure errors are well explained |
23 | 23 | ini_set('debug_display', 1); |
24 | 24 | ini_set('debug_level', E_ALL); |
@@ -90,13 +90,13 @@ discard block |
||
90 | 90 | } |
91 | 91 | } |
92 | 92 | |
93 | -require_once($_configuration['root_sys'].'local/classes/database.class.php'); // cli only functions |
|
93 | +require_once($_configuration['root_sys'].'local/classes/database.class.php'); // cli only functions |
|
94 | 94 | if ($options['verbose']) echo "loaded dbclass\n"; |
95 | -require_once($_configuration['root_sys'].'local/classes/textlib.class.php'); // cli only functions |
|
95 | +require_once($_configuration['root_sys'].'local/classes/textlib.class.php'); // cli only functions |
|
96 | 96 | if ($options['verbose']) echo "loaded textlib\n"; |
97 | -require_once($_configuration['root_sys'].'local/classes/mootochamlib.php'); // moodle like API |
|
97 | +require_once($_configuration['root_sys'].'local/classes/mootochamlib.php'); // moodle like API |
|
98 | 98 | if ($options['verbose']) echo "loaded moodle wrapping\n"; |
99 | -require_once($_configuration['root_sys'] . '/plugin/vchamilo/lib/vchamilo_plugin.class.php'); |
|
99 | +require_once($_configuration['root_sys'].'/plugin/vchamilo/lib/vchamilo_plugin.class.php'); |
|
100 | 100 | if ($options['verbose']) echo "loaded vchamilo plugin\n"; |
101 | 101 | |
102 | 102 | global $DB; |
@@ -91,25 +91,39 @@ |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | require_once($_configuration['root_sys'].'local/classes/database.class.php'); // cli only functions |
94 | -if ($options['verbose']) echo "loaded dbclass\n"; |
|
94 | +if ($options['verbose']) { |
|
95 | + echo "loaded dbclass\n"; |
|
96 | +} |
|
95 | 97 | require_once($_configuration['root_sys'].'local/classes/textlib.class.php'); // cli only functions |
96 | -if ($options['verbose']) echo "loaded textlib\n"; |
|
98 | +if ($options['verbose']) { |
|
99 | + echo "loaded textlib\n"; |
|
100 | +} |
|
97 | 101 | require_once($_configuration['root_sys'].'local/classes/mootochamlib.php'); // moodle like API |
98 | -if ($options['verbose']) echo "loaded moodle wrapping\n"; |
|
102 | +if ($options['verbose']) { |
|
103 | + echo "loaded moodle wrapping\n"; |
|
104 | +} |
|
99 | 105 | require_once($_configuration['root_sys'] . '/plugin/vchamilo/lib/vchamilo_plugin.class.php'); |
100 | -if ($options['verbose']) echo "loaded vchamilo plugin\n"; |
|
106 | +if ($options['verbose']) { |
|
107 | + echo "loaded vchamilo plugin\n"; |
|
108 | +} |
|
101 | 109 | |
102 | 110 | global $DB; |
103 | -if ($options['verbose']) echo "building database manager\n"; |
|
111 | +if ($options['verbose']) { |
|
112 | + echo "building database manager\n"; |
|
113 | +} |
|
104 | 114 | $DB = new DatabaseManager(); |
105 | -if ($options['verbose']) echo "building plugin vchamilo\n"; |
|
115 | +if ($options['verbose']) { |
|
116 | + echo "building plugin vchamilo\n"; |
|
117 | +} |
|
106 | 118 | $plugininstance = VChamiloPlugin::create(); |
107 | 119 | |
108 | 120 | if (empty($options['nodes'])) { |
109 | 121 | cli_error(get_string('climissingnodes', 'block_vmoodle')); |
110 | 122 | } |
111 | 123 | |
112 | -if ($options['verbose']) echo "parsing nodelist\n"; |
|
124 | +if ($options['verbose']) { |
|
125 | + echo "parsing nodelist\n"; |
|
126 | +} |
|
113 | 127 | $nodes = vchamilo_parse_csv_nodelist($options['nodes'], $plugininstance); |
114 | 128 | |
115 | 129 | if ($options['lint']) { |
@@ -4,7 +4,7 @@ |
||
4 | 4 | */ |
5 | 5 | |
6 | 6 | if (isset($plugin_info['current_region'])) { |
7 | - switch($plugin_info['current_region']) { |
|
7 | + switch ($plugin_info['current_region']) { |
|
8 | 8 | case 'footer_left': |
9 | 9 | echo $plugin_info['settings']['customfooter_footer_left']; |
10 | 10 | break; |
@@ -38,7 +38,7 @@ |
||
38 | 38 | $config = api_get_settings_params(array('subkey = ? ' => 'customfooter', ' AND category = ? ' => 'Plugins')); |
39 | 39 | foreach ($config as $fooid => $configrecord) { |
40 | 40 | $canonic = preg_replace('/^customfooter_/', '', $configrecord['variable']); |
41 | - if (in_array($canonic, array('footer_left', 'footer_right'))){ |
|
41 | + if (in_array($canonic, array('footer_left', 'footer_right'))) { |
|
42 | 42 | $form_settings[$canonic] = $configrecord['selected_value']; |
43 | 43 | } |
44 | 44 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | parent::__construct('1.1', 'Valery Fremaux'); |
27 | 27 | } |
28 | 28 | |
29 | - function pix_url($pixname, $size = 16) { |
|
29 | + function pix_url($pixname, $size = 16) { |
|
30 | 30 | global $_configuration; |
31 | 31 | |
32 | 32 | if (file_exists($_configuration['root_sys'].'/plugin/customplugin/pix/'.$pixname.'.png')){ |
@@ -29,13 +29,13 @@ |
||
29 | 29 | function pix_url($pixname, $size = 16) { |
30 | 30 | global $_configuration; |
31 | 31 | |
32 | - if (file_exists($_configuration['root_sys'].'/plugin/customplugin/pix/'.$pixname.'.png')){ |
|
32 | + if (file_exists($_configuration['root_sys'].'/plugin/customplugin/pix/'.$pixname.'.png')) { |
|
33 | 33 | return $_configuration['root_web'].'/plugin/customplugin/pix/'.$pixname.'.png'; |
34 | 34 | } |
35 | - if (file_exists($_configuration['root_sys'].'/plugin/customplugin/pix/'.$pixname.'.jpg')){ |
|
35 | + if (file_exists($_configuration['root_sys'].'/plugin/customplugin/pix/'.$pixname.'.jpg')) { |
|
36 | 36 | return $_configuration['root_web'].'/plugin/customplugin/pix/'.$pixname.'.jpg'; |
37 | 37 | } |
38 | - if (file_exists($_configuration['root_sys'].'/plugin/customplugin/pix/'.$pixname.'.gif')){ |
|
38 | + if (file_exists($_configuration['root_sys'].'/plugin/customplugin/pix/'.$pixname.'.gif')) { |
|
39 | 39 | return $_configuration['root_web'].'/plugin/customplugin/pix/'.$pixname.'.gif'; |
40 | 40 | } |
41 | 41 | return $_configuration['root_web'].'/main/img/icons/'.$size.'/'.$pixname.'.png'; |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | require_once '../inc/lib/baker.lib.php'; |
10 | 10 | |
11 | 11 | if (!isset($_REQUEST['user'], $_REQUEST['issue'])) { |
12 | - header('Location: ' . api_get_path(WEB_PATH)); |
|
12 | + header('Location: '.api_get_path(WEB_PATH)); |
|
13 | 13 | exit; |
14 | 14 | } |
15 | 15 | |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | Display::return_message(get_lang('NoResults'), 'error') |
25 | 25 | ); |
26 | 26 | |
27 | - header('Location: ' . api_get_path(WEB_PATH)); |
|
27 | + header('Location: '.api_get_path(WEB_PATH)); |
|
28 | 28 | exit; |
29 | 29 | } |
30 | 30 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | Display::return_message(get_lang('NoResults'), 'error') |
34 | 34 | ); |
35 | 35 | |
36 | - header('Location: ' . api_get_path(WEB_PATH)); |
|
36 | + header('Location: '.api_get_path(WEB_PATH)); |
|
37 | 37 | exit; |
38 | 38 | } |
39 | 39 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $entityManager->persist($skillIssue); |
145 | 145 | $entityManager->flush(); |
146 | 146 | |
147 | - header("Location: " . $skillIssue->getIssueUrl()); |
|
147 | + header("Location: ".$skillIssue->getIssueUrl()); |
|
148 | 148 | exit; |
149 | 149 | } |
150 | 150 | |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | $entityManager->persist($skillUserComment); |
176 | 176 | $entityManager->flush(); |
177 | 177 | |
178 | - header("Location: " . $skillIssue->getIssueUrl()); |
|
178 | + header("Location: ".$skillIssue->getIssueUrl()); |
|
179 | 179 | exit; |
180 | 180 | } |
181 | 181 | |
@@ -191,11 +191,11 @@ discard block |
||
191 | 191 | $backpack = $configBackpack; |
192 | 192 | } |
193 | 193 | |
194 | - $htmlHeadXtra[] = '<script src="' . $backpack . 'issuer.js"></script>'; |
|
194 | + $htmlHeadXtra[] = '<script src="'.$backpack.'issuer.js"></script>'; |
|
195 | 195 | $objSkill = new Skill(); |
196 | 196 | $assertionUrl = $skillIssueInfo['badge_asserion'][0]; |
197 | 197 | $skills = $objSkill->get($skillId); |
198 | - $unbakedBadge = api_get_path(SYS_UPLOAD_PATH) . "badges/".$skills['icon']; |
|
198 | + $unbakedBadge = api_get_path(SYS_UPLOAD_PATH)."badges/".$skills['icon']; |
|
199 | 199 | |
200 | 200 | $unbakedBadge = file_get_contents($unbakedBadge); |
201 | 201 | $badgeInfoError = false; |
@@ -210,12 +210,12 @@ discard block |
||
210 | 210 | mkdir($bakedBadge, api_get_permissions_for_new_directories(), true); |
211 | 211 | } |
212 | 212 | $skillRelUserId = $skillIssueInfo['id']; |
213 | - if (!file_exists($bakedBadge . "/badge_" . $skillRelUserId)) { |
|
214 | - file_put_contents($bakedBadge . "/badge_" . $skillRelUserId . ".png", $bakedInfo); |
|
213 | + if (!file_exists($bakedBadge."/badge_".$skillRelUserId)) { |
|
214 | + file_put_contents($bakedBadge."/badge_".$skillRelUserId.".png", $bakedInfo); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | //Process to validate a baked badge |
218 | - $badgeContent = file_get_contents($bakedBadge . "/badge_" . $skillRelUserId . ".png"); |
|
218 | + $badgeContent = file_get_contents($bakedBadge."/badge_".$skillRelUserId.".png"); |
|
219 | 219 | $verifyBakedBadge = $png->extractBadgeInfo($badgeContent); |
220 | 220 | if (!is_array($verifyBakedBadge)) { |
221 | 221 | $badgeInfoError = true; |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | |
224 | 224 | if (!$badgeInfoError) { |
225 | 225 | $personalBadge = UserManager::getUserPathById($userId, "web"); |
226 | - $personalBadge = $personalBadge."badges/badge_" . $skillRelUserId . ".png"; |
|
226 | + $personalBadge = $personalBadge."badges/badge_".$skillRelUserId.".png"; |
|
227 | 227 | } |
228 | 228 | } |
229 | 229 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | |
17 | 17 | $listAction = api_get_self(); |
18 | 18 | |
19 | -$action = ''; |
|
19 | +$action = ''; |
|
20 | 20 | if (isset($_GET['action']) && in_array($_GET['action'], ['add', 'edit', 'delete', 'add_level'])) { |
21 | 21 | $action = $_GET['action']; |
22 | 22 | } |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | } |
50 | 50 | $formToDisplay = $form->returnForm(); |
51 | 51 | |
52 | -$interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin')); |
|
53 | -$interbreadcrumb[] = array ('url' => api_get_self(), 'name' => get_lang('SkillProfile')); |
|
52 | +$interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin')); |
|
53 | +$interbreadcrumb[] = array('url' => api_get_self(), 'name' => get_lang('SkillProfile')); |
|
54 | 54 | |
55 | 55 | $tpl = new Template($action); |
56 | 56 | switch ($action) { |
@@ -5,10 +5,10 @@ |
||
5 | 5 | * @author Angel Fernando Quiroz Campos <[email protected]> |
6 | 6 | * @package chamilo.plugin.tour |
7 | 7 | */ |
8 | -require_once __DIR__ . '/config.php'; |
|
8 | +require_once __DIR__.'/config.php'; |
|
9 | 9 | |
10 | -$pluginPath = api_get_path(SYS_PLUGIN_PATH) . 'tour/'; |
|
11 | -$pluginWebPath = api_get_path(WEB_PLUGIN_PATH) . 'tour/'; |
|
10 | +$pluginPath = api_get_path(SYS_PLUGIN_PATH).'tour/'; |
|
11 | +$pluginWebPath = api_get_path(WEB_PLUGIN_PATH).'tour/'; |
|
12 | 12 | |
13 | 13 | $userId = api_get_user_id(); |
14 | 14 |
@@ -129,8 +129,8 @@ |
||
129 | 129 | */ |
130 | 130 | public function getTourConfig() |
131 | 131 | { |
132 | - $pluginPath = api_get_path(SYS_PLUGIN_PATH) . 'tour/'; |
|
133 | - $jsonContent = file_get_contents($pluginPath . 'config/tour.json'); |
|
132 | + $pluginPath = api_get_path(SYS_PLUGIN_PATH).'tour/'; |
|
133 | + $jsonContent = file_get_contents($pluginPath.'config/tour.json'); |
|
134 | 134 | $jsonData = json_decode($jsonContent, true); |
135 | 135 | |
136 | 136 | return $jsonData; |