@@ -16,7 +16,7 @@ |
||
16 | 16 | */ |
17 | 17 | public function up(Schema $schema) |
18 | 18 | { |
19 | - $this->addSql('ALTER TABLE session ADD COLUMN access_start_date datetime'); |
|
19 | + $this->addSql('ALTER TABLE session ADD COLUMN access_start_date datetime'); |
|
20 | 20 | $this->addSql('ALTER TABLE session ADD COLUMN access_end_date datetime'); |
21 | 21 | $this->addSql('ALTER TABLE session ADD COLUMN coach_access_start_date datetime'); |
22 | 22 | $this->addSql('ALTER TABLE session ADD COLUMN coach_access_end_date datetime'); |
@@ -19,11 +19,11 @@ |
||
19 | 19 | |
20 | 20 | // Replacing user photos |
21 | 21 | define('KEEP_THE_NAME_WHEN_CHANGE_IMAGE', true); |
22 | - // true -> the new image have the name of previous. |
|
23 | - // false -> a new name is build for each upladed image. |
|
22 | + // true -> the new image have the name of previous. |
|
23 | + // false -> a new name is build for each upladed image. |
|
24 | 24 | define('KEEP_THE_OLD_IMAGE_AFTER_CHANGE', true); |
25 | - // true -> if KEEP_THE_NAME_WHEN_CHANGE_IMAGE is true, the previous image is rename before. |
|
26 | - // false -> only the last image still on server. |
|
25 | + // true -> if KEEP_THE_NAME_WHEN_CHANGE_IMAGE is true, the previous image is rename before. |
|
26 | + // false -> only the last image still on server. |
|
27 | 27 | |
28 | 28 | // Official code |
29 | 29 | // Don't forget to change name of offical code in your organization |
@@ -39,29 +39,29 @@ |
||
39 | 39 | * Array of connection parameters |
40 | 40 | **/ |
41 | 41 | $extldap_config = array( |
42 | - //base dommain string |
|
43 | - 'base_dn' => 'DC=cblue,DC=be', |
|
44 | - //admin distinguished name |
|
45 | - 'admin_dn' => 'CN=admin,dc=cblue,dc=be', |
|
46 | - //admin password |
|
47 | - 'admin_password' => 'pass', |
|
48 | - //ldap host |
|
49 | - 'host' => array('1.2.3.4', '2.3.4.5', '3.4.5.6'), |
|
50 | - // filter |
|
42 | + //base dommain string |
|
43 | + 'base_dn' => 'DC=cblue,DC=be', |
|
44 | + //admin distinguished name |
|
45 | + 'admin_dn' => 'CN=admin,dc=cblue,dc=be', |
|
46 | + //admin password |
|
47 | + 'admin_password' => 'pass', |
|
48 | + //ldap host |
|
49 | + 'host' => array('1.2.3.4', '2.3.4.5', '3.4.5.6'), |
|
50 | + // filter |
|
51 | 51 | // 'filter' => '', // no () arround the string |
52 | - //'port' => , default on 389 |
|
53 | - //protocl version (2 or 3) |
|
54 | - 'protocol_version' => 3, |
|
55 | - // set this to 0 to connect to AD server |
|
56 | - 'referrals' => 0, |
|
57 | - //String used to search the user in ldap. %username will ber replaced by the username. |
|
58 | - //See extldap_get_user_search_string() function below |
|
52 | + //'port' => , default on 389 |
|
53 | + //protocl version (2 or 3) |
|
54 | + 'protocol_version' => 3, |
|
55 | + // set this to 0 to connect to AD server |
|
56 | + 'referrals' => 0, |
|
57 | + //String used to search the user in ldap. %username will ber replaced by the username. |
|
58 | + //See extldap_get_user_search_string() function below |
|
59 | 59 | // 'user_search' => 'sAMAccountName=%username%', // no () arround the string |
60 | - 'user_search' => 'uid=%username%', // no () arround the string |
|
61 | - //encoding used in ldap (most common are UTF-8 and ISO-8859-1 |
|
62 | - 'encoding' => 'UTF-8', |
|
63 | - //Set to true if user info have to be update at each login |
|
64 | - 'update_userinfo' => true |
|
60 | + 'user_search' => 'uid=%username%', // no () arround the string |
|
61 | + //encoding used in ldap (most common are UTF-8 and ISO-8859-1 |
|
62 | + 'encoding' => 'UTF-8', |
|
63 | + //Set to true if user info have to be update at each login |
|
64 | + 'update_userinfo' => true |
|
65 | 65 | ); |
66 | 66 | |
67 | 67 |
@@ -188,7 +188,7 @@ |
||
188 | 188 | |
189 | 189 | //Show the chamilo mascot |
190 | 190 | if (empty($courseAndSessions['html']) && !isset($_GET['history'])) { |
191 | - $controller->tpl->assign('welcome_to_course_block', $controller->return_welcome_to_course_block()); |
|
191 | + $controller->tpl->assign('welcome_to_course_block', $controller->return_welcome_to_course_block()); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | $controller->tpl->assign('content', $courseAndSessions['html']); |
@@ -7,7 +7,7 @@ |
||
7 | 7 | |
8 | 8 | $actions = ''; |
9 | 9 | if (api_is_platform_admin()) { |
10 | - $actions = '<a href="'.api_get_path(WEB_PATH).'main/admin/system_announcements.php">'. |
|
10 | + $actions = '<a href="'.api_get_path(WEB_PATH).'main/admin/system_announcements.php">'. |
|
11 | 11 | Display::return_icon('edit.png', get_lang('EditSystemAnnouncement'), array(), 32).'</a>'; |
12 | 12 | } |
13 | 13 |
@@ -16,70 +16,70 @@ |
||
16 | 16 | * Main entry point for parsing XRDS documents |
17 | 17 | */ |
18 | 18 | function xrds_parse($xml) { |
19 | - global $xrds_services; |
|
19 | + global $xrds_services; |
|
20 | 20 | |
21 | - $parser = xml_parser_create_ns(); |
|
22 | - xml_set_element_handler($parser, '_xrds_element_start', '_xrds_element_end'); |
|
23 | - xml_set_character_data_handler($parser, '_xrds_cdata'); |
|
21 | + $parser = xml_parser_create_ns(); |
|
22 | + xml_set_element_handler($parser, '_xrds_element_start', '_xrds_element_end'); |
|
23 | + xml_set_character_data_handler($parser, '_xrds_cdata'); |
|
24 | 24 | |
25 | - xml_parse($parser, $xml); |
|
26 | - xml_parser_free($parser); |
|
25 | + xml_parse($parser, $xml); |
|
26 | + xml_parser_free($parser); |
|
27 | 27 | |
28 | - return $xrds_services; |
|
28 | + return $xrds_services; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
32 | 32 | * Parser callback functions |
33 | 33 | */ |
34 | 34 | function _xrds_element_start(&$parser, $name, $attribs) { |
35 | - global $xrds_open_elements; |
|
35 | + global $xrds_open_elements; |
|
36 | 36 | |
37 | - $xrds_open_elements[] = _xrds_strip_namespace($name); |
|
37 | + $xrds_open_elements[] = _xrds_strip_namespace($name); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | function _xrds_element_end(&$parser, $name) { |
41 | - global $xrds_open_elements, $xrds_services, $xrds_current_service; |
|
41 | + global $xrds_open_elements, $xrds_services, $xrds_current_service; |
|
42 | 42 | |
43 | - $name = _xrds_strip_namespace($name); |
|
44 | - if ($name == 'SERVICE') { |
|
43 | + $name = _xrds_strip_namespace($name); |
|
44 | + if ($name == 'SERVICE') { |
|
45 | 45 | if (in_array(OPENID_NS_2_0 .'/signon', $xrds_current_service['types']) || |
46 | 46 | in_array(OPENID_NS_2_0 .'/server', $xrds_current_service['types'])) { |
47 | - $xrds_current_service['version'] = 2; |
|
47 | + $xrds_current_service['version'] = 2; |
|
48 | 48 | } |
49 | 49 | elseif (in_array(OPENID_NS_1_1, $xrds_current_service['types']) || |
50 | 50 | in_array(OPENID_NS_1_0, $xrds_current_service['types'])) { |
51 | - $xrds_current_service['version'] = 1; |
|
51 | + $xrds_current_service['version'] = 1; |
|
52 | 52 | } |
53 | 53 | if (!empty($xrds_current_service['version'])) { |
54 | - $xrds_services[] = $xrds_current_service; |
|
54 | + $xrds_services[] = $xrds_current_service; |
|
55 | 55 | } |
56 | 56 | $xrds_current_service = array(); |
57 | - } |
|
58 | - array_pop($xrds_open_elements); |
|
57 | + } |
|
58 | + array_pop($xrds_open_elements); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | function _xrds_cdata(&$parser, $data) { |
62 | - global $xrds_open_elements, $xrds_services, $xrds_current_service; |
|
63 | - $path = strtoupper(implode('/', $xrds_open_elements)); |
|
64 | - switch ($path) { |
|
62 | + global $xrds_open_elements, $xrds_services, $xrds_current_service; |
|
63 | + $path = strtoupper(implode('/', $xrds_open_elements)); |
|
64 | + switch ($path) { |
|
65 | 65 | case 'XRDS/XRD/SERVICE/TYPE': |
66 | 66 | $xrds_current_service['types'][] = $data; |
67 | - break; |
|
67 | + break; |
|
68 | 68 | case 'XRDS/XRD/SERVICE/URI': |
69 | 69 | $xrds_current_service['uri'] = $data; |
70 | - break; |
|
70 | + break; |
|
71 | 71 | case 'XRDS/XRD/SERVICE/DELEGATE': |
72 | 72 | $xrds_current_service['delegate'] = $data; |
73 | - break; |
|
74 | - } |
|
73 | + break; |
|
74 | + } |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | function _xrds_strip_namespace($name) { |
78 | - // Strip namespacing. |
|
79 | - $pos = strrpos($name, ':'); |
|
80 | - if ($pos !== FALSE) { |
|
78 | + // Strip namespacing. |
|
79 | + $pos = strrpos($name, ':'); |
|
80 | + if ($pos !== FALSE) { |
|
81 | 81 | $name = substr($name, $pos + 1, strlen($name)); |
82 | - } |
|
82 | + } |
|
83 | 83 | |
84 | - return $name; |
|
84 | + return $name; |
|
85 | 85 | } |
@@ -684,7 +684,7 @@ |
||
684 | 684 | |
685 | 685 | foreach ($user_data as $key => $value) { |
686 | 686 | if (substr($key, 0, 6) == 'extra_') { //an extra field |
687 | - continue; |
|
687 | + continue; |
|
688 | 688 | } elseif (strpos($key, 'remove_extra_') !== false) { |
689 | 689 | } else { |
690 | 690 | if (in_array($key, $available_values_to_modify)) { |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | * |
15 | 15 | **/ |
16 | 16 | function cas_configured() { |
17 | - global $cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri; |
|
17 | + global $cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri; |
|
18 | 18 | $res = false; |
19 | 19 | if (!empty($cas_auth_ver) && !empty($cas_auth_server) && !empty($cas_auth_port)) { |
20 | 20 | $res = true; |
@@ -32,23 +32,23 @@ discard block |
||
32 | 32 | |
33 | 33 | function cas_is_authenticated() |
34 | 34 | { |
35 | - global $cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri; |
|
36 | - global $PHPCAS_CLIENT; |
|
37 | - global $logout; |
|
35 | + global $cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri; |
|
36 | + global $PHPCAS_CLIENT; |
|
37 | + global $logout; |
|
38 | 38 | |
39 | 39 | if (!cas_configured()) { |
40 | 40 | return; |
41 | 41 | } |
42 | 42 | |
43 | - if (!is_object($PHPCAS_CLIENT)) { |
|
44 | - phpCAS::client($cas_auth_ver,$cas_auth_server,$cas_auth_port,$cas_auth_uri); |
|
45 | - phpCAS::setNoCasServerValidation(); |
|
46 | - } |
|
47 | - $auth = phpCAS::checkAuthentication(); |
|
43 | + if (!is_object($PHPCAS_CLIENT)) { |
|
44 | + phpCAS::client($cas_auth_ver,$cas_auth_server,$cas_auth_port,$cas_auth_uri); |
|
45 | + phpCAS::setNoCasServerValidation(); |
|
46 | + } |
|
47 | + $auth = phpCAS::checkAuthentication(); |
|
48 | 48 | |
49 | - if ($auth) { |
|
50 | - $login= trim(phpCAS::getUser()); |
|
51 | - /* |
|
49 | + if ($auth) { |
|
50 | + $login= trim(phpCAS::getUser()); |
|
51 | + /* |
|
52 | 52 | Get user attributes. Here are the attributes for crdp platform |
53 | 53 | sn => name |
54 | 54 | ENTPersonMailInterne => mail |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | ENTPersonProfils => profil |
57 | 57 | givenName => first name |
58 | 58 | */ |
59 | - /*$user=phpCAS::getAttributes(); |
|
59 | + /*$user=phpCAS::getAttributes(); |
|
60 | 60 | $firstName = trim($user['givenName']); |
61 | 61 | $lastName = trim($user['sn']); |
62 | 62 | $login = trim($user['ENTPersonAlias']); |
@@ -79,54 +79,54 @@ discard block |
||
79 | 79 | default: |
80 | 80 | $status=5; // Student |
81 | 81 | }*/ |
82 | - if (!$logout){ |
|
83 | - // get user info from username |
|
84 | - $tab_user_info = api_get_user_info($login); |
|
85 | - |
|
86 | - // user found in the chamilo database |
|
87 | - if (is_array($tab_user_info)) { |
|
88 | - // if option is on we update user automatically from ldap server |
|
89 | - if (api_get_setting("update_user_info_cas_with_ldap") == "true") { |
|
82 | + if (!$logout){ |
|
83 | + // get user info from username |
|
84 | + $tab_user_info = api_get_user_info($login); |
|
85 | + |
|
86 | + // user found in the chamilo database |
|
87 | + if (is_array($tab_user_info)) { |
|
88 | + // if option is on we update user automatically from ldap server |
|
89 | + if (api_get_setting("update_user_info_cas_with_ldap") == "true") { |
|
90 | 90 | $ldapuser = extldap_authenticate($login, 'nopass', true); |
91 | 91 | if ($ldapuser !== false) { |
92 | 92 | $chamilo_user = extldap_get_chamilo_user($ldapuser); |
93 | 93 | $chamilo_user['user_id'] = $tab_user_info['user_id']; |
94 | 94 | $chamilo_user['status'] = $tab_user_info['status']; |
95 | - UserManager::update_user ($chamilo_user["user_id"], $chamilo_user["firstname"], $chamilo_user["lastname"], $login, null, null, $chamilo_user["email"], $chamilo_user["status"], '', '', '', '', 1, null, 0, null,'') ; |
|
96 | - } |
|
97 | - } |
|
98 | - return $login; |
|
99 | - } |
|
100 | - // user not found |
|
101 | - else { |
|
102 | - // if option is on we can ADD user automatically from ldap server or by modify own profil |
|
103 | - $user_added = false; |
|
104 | - switch (api_get_setting("cas_add_user_activate")) { |
|
105 | - case PLATFORM_AUTH_SOURCE : |
|
106 | - // user will have to modify firstname, lastname, email in chamilo profil edit |
|
107 | - $userdata = get_lang("EditInProfil"); |
|
108 | - UserManager::create_user($userdata, $userdata, '5', $userdata, $login, 'casplaceholder', '','','','',CAS_AUTH_SOURCE); |
|
109 | - $user_added = $login; |
|
110 | - break; |
|
111 | - case LDAP_AUTH_SOURCE : |
|
112 | - // user info are read from ldap connexion |
|
113 | - // get user info from ldap server |
|
114 | - // user has already been authenticated by CAS |
|
115 | - // If user not found in LDAP, user not created |
|
116 | - $ldapuser = extldap_authenticate($login, 'nopass', true); |
|
117 | - if ($ldapuser !== false) { |
|
118 | - $chamilo_user = extldap_get_chamilo_user($ldapuser); |
|
95 | + UserManager::update_user ($chamilo_user["user_id"], $chamilo_user["firstname"], $chamilo_user["lastname"], $login, null, null, $chamilo_user["email"], $chamilo_user["status"], '', '', '', '', 1, null, 0, null,'') ; |
|
96 | + } |
|
97 | + } |
|
98 | + return $login; |
|
99 | + } |
|
100 | + // user not found |
|
101 | + else { |
|
102 | + // if option is on we can ADD user automatically from ldap server or by modify own profil |
|
103 | + $user_added = false; |
|
104 | + switch (api_get_setting("cas_add_user_activate")) { |
|
105 | + case PLATFORM_AUTH_SOURCE : |
|
106 | + // user will have to modify firstname, lastname, email in chamilo profil edit |
|
107 | + $userdata = get_lang("EditInProfil"); |
|
108 | + UserManager::create_user($userdata, $userdata, '5', $userdata, $login, 'casplaceholder', '','','','',CAS_AUTH_SOURCE); |
|
109 | + $user_added = $login; |
|
110 | + break; |
|
111 | + case LDAP_AUTH_SOURCE : |
|
112 | + // user info are read from ldap connexion |
|
113 | + // get user info from ldap server |
|
114 | + // user has already been authenticated by CAS |
|
115 | + // If user not found in LDAP, user not created |
|
116 | + $ldapuser = extldap_authenticate($login, 'nopass', true); |
|
117 | + if ($ldapuser !== false) { |
|
118 | + $chamilo_user = extldap_get_chamilo_user($ldapuser); |
|
119 | 119 | $chamilo_user['username'] = $login; |
120 | 120 | $chamilo_user['auth_source'] = CAS_AUTH_SOURCE; |
121 | 121 | $chamilo_uid = external_add_user($chamilo_user); |
122 | - $user_added = $login; |
|
123 | - } |
|
124 | - break; |
|
125 | - default : break; |
|
126 | - } |
|
127 | - return $user_added; |
|
128 | - } |
|
129 | - } |
|
122 | + $user_added = $login; |
|
123 | + } |
|
124 | + break; |
|
125 | + default : break; |
|
126 | + } |
|
127 | + return $user_added; |
|
128 | + } |
|
129 | + } |
|
130 | 130 | // //If the user is in the dokeos database and we are ,not in a logout request, we upgrade his infomration by ldap |
131 | 131 | // if (! $logout){ |
132 | 132 | // $user_table = Database::get_main_table(TABLE_MAIN_USER); |
@@ -148,10 +148,10 @@ discard block |
||
148 | 148 | // |
149 | 149 | // } |
150 | 150 | // } |
151 | - return $login; |
|
151 | + return $login; |
|
152 | 152 | } else { |
153 | - return false; |
|
154 | - } |
|
153 | + return false; |
|
154 | + } |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | /** |
@@ -44,167 +44,167 @@ |
||
44 | 44 | |
45 | 45 | class PGTStorage |
46 | 46 | { |
47 | - /** |
|
48 | - * @addtogroup internalPGTStorage |
|
49 | - * @{ |
|
50 | - */ |
|
51 | - |
|
52 | - // ######################################################################## |
|
53 | - // CONSTRUCTOR |
|
54 | - // ######################################################################## |
|
47 | + /** |
|
48 | + * @addtogroup internalPGTStorage |
|
49 | + * @{ |
|
50 | + */ |
|
51 | + |
|
52 | + // ######################################################################## |
|
53 | + // CONSTRUCTOR |
|
54 | + // ######################################################################## |
|
55 | 55 | |
56 | - /** |
|
57 | - * The constructor of the class, should be called only by inherited classes. |
|
58 | - * |
|
59 | - * @param $cas_parent the CASclient instance that creates the current object. |
|
60 | - * |
|
61 | - * @protected |
|
62 | - */ |
|
63 | - function PGTStorage($cas_parent) |
|
56 | + /** |
|
57 | + * The constructor of the class, should be called only by inherited classes. |
|
58 | + * |
|
59 | + * @param $cas_parent the CASclient instance that creates the current object. |
|
60 | + * |
|
61 | + * @protected |
|
62 | + */ |
|
63 | + function PGTStorage($cas_parent) |
|
64 | 64 | { |
65 | - phpCAS::traceBegin(); |
|
66 | - if ( !$cas_parent->isProxy() ) { |
|
67 | - phpCAS::error('defining PGT storage makes no sense when not using a CAS proxy'); |
|
68 | - } |
|
69 | - phpCAS::traceEnd(); |
|
65 | + phpCAS::traceBegin(); |
|
66 | + if ( !$cas_parent->isProxy() ) { |
|
67 | + phpCAS::error('defining PGT storage makes no sense when not using a CAS proxy'); |
|
68 | + } |
|
69 | + phpCAS::traceEnd(); |
|
70 | 70 | } |
71 | 71 | |
72 | - // ######################################################################## |
|
73 | - // DEBUGGING |
|
74 | - // ######################################################################## |
|
72 | + // ######################################################################## |
|
73 | + // DEBUGGING |
|
74 | + // ######################################################################## |
|
75 | 75 | |
76 | - /** |
|
77 | - * This virtual method returns an informational string giving the type of storage |
|
78 | - * used by the object (used for debugging purposes). |
|
79 | - * |
|
80 | - * @public |
|
81 | - */ |
|
82 | - function getStorageType() |
|
76 | + /** |
|
77 | + * This virtual method returns an informational string giving the type of storage |
|
78 | + * used by the object (used for debugging purposes). |
|
79 | + * |
|
80 | + * @public |
|
81 | + */ |
|
82 | + function getStorageType() |
|
83 | 83 | { |
84 | - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); |
|
84 | + phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); |
|
85 | 85 | } |
86 | 86 | |
87 | - /** |
|
88 | - * This virtual method returns an informational string giving informations on the |
|
89 | - * parameters of the storage.(used for debugging purposes). |
|
90 | - * |
|
91 | - * @public |
|
92 | - */ |
|
93 | - function getStorageInfo() |
|
87 | + /** |
|
88 | + * This virtual method returns an informational string giving informations on the |
|
89 | + * parameters of the storage.(used for debugging purposes). |
|
90 | + * |
|
91 | + * @public |
|
92 | + */ |
|
93 | + function getStorageInfo() |
|
94 | 94 | { |
95 | - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); |
|
95 | + phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); |
|
96 | 96 | } |
97 | 97 | |
98 | - // ######################################################################## |
|
99 | - // ERROR HANDLING |
|
100 | - // ######################################################################## |
|
98 | + // ######################################################################## |
|
99 | + // ERROR HANDLING |
|
100 | + // ######################################################################## |
|
101 | 101 | |
102 | - /** |
|
103 | - * string used to store an error message. Written by PGTStorage::setErrorMessage(), |
|
104 | - * read by PGTStorage::getErrorMessage(). |
|
105 | - * |
|
106 | - * @hideinitializer |
|
107 | - * @private |
|
108 | - * @deprecated not used. |
|
109 | - */ |
|
110 | - var $_error_message=FALSE; |
|
111 | - |
|
112 | - /** |
|
113 | - * This method sets en error message, which can be read later by |
|
114 | - * PGTStorage::getErrorMessage(). |
|
115 | - * |
|
116 | - * @param $error_message an error message |
|
117 | - * |
|
118 | - * @protected |
|
119 | - * @deprecated not used. |
|
120 | - */ |
|
121 | - function setErrorMessage($error_message) |
|
102 | + /** |
|
103 | + * string used to store an error message. Written by PGTStorage::setErrorMessage(), |
|
104 | + * read by PGTStorage::getErrorMessage(). |
|
105 | + * |
|
106 | + * @hideinitializer |
|
107 | + * @private |
|
108 | + * @deprecated not used. |
|
109 | + */ |
|
110 | + var $_error_message=FALSE; |
|
111 | + |
|
112 | + /** |
|
113 | + * This method sets en error message, which can be read later by |
|
114 | + * PGTStorage::getErrorMessage(). |
|
115 | + * |
|
116 | + * @param $error_message an error message |
|
117 | + * |
|
118 | + * @protected |
|
119 | + * @deprecated not used. |
|
120 | + */ |
|
121 | + function setErrorMessage($error_message) |
|
122 | 122 | { |
123 | - $this->_error_message = $error_message; |
|
123 | + $this->_error_message = $error_message; |
|
124 | 124 | } |
125 | 125 | |
126 | - /** |
|
127 | - * This method returns an error message set by PGTStorage::setErrorMessage(). |
|
128 | - * |
|
129 | - * @return an error message when set by PGTStorage::setErrorMessage(), FALSE |
|
130 | - * otherwise. |
|
131 | - * |
|
132 | - * @public |
|
133 | - * @deprecated not used. |
|
134 | - */ |
|
135 | - function getErrorMessage() |
|
126 | + /** |
|
127 | + * This method returns an error message set by PGTStorage::setErrorMessage(). |
|
128 | + * |
|
129 | + * @return an error message when set by PGTStorage::setErrorMessage(), FALSE |
|
130 | + * otherwise. |
|
131 | + * |
|
132 | + * @public |
|
133 | + * @deprecated not used. |
|
134 | + */ |
|
135 | + function getErrorMessage() |
|
136 | 136 | { |
137 | - return $this->_error_message; |
|
137 | + return $this->_error_message; |
|
138 | 138 | } |
139 | 139 | |
140 | - // ######################################################################## |
|
141 | - // INITIALIZATION |
|
142 | - // ######################################################################## |
|
143 | - |
|
144 | - /** |
|
145 | - * a boolean telling if the storage has already been initialized. Written by |
|
146 | - * PGTStorage::init(), read by PGTStorage::isInitialized(). |
|
147 | - * |
|
148 | - * @hideinitializer |
|
149 | - * @private |
|
150 | - */ |
|
151 | - var $_initialized = FALSE; |
|
152 | - |
|
153 | - /** |
|
154 | - * This method tells if the storage has already been intialized. |
|
155 | - * |
|
156 | - * @return a boolean |
|
157 | - * |
|
158 | - * @protected |
|
159 | - */ |
|
160 | - function isInitialized() |
|
140 | + // ######################################################################## |
|
141 | + // INITIALIZATION |
|
142 | + // ######################################################################## |
|
143 | + |
|
144 | + /** |
|
145 | + * a boolean telling if the storage has already been initialized. Written by |
|
146 | + * PGTStorage::init(), read by PGTStorage::isInitialized(). |
|
147 | + * |
|
148 | + * @hideinitializer |
|
149 | + * @private |
|
150 | + */ |
|
151 | + var $_initialized = FALSE; |
|
152 | + |
|
153 | + /** |
|
154 | + * This method tells if the storage has already been intialized. |
|
155 | + * |
|
156 | + * @return a boolean |
|
157 | + * |
|
158 | + * @protected |
|
159 | + */ |
|
160 | + function isInitialized() |
|
161 | 161 | { |
162 | - return $this->_initialized; |
|
162 | + return $this->_initialized; |
|
163 | 163 | } |
164 | 164 | |
165 | - /** |
|
166 | - * This virtual method initializes the object. |
|
167 | - * |
|
168 | - * @protected |
|
169 | - */ |
|
170 | - function init() |
|
165 | + /** |
|
166 | + * This virtual method initializes the object. |
|
167 | + * |
|
168 | + * @protected |
|
169 | + */ |
|
170 | + function init() |
|
171 | 171 | { |
172 | - $this->_initialized = TRUE; |
|
172 | + $this->_initialized = TRUE; |
|
173 | 173 | } |
174 | 174 | |
175 | - // ######################################################################## |
|
176 | - // PGT I/O |
|
177 | - // ######################################################################## |
|
178 | - |
|
179 | - /** |
|
180 | - * This virtual method stores a PGT and its corresponding PGT Iuo. |
|
181 | - * @note Should never be called. |
|
182 | - * |
|
183 | - * @param $pgt the PGT |
|
184 | - * @param $pgt_iou the PGT iou |
|
185 | - * |
|
186 | - * @protected |
|
187 | - */ |
|
188 | - function write($pgt,$pgt_iou) |
|
175 | + // ######################################################################## |
|
176 | + // PGT I/O |
|
177 | + // ######################################################################## |
|
178 | + |
|
179 | + /** |
|
180 | + * This virtual method stores a PGT and its corresponding PGT Iuo. |
|
181 | + * @note Should never be called. |
|
182 | + * |
|
183 | + * @param $pgt the PGT |
|
184 | + * @param $pgt_iou the PGT iou |
|
185 | + * |
|
186 | + * @protected |
|
187 | + */ |
|
188 | + function write($pgt,$pgt_iou) |
|
189 | 189 | { |
190 | - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); |
|
190 | + phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); |
|
191 | 191 | } |
192 | 192 | |
193 | - /** |
|
194 | - * This virtual method reads a PGT corresponding to a PGT Iou and deletes |
|
195 | - * the corresponding storage entry. |
|
196 | - * @note Should never be called. |
|
197 | - * |
|
198 | - * @param $pgt_iou the PGT iou |
|
199 | - * |
|
200 | - * @protected |
|
201 | - */ |
|
202 | - function read($pgt_iou) |
|
193 | + /** |
|
194 | + * This virtual method reads a PGT corresponding to a PGT Iou and deletes |
|
195 | + * the corresponding storage entry. |
|
196 | + * @note Should never be called. |
|
197 | + * |
|
198 | + * @param $pgt_iou the PGT iou |
|
199 | + * |
|
200 | + * @protected |
|
201 | + */ |
|
202 | + function read($pgt_iou) |
|
203 | 203 | { |
204 | - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); |
|
204 | + phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); |
|
205 | 205 | } |
206 | 206 | |
207 | - /** @} */ |
|
207 | + /** @} */ |
|
208 | 208 | |
209 | 209 | } |
210 | 210 |