@@ -41,19 +41,19 @@ discard block |
||
41 | 41 | var $Query_ID = 0; |
42 | 42 | |
43 | 43 | /** |
44 | - * Execute a query |
|
45 | - * |
|
46 | - * @param string $Query_String the query to be executed |
|
47 | - * @param int $line the line method was called from - use __LINE__ |
|
48 | - * @param string $file the file method was called from - use __FILE__ |
|
49 | - * @param int $offset row to start from, default 0 |
|
50 | - * @param int $num_rows number of rows to return (optional), default -1 = all, 0 will use $GLOBALS['egw_info']['user']['preferences']['common']['maxmatchs'] |
|
51 | - * @param array|boolean $inputarr array for binding variables to parameters or false (default) |
|
52 | - * @param int $fetchmode =self::FETCH_BOTH self::FETCH_BOTH (default), self::FETCH_ASSOC or self::FETCH_NUM |
|
53 | - * @param boolean $reconnect =true true: try reconnecting if server closes connection, false: dont (mysql only!) |
|
54 | - * @return ADORecordSet or false, if the query fails |
|
55 | - * @throws EGroupware\Api\Db\Exception\InvalidSql with $this->Link_ID->ErrorNo() as code |
|
56 | - */ |
|
44 | + * Execute a query |
|
45 | + * |
|
46 | + * @param string $Query_String the query to be executed |
|
47 | + * @param int $line the line method was called from - use __LINE__ |
|
48 | + * @param string $file the file method was called from - use __FILE__ |
|
49 | + * @param int $offset row to start from, default 0 |
|
50 | + * @param int $num_rows number of rows to return (optional), default -1 = all, 0 will use $GLOBALS['egw_info']['user']['preferences']['common']['maxmatchs'] |
|
51 | + * @param array|boolean $inputarr array for binding variables to parameters or false (default) |
|
52 | + * @param int $fetchmode =self::FETCH_BOTH self::FETCH_BOTH (default), self::FETCH_ASSOC or self::FETCH_NUM |
|
53 | + * @param boolean $reconnect =true true: try reconnecting if server closes connection, false: dont (mysql only!) |
|
54 | + * @return ADORecordSet or false, if the query fails |
|
55 | + * @throws EGroupware\Api\Db\Exception\InvalidSql with $this->Link_ID->ErrorNo() as code |
|
56 | + */ |
|
57 | 57 | function query($Query_String, $line = '', $file = '', $offset=0, $num_rows=-1, $inputarr=false, $fetchmode=self::FETCH_BOTH, $reconnect=true) |
58 | 58 | { |
59 | 59 | // New query, discard previous result. |
@@ -76,12 +76,12 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * Escape strings before sending them to the database |
|
80 | - * |
|
81 | - * @deprecated use quote($value,$type='') instead |
|
82 | - * @param string $str the string to be escaped |
|
83 | - * @return string escaped sting |
|
84 | - */ |
|
79 | + * Escape strings before sending them to the database |
|
80 | + * |
|
81 | + * @deprecated use quote($value,$type='') instead |
|
82 | + * @param string $str the string to be escaped |
|
83 | + * @return string escaped sting |
|
84 | + */ |
|
85 | 85 | function db_addslashes($str) |
86 | 86 | { |
87 | 87 | if (!isset($str) || $str == '') |
@@ -107,14 +107,14 @@ discard block |
||
107 | 107 | } |
108 | 108 | |
109 | 109 | /** |
110 | - * Move to the next row in the results set |
|
111 | - * |
|
112 | - * Specifying a fetch_mode only works for newly fetched rows, the first row always gets fetched by query!!! |
|
113 | - * |
|
114 | - * @deprecated use foreach(query() or foreach(select() to loop over the query using the global db object |
|
115 | - * @param int $fetch_mode self::FETCH_BOTH = numerical+assoc keys (eGW default), self::FETCH_ASSOC or self::FETCH_NUM |
|
116 | - * @return bool was another row found? |
|
117 | - */ |
|
110 | + * Move to the next row in the results set |
|
111 | + * |
|
112 | + * Specifying a fetch_mode only works for newly fetched rows, the first row always gets fetched by query!!! |
|
113 | + * |
|
114 | + * @deprecated use foreach(query() or foreach(select() to loop over the query using the global db object |
|
115 | + * @param int $fetch_mode self::FETCH_BOTH = numerical+assoc keys (eGW default), self::FETCH_ASSOC or self::FETCH_NUM |
|
116 | + * @return bool was another row found? |
|
117 | + */ |
|
118 | 118 | function next_record($fetch_mode=self::FETCH_BOTH) |
119 | 119 | { |
120 | 120 | if (!$this->Query_ID) |
@@ -164,12 +164,12 @@ discard block |
||
164 | 164 | } |
165 | 165 | |
166 | 166 | /** |
167 | - * Move to position in result set |
|
168 | - * |
|
169 | - * @deprecated use the result-object returned by query() or select() direct, so you can use the global db-object and not a clone |
|
170 | - * @param int $pos required row (optional), default first row |
|
171 | - * @return boolean true if sucessful or false if not found |
|
172 | - */ |
|
167 | + * Move to position in result set |
|
168 | + * |
|
169 | + * @deprecated use the result-object returned by query() or select() direct, so you can use the global db-object and not a clone |
|
170 | + * @param int $pos required row (optional), default first row |
|
171 | + * @return boolean true if sucessful or false if not found |
|
172 | + */ |
|
173 | 173 | function seek($pos = 0) |
174 | 174 | { |
175 | 175 | if (!$this->Query_ID || !$this->Query_ID->Move($this->Row = $pos)) |
@@ -180,74 +180,74 @@ discard block |
||
180 | 180 | } |
181 | 181 | |
182 | 182 | /** |
183 | - * Lock a table |
|
184 | - * |
|
185 | - * @deprecated not used anymore as it costs to much performance, use transactions if needed |
|
186 | - * @param string $table name of table to lock |
|
187 | - * @param string $mode type of lock required (optional), default write |
|
188 | - * @return bool True if sucessful, False if fails |
|
189 | - */ |
|
183 | + * Lock a table |
|
184 | + * |
|
185 | + * @deprecated not used anymore as it costs to much performance, use transactions if needed |
|
186 | + * @param string $table name of table to lock |
|
187 | + * @param string $mode type of lock required (optional), default write |
|
188 | + * @return bool True if sucessful, False if fails |
|
189 | + */ |
|
190 | 190 | function lock($table, $mode='write') |
191 | 191 | { |
192 | 192 | unset($table, $mode); // not used anymore |
193 | 193 | } |
194 | 194 | |
195 | 195 | /** |
196 | - * Unlock a table |
|
197 | - * |
|
198 | - * @deprecated not used anymore as it costs to much performance, use transactions if needed |
|
199 | - * @return bool True if sucessful, False if fails |
|
200 | - */ |
|
196 | + * Unlock a table |
|
197 | + * |
|
198 | + * @deprecated not used anymore as it costs to much performance, use transactions if needed |
|
199 | + * @return bool True if sucessful, False if fails |
|
200 | + */ |
|
201 | 201 | function unlock() |
202 | 202 | {} |
203 | 203 | |
204 | 204 | /** |
205 | - * Number of rows in current result set |
|
206 | - * |
|
207 | - * @deprecated use the result-object returned by query/select()->NumRows(), so you can use the global db-object and not a clone |
|
208 | - * @return int number of rows |
|
209 | - */ |
|
205 | + * Number of rows in current result set |
|
206 | + * |
|
207 | + * @deprecated use the result-object returned by query/select()->NumRows(), so you can use the global db-object and not a clone |
|
208 | + * @return int number of rows |
|
209 | + */ |
|
210 | 210 | function num_rows() |
211 | 211 | { |
212 | 212 | return $this->Query_ID ? $this->Query_ID->RecordCount() : False; |
213 | 213 | } |
214 | 214 | |
215 | 215 | /** |
216 | - * Number of fields in current row |
|
217 | - * |
|
218 | - * @deprecated use the result-object returned by query() or select() direct, so you can use the global db-object and not a clone |
|
219 | - * @return int number of fields |
|
220 | - */ |
|
216 | + * Number of fields in current row |
|
217 | + * |
|
218 | + * @deprecated use the result-object returned by query() or select() direct, so you can use the global db-object and not a clone |
|
219 | + * @return int number of fields |
|
220 | + */ |
|
221 | 221 | function num_fields() |
222 | 222 | { |
223 | 223 | return $this->Query_ID ? $this->Query_ID->FieldCount() : False; |
224 | 224 | } |
225 | 225 | |
226 | 226 | /** |
227 | - * @deprecated use num_rows() |
|
228 | - */ |
|
227 | + * @deprecated use num_rows() |
|
228 | + */ |
|
229 | 229 | function nf() |
230 | 230 | { |
231 | 231 | return $this->num_rows(); |
232 | 232 | } |
233 | 233 | |
234 | 234 | /** |
235 | - * @deprecated use print num_rows() |
|
236 | - */ |
|
235 | + * @deprecated use print num_rows() |
|
236 | + */ |
|
237 | 237 | function np() |
238 | 238 | { |
239 | 239 | print $this->num_rows(); |
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
243 | - * Return the value of a column |
|
244 | - * |
|
245 | - * @deprecated use the result-object returned by query() or select() direct, so you can use the global db-object and not a clone |
|
246 | - * @param string|integer $Name name of field or positional index starting from 0 |
|
247 | - * @param bool $strip_slashes string escape chars from field(optional), default false |
|
248 | - * depricated param, as correctly quoted values dont need any stripslashes! |
|
249 | - * @return string the field value |
|
250 | - */ |
|
243 | + * Return the value of a column |
|
244 | + * |
|
245 | + * @deprecated use the result-object returned by query() or select() direct, so you can use the global db-object and not a clone |
|
246 | + * @param string|integer $Name name of field or positional index starting from 0 |
|
247 | + * @param bool $strip_slashes string escape chars from field(optional), default false |
|
248 | + * depricated param, as correctly quoted values dont need any stripslashes! |
|
249 | + * @return string the field value |
|
250 | + */ |
|
251 | 251 | function f($Name, $strip_slashes = False) |
252 | 252 | { |
253 | 253 | if ($strip_slashes) |
@@ -258,26 +258,26 @@ discard block |
||
258 | 258 | } |
259 | 259 | |
260 | 260 | /** |
261 | - * Print the value of a field |
|
262 | - * |
|
263 | - * @deprecated use the result-object returned by query() or select() direct, so you can use the global db-object and not a clone |
|
264 | - * @param string $Name name of field to print |
|
265 | - * @param bool $strip_slashes string escape chars from field(optional), default false |
|
266 | - * depricated param, as correctly quoted values dont need any stripslashes! |
|
267 | - */ |
|
261 | + * Print the value of a field |
|
262 | + * |
|
263 | + * @deprecated use the result-object returned by query() or select() direct, so you can use the global db-object and not a clone |
|
264 | + * @param string $Name name of field to print |
|
265 | + * @param bool $strip_slashes string escape chars from field(optional), default false |
|
266 | + * depricated param, as correctly quoted values dont need any stripslashes! |
|
267 | + */ |
|
268 | 268 | function p($Name, $strip_slashes = True) |
269 | 269 | { |
270 | 270 | print $this->f($Name, $strip_slashes); |
271 | 271 | } |
272 | 272 | |
273 | 273 | /** |
274 | - * Returns a query-result-row as an associative array (no numerical keys !!!) |
|
275 | - * |
|
276 | - * @deprecated use foreach(query() or foreach(select() to loop over the query using the global db object |
|
277 | - * @param bool $do_next_record should next_record() be called or not (default not) |
|
278 | - * @param string $strip ='' string to strip of the column-name, default '' |
|
279 | - * @return array/bool the associative array or False if no (more) result-row is availible |
|
280 | - */ |
|
274 | + * Returns a query-result-row as an associative array (no numerical keys !!!) |
|
275 | + * |
|
276 | + * @deprecated use foreach(query() or foreach(select() to loop over the query using the global db object |
|
277 | + * @param bool $do_next_record should next_record() be called or not (default not) |
|
278 | + * @param string $strip ='' string to strip of the column-name, default '' |
|
279 | + * @return array/bool the associative array or False if no (more) result-row is availible |
|
280 | + */ |
|
281 | 281 | function row($do_next_record=False,$strip='') |
282 | 282 | { |
283 | 283 | if ($do_next_record && !$this->next_record(self::FETCH_ASSOC) || !is_array($this->Record)) |
@@ -480,7 +480,7 @@ discard block |
||
480 | 480 | } |
481 | 481 | $ids = Link\Storage::get_links($app, $id, $only_app, $order, $deleted, $limit); |
482 | 482 | if (empty($only_app) || $only_app == self::VFS_APPNAME || |
483 | - ($only_app[0] == '!' && $only_app != '!'.self::VFS_APPNAME)) |
|
483 | + ($only_app[0] == '!' && $only_app != '!'.self::VFS_APPNAME)) |
|
484 | 484 | { |
485 | 485 | if (($vfs_ids = self::list_attached($app,$id))) |
486 | 486 | { |
@@ -536,7 +536,7 @@ discard block |
||
536 | 536 | $links = Link\Storage::get_links($app,$ids,$only_app,$order,$deleted); |
537 | 537 | |
538 | 538 | if (empty($only_app) || $only_app == self::VFS_APPNAME || |
539 | - ($only_app[0] == '!' && $only_app != '!'.self::VFS_APPNAME)) |
|
539 | + ($only_app[0] == '!' && $only_app != '!'.self::VFS_APPNAME)) |
|
540 | 540 | { |
541 | 541 | // todo do that in a single query, eg. directory listing, too |
542 | 542 | foreach($ids as $id) |
@@ -793,7 +793,7 @@ discard block |
||
793 | 793 | |
794 | 794 | if (!isset($options['total'])) |
795 | 795 | { |
796 | - $options['total'] = count($result); |
|
796 | + $options['total'] = count($result); |
|
797 | 797 | } |
798 | 798 | if (is_array($result) && (isset($options['start']) || (isset($options['num_rows']) && count($result) > $options['num_rows']))) |
799 | 799 | { |
@@ -44,23 +44,23 @@ discard block |
||
44 | 44 | var $extra_table = 'egw_addressbook_extra'; |
45 | 45 | |
46 | 46 | /** |
47 | - * @var string |
|
48 | - */ |
|
47 | + * @var string |
|
48 | + */ |
|
49 | 49 | var $extra_id = 'contact_id'; |
50 | 50 | |
51 | 51 | /** |
52 | - * @var string |
|
53 | - */ |
|
52 | + * @var string |
|
53 | + */ |
|
54 | 54 | var $extra_owner = 'contact_owner'; |
55 | 55 | |
56 | 56 | /** |
57 | - * @var string |
|
58 | - */ |
|
57 | + * @var string |
|
58 | + */ |
|
59 | 59 | var $extra_key = 'contact_name'; |
60 | 60 | |
61 | 61 | /** |
62 | - * @var string |
|
63 | - */ |
|
62 | + * @var string |
|
63 | + */ |
|
64 | 64 | var $extra_value = 'contact_value'; |
65 | 65 | |
66 | 66 | /** |
@@ -71,23 +71,23 @@ discard block |
||
71 | 71 | var $distributionlist_view ='(SELECT contact_id, egw_addressbook_lists.list_id as list_id, egw_addressbook_lists.list_name as list_name, egw_addressbook_lists.list_owner as list_owner FROM egw_addressbook_lists, egw_addressbook2list where egw_addressbook_lists.list_id=egw_addressbook2list.list_id) d_view '; |
72 | 72 | var $distributionlist_tabledef = array(); |
73 | 73 | /** |
74 | - * @var string |
|
75 | - */ |
|
74 | + * @var string |
|
75 | + */ |
|
76 | 76 | var $distri_id = 'contact_id'; |
77 | 77 | |
78 | 78 | /** |
79 | - * @var string |
|
80 | - */ |
|
79 | + * @var string |
|
80 | + */ |
|
81 | 81 | var $distri_owner = 'list_owner'; |
82 | 82 | |
83 | 83 | /** |
84 | - * @var string |
|
85 | - */ |
|
84 | + * @var string |
|
85 | + */ |
|
86 | 86 | var $distri_key = 'list_id'; |
87 | 87 | |
88 | 88 | /** |
89 | - * @var string |
|
90 | - */ |
|
89 | + * @var string |
|
90 | + */ |
|
91 | 91 | var $distri_value = 'list_name'; |
92 | 92 | |
93 | 93 | /** |
@@ -160,10 +160,10 @@ discard block |
||
160 | 160 | var $content_types = array(); |
161 | 161 | |
162 | 162 | /** |
163 | - * Special content type to indicate a deleted addressbook |
|
164 | - * |
|
165 | - * @var String; |
|
166 | - */ |
|
163 | + * Special content type to indicate a deleted addressbook |
|
164 | + * |
|
165 | + * @var String; |
|
166 | + */ |
|
167 | 167 | const DELETED_TYPE = 'D'; |
168 | 168 | |
169 | 169 | /** |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | $this->distributionlist_tabledef = array('fd' => array( |
269 | 269 | $this->distri_id => $tda2list['fd'][$this->distri_id], |
270 | 270 | $this->distri_owner => $tdlists['fd'][$this->distri_owner], |
271 | - $this->distri_key => $tdlists['fd'][$this->distri_key], |
|
271 | + $this->distri_key => $tdlists['fd'][$this->distri_key], |
|
272 | 272 | $this->distri_value => $tdlists['fd'][$this->distri_value], |
273 | 273 | ), 'pk' => array(), 'fk' => array(), 'ix' => array(), 'uc' => array(), |
274 | 274 | ); |
@@ -469,12 +469,12 @@ discard block |
||
469 | 469 | } |
470 | 470 | |
471 | 471 | /** |
472 | - * deletes contact entry including custom fields |
|
473 | - * |
|
474 | - * @param mixed $contact array with id or just the id |
|
475 | - * @param int $check_etag =null |
|
476 | - * @return boolean|int true on success or false on failiure, 0 if etag does not match |
|
477 | - */ |
|
472 | + * deletes contact entry including custom fields |
|
473 | + * |
|
474 | + * @param mixed $contact array with id or just the id |
|
475 | + * @param int $check_etag =null |
|
476 | + * @return boolean|int true on success or false on failiure, 0 if etag does not match |
|
477 | + */ |
|
478 | 478 | function delete($contact,$check_etag=null) |
479 | 479 | { |
480 | 480 | if (is_array($contact)) $contact = $contact['id']; |
@@ -510,11 +510,11 @@ discard block |
||
510 | 510 | } |
511 | 511 | |
512 | 512 | /** |
513 | - * saves contact data including custom fields |
|
514 | - * |
|
515 | - * @param array &$contact contact data from etemplate::exec |
|
516 | - * @return bool false on success, errornumber on failure |
|
517 | - */ |
|
513 | + * saves contact data including custom fields |
|
514 | + * |
|
515 | + * @param array &$contact contact data from etemplate::exec |
|
516 | + * @return bool false on success, errornumber on failure |
|
517 | + */ |
|
518 | 518 | function save(&$contact) |
519 | 519 | { |
520 | 520 | // save mainfields |
@@ -566,7 +566,7 @@ discard block |
||
566 | 566 | * |
567 | 567 | * @param int|string $contact_id contact_id or 'a'.account_id |
568 | 568 | * @return array|boolean data if row could be retrived else False |
569 | - */ |
|
569 | + */ |
|
570 | 570 | function read($contact_id) |
571 | 571 | { |
572 | 572 | if (!is_array($contact_id) && substr($contact_id,0,8) == 'account:') |
@@ -796,10 +796,10 @@ discard block |
||
796 | 796 | } |
797 | 797 | |
798 | 798 | /** |
799 | - * gets all contact fields from database |
|
800 | - * |
|
801 | - * @return array of (internal) field-names |
|
802 | - */ |
|
799 | + * gets all contact fields from database |
|
800 | + * |
|
801 | + * @return array of (internal) field-names |
|
802 | + */ |
|
803 | 803 | function get_contact_columns() |
804 | 804 | { |
805 | 805 | $fields = $this->get_fields('all'); |
@@ -170,7 +170,7 @@ |
||
170 | 170 | * |
171 | 171 | * @param string/array $_contact_id contact_id or array with values for id or account_id |
172 | 172 | * @return array/boolean data if row could be retrived else False |
173 | - */ |
|
173 | + */ |
|
174 | 174 | function read($_contact_id) |
175 | 175 | { |
176 | 176 | if (is_array($_contact_id) && isset($_contact_id['account_id']) || |
@@ -41,33 +41,33 @@ discard block |
||
41 | 41 | var $contacts_id='id'; |
42 | 42 | |
43 | 43 | /** |
44 | - * @var string $accountName holds the accountname of the current user |
|
45 | - */ |
|
44 | + * @var string $accountName holds the accountname of the current user |
|
45 | + */ |
|
46 | 46 | var $accountName; |
47 | 47 | |
48 | 48 | /** |
49 | - * @var object $ldapServerInfo holds the information about the current used ldap server |
|
50 | - */ |
|
49 | + * @var object $ldapServerInfo holds the information about the current used ldap server |
|
50 | + */ |
|
51 | 51 | var $ldapServerInfo; |
52 | 52 | |
53 | 53 | /** |
54 | - * @var int $ldapLimit how many rows to fetch from ldap server |
|
55 | - */ |
|
54 | + * @var int $ldapLimit how many rows to fetch from ldap server |
|
55 | + */ |
|
56 | 56 | var $ldapLimit = 2000; |
57 | 57 | |
58 | 58 | /** |
59 | - * @var string $personalContactsDN holds the base DN for the personal addressbooks |
|
60 | - */ |
|
59 | + * @var string $personalContactsDN holds the base DN for the personal addressbooks |
|
60 | + */ |
|
61 | 61 | var $personalContactsDN; |
62 | 62 | |
63 | 63 | /** |
64 | - * @var string $sharedContactsDN holds the base DN for the shared addressbooks |
|
65 | - */ |
|
64 | + * @var string $sharedContactsDN holds the base DN for the shared addressbooks |
|
65 | + */ |
|
66 | 66 | var $sharedContactsDN; |
67 | 67 | |
68 | 68 | /** |
69 | - * @var string $accountContactsDN holds the base DN for accounts addressbook |
|
70 | - */ |
|
69 | + * @var string $accountContactsDN holds the base DN for accounts addressbook |
|
70 | + */ |
|
71 | 71 | var $accountContactsDN; |
72 | 72 | |
73 | 73 | /** |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | var $accountsFilter = '(objectclass=posixaccount)'; |
78 | 78 | |
79 | 79 | /** |
80 | - * @var string $allContactsDN holds the base DN of all addressbook |
|
81 | - */ |
|
80 | + * @var string $allContactsDN holds the base DN of all addressbook |
|
81 | + */ |
|
82 | 82 | var $allContactsDN; |
83 | 83 | |
84 | 84 | /** |
@@ -96,8 +96,8 @@ discard block |
||
96 | 96 | var $never_change_dn = false; |
97 | 97 | |
98 | 98 | /** |
99 | - * @var int $total holds the total count of found rows |
|
100 | - */ |
|
99 | + * @var int $total holds the total count of found rows |
|
100 | + */ |
|
101 | 101 | var $total; |
102 | 102 | |
103 | 103 | /** |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | * |
404 | 404 | * @param string|array $contact_id contact_id or array with values for id or account_id |
405 | 405 | * @return array/boolean data if row could be retrived else False |
406 | - */ |
|
406 | + */ |
|
407 | 407 | function read($contact_id) |
408 | 408 | { |
409 | 409 | if (is_array($contact_id) && isset($contact_id['account_id']) || |
@@ -858,9 +858,9 @@ |
||
858 | 858 | } |
859 | 859 | |
860 | 860 | /** |
861 | - * Deletes custom field data |
|
862 | - * Implemented to deal with LDAP backend, which saves CFs in SQL, but the account record is in LDAP |
|
863 | - */ |
|
861 | + * Deletes custom field data |
|
862 | + * Implemented to deal with LDAP backend, which saves CFs in SQL, but the account record is in LDAP |
|
863 | + */ |
|
864 | 864 | function delete_customfields($data) |
865 | 865 | { |
866 | 866 | $this->db->delete($this->extra_table,$data,__LINE__,__FILE__); |
@@ -447,10 +447,10 @@ discard block |
||
447 | 447 | * Important: PHP 5.0 introduced a bug that wasn't fixed until 5.1: the return value has to be the oposite! |
448 | 448 | * |
449 | 449 | * if(version_compare(PHP_VERSION,'5.0','>=') && version_compare(PHP_VERSION,'5.1','<')) |
450 | - * { |
|
450 | + * { |
|
451 | 451 | * $eof = !$eof; |
452 | 452 | * } |
453 | - * |
|
453 | + * |
|
454 | 454 | * @return boolean true if the read/write position is at the end of the stream and no more data availible, false otherwise |
455 | 455 | */ |
456 | 456 | function stream_eof ( ) |
@@ -485,7 +485,7 @@ discard block |
||
485 | 485 | * See fseek() for more information about these parameters. |
486 | 486 | * |
487 | 487 | * @param integer $offset |
488 | - * @param integer $whence SEEK_SET - 0 - Set position equal to offset bytes |
|
488 | + * @param integer $whence SEEK_SET - 0 - Set position equal to offset bytes |
|
489 | 489 | * SEEK_CUR - 1 - Set position to current location plus offset. |
490 | 490 | * SEEK_END - 2 - Set position to end-of-file plus offset. (To move to a position before the end-of-file, you need to pass a negative value in offset.) |
491 | 491 | * @return boolean TRUE if the position was updated, FALSE otherwise. |
@@ -681,8 +681,8 @@ discard block |
||
681 | 681 | $maxdepth=10; |
682 | 682 | $depth2propagate = (int)$depth + 1; |
683 | 683 | if ($depth2propagate > $maxdepth) return is_dir($pathname); |
684 | - is_dir(Vfs::dirname($pathname)) || self::mkdir_recursive(Vfs::dirname($pathname), $mode, $depth2propagate); |
|
685 | - return is_dir($pathname) || @mkdir($pathname, $mode); |
|
684 | + is_dir(Vfs::dirname($pathname)) || self::mkdir_recursive(Vfs::dirname($pathname), $mode, $depth2propagate); |
|
685 | + return is_dir($pathname) || @mkdir($pathname, $mode); |
|
686 | 686 | } |
687 | 687 | |
688 | 688 | /** |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | const WRITABLE = 'share_rw'; |
73 | 73 | |
74 | 74 | /** |
75 | - * Modes for sharing files |
|
76 | - * |
|
77 | - * @var array |
|
78 | - */ |
|
75 | + * Modes for sharing files |
|
76 | + * |
|
77 | + * @var array |
|
78 | + */ |
|
79 | 79 | static $modes = array( |
80 | 80 | self::ATTACH => array( |
81 | 81 | 'label' => 'Attachment', |
@@ -112,16 +112,16 @@ discard block |
||
112 | 112 | */ |
113 | 113 | public static function get_token() |
114 | 114 | { |
115 | - // WebDAV has no concept of a query string and clients (including cadaver) |
|
116 | - // seem to pass '?' unencoded, so we need to extract the path info out |
|
117 | - // of the request URI ourselves |
|
118 | - // if request URI contains a full url, remove schema and domain |
|
115 | + // WebDAV has no concept of a query string and clients (including cadaver) |
|
116 | + // seem to pass '?' unencoded, so we need to extract the path info out |
|
117 | + // of the request URI ourselves |
|
118 | + // if request URI contains a full url, remove schema and domain |
|
119 | 119 | $matches = null; |
120 | - if (preg_match('|^https?://[^/]+(/.*)$|', $path_info=$_SERVER['REQUEST_URI'], $matches)) |
|
121 | - { |
|
122 | - $path_info = $matches[1]; |
|
123 | - } |
|
124 | - $path_info = substr($path_info, strlen($_SERVER['SCRIPT_NAME'])); |
|
120 | + if (preg_match('|^https?://[^/]+(/.*)$|', $path_info=$_SERVER['REQUEST_URI'], $matches)) |
|
121 | + { |
|
122 | + $path_info = $matches[1]; |
|
123 | + } |
|
124 | + $path_info = substr($path_info, strlen($_SERVER['SCRIPT_NAME'])); |
|
125 | 125 | list(, $token/*, $path*/) = preg_split('|[/?]|', $path_info, 3); |
126 | 126 | |
127 | 127 | return $token; |
@@ -228,10 +228,10 @@ |
||
228 | 228 | * Important: PHP 5.0 introduced a bug that wasn't fixed until 5.1: the return value has to be the oposite! |
229 | 229 | * |
230 | 230 | * if(version_compare(PHP_VERSION,'5.0','>=') && version_compare(PHP_VERSION,'5.1','<')) |
231 | - * { |
|
231 | + * { |
|
232 | 232 | * $eof = !$eof; |
233 | 233 | * } |
234 | - * |
|
234 | + * |
|
235 | 235 | * @return boolean true if the read/write position is at the end of the stream and no more data availible, false otherwise |
236 | 236 | */ |
237 | 237 | function stream_eof ( ) |