@@ -38,8 +38,8 @@ |
||
38 | 38 | $courseSelect = Display::select('course_id', $arrCourseList, 0, array(), false); |
39 | 39 | $courseControl = Display::div($courseSelect, array('class' => 'controls')); |
40 | 40 | |
41 | -$userDiv = Display::div($userLabel . " " . $userControl, array('class' => 'control-group')); |
|
42 | -$courseDiv = Display::div($courseLabel . " " . $courseControl, array('class' => 'control-group')); |
|
41 | +$userDiv = Display::div($userLabel." ".$userControl, array('class' => 'control-group')); |
|
42 | +$courseDiv = Display::div($courseLabel." ".$courseControl, array('class' => 'control-group')); |
|
43 | 43 | echo $userDiv; |
44 | 44 | echo $courseDiv; |
45 | 45 |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | var url = this.href; |
18 | 18 | var dialog = $("#dialog"); |
19 | 19 | if ($("#dialog").length == 0) { |
20 | - dialog = $("' . '<div id="dialog" style="display:hidden"></div>' . '").appendTo("body"); |
|
20 | + dialog = $("' . '<div id="dialog" style="display:hidden"></div>'.'").appendTo("body"); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | // load remote content |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $.ajax({ |
57 | 57 | contentType: "application/x-www-form-urlencoded", |
58 | 58 | beforeSend: function(objeto) { |
59 | - $("div#confirmation").html("<img src=\"' . api_get_path(WEB_LIBRARY_PATH) . 'javascript/indicator.gif\" />"); }, |
|
59 | + $("div#confirmation").html("<img src=\"' . api_get_path(WEB_LIBRARY_PATH).'javascript/indicator.gif\" />"); }, |
|
60 | 60 | type: "POST", |
61 | 61 | url: "update_report.php", |
62 | 62 | data: "work_id="+work_id+"&forum_id="+forum_id+"&rs_id="+rs_id, |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | $course_code = api_get_course_id(); |
96 | 96 | $results = initializeReport($course_code); |
97 | 97 | if (isset($_GET['action'])) { |
98 | - Export::arrayToXls($results['export'], "COURSE_USER_REPORT" . $course_code); |
|
98 | + Export::arrayToXls($results['export'], "COURSE_USER_REPORT".$course_code); |
|
99 | 99 | } else { |
100 | 100 | Display::display_header(); |
101 | 101 | api_protect_course_script(); |
@@ -16,7 +16,7 @@ |
||
16 | 16 | if (!api_is_allowed_to_edit()) { |
17 | 17 | Display::display_error_message($plugin->get_lang("DeniedAccess")); |
18 | 18 | } else { |
19 | - $sql = "UPDATE " . Database::get_main_table('rp_reporte_semanas') . " |
|
19 | + $sql = "UPDATE ".Database::get_main_table('rp_reporte_semanas')." |
|
20 | 20 | SET work_id = '$work_id', forum_id = '$forum_id' |
21 | 21 | WHERE id ='$rs_id'"; |
22 | 22 | Database::query($sql); |
@@ -53,7 +53,7 @@ |
||
53 | 53 | $strings['SrcEmail'] = "Email"; |
54 | 54 | $strings['SrcPhone'] = "Teléfono"; |
55 | 55 | $strings['SrcPresential'] = "Presencial"; |
56 | -$strings['TicketAssignedMsg'] = "<p>Estimado(a) %s </p><p>Se le ha sido asignado el <a href=\"%s\">ticket %s</a></p><p>Mensaje enviado desde el sistema de ticket.</p>"; |
|
56 | +$strings['TicketAssignedMsg'] = "<p>Estimado(a) %s </p><p>Se le ha sido asignado el <a href=\"%s\">ticket %s</a></p><p>Mensaje enviado desde el sistema de ticket.</p>"; |
|
57 | 57 | $strings['TicketAssignX'] = "[TICKETS] Asignación de Ticket #%s "; |
58 | 58 | $strings['AreYouSureYouWantToCloseTheTicket'] = "¿Está seguro que quiere cerrar el ticket?"; |
59 | 59 | $strings['AreYouSureYouWantToUnassignTheTicket'] = "¿Está seguro que quiere desasignarse el ticket?"; |
@@ -38,7 +38,7 @@ |
||
38 | 38 | define('CAT_FORO', 'FOR'); |
39 | 39 | define('CAT_ANNU', 'ANN'); |
40 | 40 | |
41 | -require_once __DIR__ . '/../../main/inc/global.inc.php'; |
|
41 | +require_once __DIR__.'/../../main/inc/global.inc.php'; |
|
42 | 42 | |
43 | -require_once api_get_path(PLUGIN_PATH) . PLUGIN_NAME . '/src/ticket_plugin.class.php'; |
|
44 | -require_once api_get_path(PLUGIN_PATH) . PLUGIN_NAME . '/src/ticket.class.php'; |
|
43 | +require_once api_get_path(PLUGIN_PATH).PLUGIN_NAME.'/src/ticket_plugin.class.php'; |
|
44 | +require_once api_get_path(PLUGIN_PATH).PLUGIN_NAME.'/src/ticket.class.php'; |
@@ -7,15 +7,15 @@ |
||
7 | 7 | * Initialization |
8 | 8 | */ |
9 | 9 | $convert_lang_to_code = array( |
10 | - "english" => "en_US", |
|
11 | - "french" => "fr_BE", |
|
12 | - "dutch" => "nl_NL", |
|
13 | - "german" => "de_DE", |
|
14 | - "japanese" => "ja_JP", |
|
15 | - "danish" => "da_DK", |
|
10 | + "english" => "en_US", |
|
11 | + "french" => "fr_BE", |
|
12 | + "dutch" => "nl_NL", |
|
13 | + "german" => "de_DE", |
|
14 | + "japanese" => "ja_JP", |
|
15 | + "danish" => "da_DK", |
|
16 | 16 | ); |
17 | 17 | if(!empty($_SESSION['user_language_choice']) && !empty($convert_lang_to_code[$_SESSION['user_language_choice']])){ |
18 | - $code = $convert_lang_to_code[$_SESSION['user_language_choice']]; |
|
19 | - $locale = setlocale(LC_TIME,$code); |
|
18 | + $code = $convert_lang_to_code[$_SESSION['user_language_choice']]; |
|
19 | + $locale = setlocale(LC_TIME,$code); |
|
20 | 20 | } |
21 | 21 | $date = strftime('%c'); |
@@ -14,8 +14,8 @@ |
||
14 | 14 | "japanese" => "ja_JP", |
15 | 15 | "danish" => "da_DK", |
16 | 16 | ); |
17 | -if(!empty($_SESSION['user_language_choice']) && !empty($convert_lang_to_code[$_SESSION['user_language_choice']])){ |
|
17 | +if (!empty($_SESSION['user_language_choice']) && !empty($convert_lang_to_code[$_SESSION['user_language_choice']])) { |
|
18 | 18 | $code = $convert_lang_to_code[$_SESSION['user_language_choice']]; |
19 | - $locale = setlocale(LC_TIME,$code); |
|
19 | + $locale = setlocale(LC_TIME, $code); |
|
20 | 20 | } |
21 | 21 | $date = strftime('%c'); |
@@ -9,10 +9,10 @@ |
||
9 | 9 | * Plugin details (must be present) |
10 | 10 | */ |
11 | 11 | //the plugin title |
12 | -$plugin_info['title']='Date'; |
|
12 | +$plugin_info['title'] = 'Date'; |
|
13 | 13 | //the comments that go with the plugin |
14 | -$plugin_info['comment']="Multinational date display"; |
|
14 | +$plugin_info['comment'] = "Multinational date display"; |
|
15 | 15 | //the plugin version |
16 | -$plugin_info['version']='1.0'; |
|
16 | +$plugin_info['version'] = '1.0'; |
|
17 | 17 | //the plugin author |
18 | -$plugin_info['author']='Yannick Warnier'; |
|
18 | +$plugin_info['author'] = 'Yannick Warnier'; |
@@ -33,7 +33,7 @@ |
||
33 | 33 | $list = $this->get_blacklist_options(); |
34 | 34 | foreach ($list as $k => $v) { |
35 | 35 | $this->course_settings[] = |
36 | - array('group'=> 'olpc_peru_filter_filter', 'name' => $k, 'type' => 'checkbox', 'init_value' => $v); |
|
36 | + array('group'=> 'olpc_peru_filter_filter', 'name' => $k, 'type' => 'checkbox', 'init_value' => $v); |
|
37 | 37 | } |
38 | 38 | require_once dirname(__FILE__).'/../config.php'; |
39 | 39 | if (!empty($blacklist_enabled_file)) { |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $list = $this->get_blacklist_options(); |
34 | 34 | foreach ($list as $k => $v) { |
35 | 35 | $this->course_settings[] = |
36 | - array('group'=> 'olpc_peru_filter_filter', 'name' => $k, 'type' => 'checkbox', 'init_value' => $v); |
|
36 | + array('group'=> 'olpc_peru_filter_filter', 'name' => $k, 'type' => 'checkbox', 'init_value' => $v); |
|
37 | 37 | } |
38 | 38 | require_once dirname(__FILE__).'/../config.php'; |
39 | 39 | if (!empty($blacklist_enabled_file)) { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | |
67 | 67 | function course_settings_updated($values = array()) { |
68 | - if (!is_array($values) or count($values)==0) { |
|
68 | + if (!is_array($values) or count($values) == 0) { |
|
69 | 69 | return false; |
70 | 70 | } |
71 | 71 | $this->set_blacklist_options($values['olpc_peru_filter_filter']); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | } |
87 | 87 | $list = scandir($this->blacklists_dir); |
88 | 88 | foreach ($list as $file) { |
89 | - if (substr($file,0,1) == '.' or $file == 'custom_blacklist' or is_dir($this->blacklists_dir.'/'.$file)) { |
|
89 | + if (substr($file, 0, 1) == '.' or $file == 'custom_blacklist' or is_dir($this->blacklists_dir.'/'.$file)) { |
|
90 | 90 | continue; |
91 | 91 | } |
92 | 92 | $categories[] = $file; |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $new_blacklist .= $k."\n"; |
122 | 122 | } |
123 | 123 | } |
124 | - $r = @file_put_contents($this->blacklist_enabled_file,$new_blacklist); |
|
124 | + $r = @file_put_contents($this->blacklist_enabled_file, $new_blacklist); |
|
125 | 125 | //todo check the value or $r in $php_errormsg |
126 | 126 | return true; |
127 | 127 | } |
@@ -7,7 +7,7 @@ |
||
7 | 7 | * @package chamilo.plugin.clockworksms |
8 | 8 | * @author Imanol Losada <[email protected]> |
9 | 9 | */ |
10 | -require_once __DIR__ . '/../../main/inc/global.inc.php'; |
|
10 | +require_once __DIR__.'/../../main/inc/global.inc.php'; |
|
11 | 11 | |
12 | 12 | require_once 'lib/clockworksms.lib.php'; |
13 | 13 | require_once 'vendor/clockworksms_api.php'; |