@@ -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'; |
@@ -20,8 +20,8 @@ |
||
20 | 20 | */ |
21 | 21 | class ClockworkException extends Exception { |
22 | 22 | |
23 | - public function __construct( $message, $code = 0 ) { |
|
23 | + public function __construct($message, $code = 0) { |
|
24 | 24 | // make sure everything is assigned properly |
25 | - parent::__construct( $message, $code ); |
|
25 | + parent::__construct($message, $code); |
|
26 | 26 | } |
27 | 27 | } |
@@ -6,7 +6,7 @@ |
||
6 | 6 | * @author Laurent Opprecht |
7 | 7 | */ |
8 | 8 | |
9 | -require_once api_get_path(LIBRARY_PATH) . 'plugin.class.php'; |
|
10 | -require_once dirname(__FILE__) . '/lib/static_plugin.class.php'; |
|
9 | +require_once api_get_path(LIBRARY_PATH).'plugin.class.php'; |
|
10 | +require_once dirname(__FILE__).'/lib/static_plugin.class.php'; |
|
11 | 11 | |
12 | 12 | $plugin_info = StaticPlugin::create()->get_info(); |
13 | 13 | \ No newline at end of file |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -require_once dirname(__FILE__) . '/lib/search_course_widget.class.php'; |
|
3 | +require_once dirname(__FILE__).'/lib/search_course_widget.class.php'; |
|
4 | 4 | $widget = new SearchCourseWidget(); |
5 | 5 | $widget->run(); |
@@ -5,7 +5,7 @@ |
||
5 | 5 | * @author Laurent Opprecht |
6 | 6 | */ |
7 | 7 | |
8 | -require_once api_get_path(LIBRARY_PATH) . 'plugin.class.php'; |
|
9 | -require_once dirname(__FILE__) . '/lib/search_course_plugin.class.php'; |
|
8 | +require_once api_get_path(LIBRARY_PATH).'plugin.class.php'; |
|
9 | +require_once dirname(__FILE__).'/lib/search_course_plugin.class.php'; |
|
10 | 10 | |
11 | 11 | $plugin_info = SearchCoursePlugin::create()->get_info(); |
12 | 12 | \ No newline at end of file |
@@ -1,20 +1,20 @@ |
||
1 | 1 | <?php |
2 | 2 | // Show the CAS button to logout to your CAS session |
3 | 3 | global $_user; |
4 | -$_template['show_message'] = false; |
|
4 | +$_template['show_message'] = false; |
|
5 | 5 | |
6 | 6 | if (!api_is_anonymous() && |
7 | 7 | api_get_setting('cas_activate') == 'true' && |
8 | 8 | $_user['auth_source'] == CAS_AUTH_SOURCE |
9 | 9 | ) { |
10 | - $_template['show_message'] = true; |
|
10 | + $_template['show_message'] = true; |
|
11 | 11 | // the default title |
12 | 12 | $logout_label = "Deconnexion de CAS"; |
13 | 13 | if (!empty($plugin_info['settings']['add_cas_logout_button_cas_logout_label'])) { |
14 | 14 | $logout_label = api_htmlentities($plugin_info['settings']['add_cas_logout_button_cas_logout_label']); |
15 | 15 | } |
16 | 16 | // the comm |
17 | - $logout_comment = api_htmlentities($plugin_info['settings']['add_cas_logout_button_cas_logout_comment']);; |
|
17 | + $logout_comment = api_htmlentities($plugin_info['settings']['add_cas_logout_button_cas_logout_comment']); ; |
|
18 | 18 | // URL of the image |
19 | 19 | $logout_image_url = $plugin_info['settings']['add_cas_logout_button_cas_logout_image_url']; |
20 | 20 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | //the plugin title |
13 | -$plugin_info['title'] = 'Add a button to logout from CAS'; |
|
13 | +$plugin_info['title'] = 'Add a button to logout from CAS'; |
|
14 | 14 | |
15 | 15 | //the comments that go with the plugin |
16 | 16 | $plugin_info['comment'] = "If CAS is activated, this plugin add a text and a button on the user page to logout from a CAS session. Configure plugin to add title, comment and logo."; |
@@ -36,4 +36,4 @@ discard block |
||
36 | 36 | $plugin_info['settings_form'] = $form; |
37 | 37 | |
38 | 38 | // Set the templates that are going to be used |
39 | -$plugin_info['templates'] = array('template.tpl'); |
|
39 | +$plugin_info['templates'] = array('template.tpl'); |
@@ -61,7 +61,7 @@ |
||
61 | 61 | if (!isset($_GET['id'])) { |
62 | 62 | if (api_get_setting('allow_social_tool') == 'true') { |
63 | 63 | if (!api_is_anonymous()) { |
64 | - $query = isset($_GET['q']) ? $_GET['q']: null; |
|
64 | + $query = isset($_GET['q']) ? $_GET['q'] : null; |
|
65 | 65 | $social_search = UserManager::get_search_form($query); |
66 | 66 | } |
67 | 67 | } |