@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | do_query("alter table host add max_results_day integer not null"); |
277 | 277 | } |
278 | 278 | |
279 | -function update_4_20_2005(){ |
|
279 | +function update_4_20_2005() { |
|
280 | 280 | do_query("ALTER TABLE `thread` ADD `sticky` TINYINT UNSIGNED DEFAULT '0' NOT NULL"); |
281 | 281 | do_query("ALTER TABLE `forum` ADD `post_min_total_credit` INT NOT NULL AFTER `posts`"); |
282 | 282 | do_query("ALTER TABLE `forum` ADD `post_min_expavg_credit` INT NOT NULL AFTER `posts`"); |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | do_query("ALTER TABLE `forum_preferences` ADD `last_post` INT( 14 ) UNSIGNED NOT NULL AFTER `posts`"); |
287 | 287 | } |
288 | 288 | |
289 | -function update_4_30_2005(){ |
|
289 | +function update_4_30_2005() { |
|
290 | 290 | do_query("ALTER TABLE `forum_preferences` ADD `ignore_sticky_posts` TINYINT( 1 ) UNSIGNED NOT NULL"); |
291 | 291 | } |
292 | 292 | |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | do_query("update user set country='Macedonia' where country='Macedonia, The Former Yugoslav Republic of'"); |
314 | 314 | } |
315 | 315 | |
316 | -function update_11_24_2005(){ |
|
316 | +function update_11_24_2005() { |
|
317 | 317 | do_query("ALTER TABLE `forum_preferences` ADD `minimum_wrap_postcount` INT DEFAULT '100' NOT NULL AFTER `high_rating_threshold` , |
318 | 318 | ADD `display_wrap_postcount` INT DEFAULT '75' NOT NULL AFTER `minimum_wrap_postcount`"); |
319 | 319 | } |
@@ -618,7 +618,7 @@ discard block |
||
618 | 618 | "); |
619 | 619 | } |
620 | 620 | |
621 | -function update_10_05_2008(){ |
|
621 | +function update_10_05_2008() { |
|
622 | 622 | do_query("alter table forum_preferences add highlight_special tinyint default '1' not null"); |
623 | 623 | } |
624 | 624 | |
@@ -1244,7 +1244,7 @@ discard block |
||
1244 | 1244 | // This used to be the Subversion version#, |
1245 | 1245 | // but with Git we just use sequential integers |
1246 | 1246 | // |
1247 | -$db_updates = array ( |
|
1247 | +$db_updates = array( |
|
1248 | 1248 | array(18490, "update_6_16_2009"), |
1249 | 1249 | array(19001, "update_9_3_2009"), |
1250 | 1250 | array(20807, "update_3_5_2010"), |
@@ -42,15 +42,15 @@ |
||
42 | 42 | $start_id = 0; //Set this to something else if you like |
43 | 43 | $profiles = _mysql_query("select * from profile where userid>$start_id order by userid"); |
44 | 44 | echo _mysql_error(); |
45 | - $i=0; |
|
46 | - while ($profile = _mysql_fetch_object($profiles)){ |
|
45 | + $i = 0; |
|
46 | + while ($profile = _mysql_fetch_object($profiles)) { |
|
47 | 47 | $i++; |
48 | 48 | if ($i%100 == 0) { //For every 100 profiles |
49 | - echo $profile->userid.". "; flush(); // print out where we are |
|
49 | + echo $profile->userid.". "; flush(); // print out where we are |
|
50 | 50 | //usleep(200000); |
51 | 51 | } |
52 | 52 | |
53 | - if ($profile->userid > $start_id){ |
|
53 | + if ($profile->userid > $start_id) { |
|
54 | 54 | fix_profile($profile); |
55 | 55 | } |
56 | 56 | } |
@@ -78,8 +78,8 @@ discard block |
||
78 | 78 | foreach ($documents as $document) { |
79 | 79 | //dd($document, "index documents alter - document"); |
80 | 80 | |
81 | - $to_process = ( array_key_exists($document->bundle, $node_types) AND $node_types[$document->bundle] ); |
|
82 | - if ( $document->entity_type=='node' AND $to_process) { |
|
81 | + $to_process = (array_key_exists($document->bundle, $node_types) AND $node_types[$document->bundle]); |
|
82 | + if ($document->entity_type == 'node' AND $to_process) { |
|
83 | 83 | |
84 | 84 | // Remove ts_comments if present. |
85 | 85 | if (isset($document->ts_comments)) { |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | $comment_document->bundle = 'Comment'; |
111 | 111 | $comment_document->bundle_name = 'Comment'; |
112 | 112 | |
113 | - $comment_document->path = 'goto/comment/' . $comment->cid; |
|
113 | + $comment_document->path = 'goto/comment/'.$comment->cid; |
|
114 | 114 | $comment_document->url = url($comment_document->path, $url_options); |
115 | 115 | |
116 | 116 | // Comment object has no language |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | |
141 | 141 | // Index formatted username so it can be searched and sorted |
142 | 142 | // on. |
143 | - $account = (object) array('uid' => $comment->uid, 'name' => $comment->name); |
|
143 | + $account = (object)array('uid' => $comment->uid, 'name' => $comment->name); |
|
144 | 144 | $username = check_plain($account->name); |
145 | 145 | $comment_document->ss_name_formatted = $username; |
146 | 146 | $comment_document->tos_name_formatted = $username; |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | |
185 | 185 | // Copy over fields [im_taxonomy_vid_1], [tid], [im_vid_1], |
186 | 186 | // [im_vid_Forums], [tm_vid_1_names] |
187 | - if ( ( preg_match('/tid/', $fieldName) OR preg_match('/vid/', $fieldName) ) AND is_array($fieldValue) ) { |
|
187 | + if ((preg_match('/tid/', $fieldName) OR preg_match('/vid/', $fieldName)) AND is_array($fieldValue)) { |
|
188 | 188 | foreach ($fieldValue as $subkey => $subvalue) { |
189 | 189 | $comment_document->addField($fieldName, $subvalue); |
190 | 190 | } |
@@ -226,8 +226,8 @@ discard block |
||
226 | 226 | */ |
227 | 227 | function boinc_solr_comments_apachesolr_process_results(&$results, DrupalSolrQueryInterface $query) { |
228 | 228 | //dpm($query->getSolrParams(), "process_results query getSolrParams"); |
229 | - foreach($results as $id => $result) { |
|
230 | - if ($result['entity_type']=='comment') { |
|
229 | + foreach ($results as $id => $result) { |
|
230 | + if ($result['entity_type'] == 'comment') { |
|
231 | 231 | $results[$id]['type'] = 'Comment'; |
232 | 232 | $results[$id]['date'] = $result['fields']['changed']; |
233 | 233 | if (isset($result['fields']['is_uid'])) { |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | */ |
253 | 253 | function boinc_solr_comments_apachesolr_query_alter($query) { |
254 | 254 | // Add custom field to query results |
255 | - $query->addParam('fl','tos_content_extra'); |
|
255 | + $query->addParam('fl', 'tos_content_extra'); |
|
256 | 256 | } |
257 | 257 | |
258 | 258 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | switch ($op) { |
283 | 283 | case 'delete': |
284 | 284 | // Only call delete function on certain node types |
285 | - if (in_array( $node->type, $node_types)) { |
|
285 | + if (in_array($node->type, $node_types)) { |
|
286 | 286 | boinc_solr_comments_delete($node); |
287 | 287 | } |
288 | 288 | break; |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | try { |
315 | 315 | $solr = apachesolr_get_solr($env_id); |
316 | 316 | // Custom query to find all comments with parent nid of the node bing deleted. |
317 | - $query = "entity_type:comment AND tos_content_extra:" . $node->nid; |
|
317 | + $query = "entity_type:comment AND tos_content_extra:".$node->nid; |
|
318 | 318 | $solr->deleteByQuery($query); |
319 | 319 | // Log the query used for deletion. |
320 | 320 | watchdog('Apache Solr', 'Deleted documents from index with query @query', array('@query' => $query), WATCHDOG_INFO); |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | */ |
400 | 400 | |
401 | 401 | function boinc_solr_comments_enable() { |
402 | - drupal_set_message( bts('Warning: Your content <a href="@url">must be re-indexed</a> before Apache Solr will search comments.', array('@url' => url('admin/settings/apachesolr/index')), NULL, 'boinc:admin-solr-index-comments-message'), 'warning'); |
|
402 | + drupal_set_message(bts('Warning: Your content <a href="@url">must be re-indexed</a> before Apache Solr will search comments.', array('@url' => url('admin/settings/apachesolr/index')), NULL, 'boinc:admin-solr-index-comments-message'), 'warning'); |
|
403 | 403 | } |
404 | 404 | |
405 | 405 | /** |
@@ -410,7 +410,7 @@ discard block |
||
410 | 410 | * The comment to be published (unhidden). |
411 | 411 | */ |
412 | 412 | function boinc_solr_comments_publish($comment) { |
413 | - if ( ($comment->cid) AND ($comment->nid) ) { |
|
413 | + if (($comment->cid) AND ($comment->nid)) { |
|
414 | 414 | $node = node_load($comment->nid); |
415 | 415 | // Tell Solr that the node has been updated, so the comment can be |
416 | 416 | // indexed. |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | * The comment to be unpublished (hidden). |
427 | 427 | */ |
428 | 428 | function boinc_solr_comments_unpublish($comment) { |
429 | - if ( ($comment->cid) ) { |
|
429 | + if (($comment->cid)) { |
|
430 | 430 | // Call the deletecomment function for hook comment. |
431 | 431 | boinc_solr_comments_deletecomment($comment); |
432 | 432 | } |
@@ -165,8 +165,8 @@ discard block |
||
165 | 165 | WHERE n.type = 'profile' |
166 | 166 | AND n.status = 1 |
167 | 167 | AND n.moderate = 0 |
168 | - " . ($never_been_picked ? " AND bu.uotd_time = 0 " : '') . " |
|
169 | - " . ($active_users ? " AND bu.boinc_id IN ({$active_users}) " : '') . " |
|
168 | + " . ($never_been_picked ? " AND bu.uotd_time = 0 " : '')." |
|
169 | + " . ($active_users ? " AND bu.boinc_id IN ({$active_users}) " : '')." |
|
170 | 170 | ORDER BY RAND() |
171 | 171 | LIMIT 1" |
172 | 172 | )); |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | * this function is called, it may be called with optional parameters |
213 | 213 | * new and prev email. |
214 | 214 | */ |
215 | -function _boincuser_send_emailchange($account, $new_email=NULL, $prev_email=NULL, $adminuser=FALSE) { |
|
215 | +function _boincuser_send_emailchange($account, $new_email = NULL, $prev_email = NULL, $adminuser = FALSE) { |
|
216 | 216 | require_boinc('token'); |
217 | 217 | module_load_include('inc', 'rules', 'modules/system.rules'); |
218 | 218 | |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | // Name is limited to 60 characters, but we want to leave space to add a |
304 | 304 | // tally if needed (for users with duplicate names); Limit to 56 chars and |
305 | 305 | // replace the middle of the string with "..." if too long |
306 | - $cleaned_name = substr_replace($cleaned_name, '...', 28, ($name_length-56)+3); |
|
306 | + $cleaned_name = substr_replace($cleaned_name, '...', 28, ($name_length - 56) + 3); |
|
307 | 307 | } |
308 | 308 | |
309 | 309 | // Determine if there are duplicate names, if so append a number to end. |
@@ -379,7 +379,7 @@ discard block |
||
379 | 379 | // delimiters. Curly brace is not really allowed un URLs, but a |
380 | 380 | // more robust function would first check for these curly braces |
381 | 381 | // in the path_to_ignore patterms, just in case. |
382 | - if (preg_match('{' . $pi . '}', $path)) { |
|
382 | + if (preg_match('{'.$pi.'}', $path)) { |
|
383 | 383 | return TRUE; |
384 | 384 | } |
385 | 385 | } |
@@ -505,15 +505,15 @@ discard block |
||
505 | 505 | elseif (!in_array($_GET['q'], $page_blacklist)) { |
506 | 506 | watchdog('boincuser', 'The BOINC scheduling server settings are not yet |
507 | 507 | configured. Please !verify for the settings to become effective.', |
508 | - array('!verify' => l(t('verify the default values') . ' <strong>' . |
|
509 | - t('and') . '</strong> ' . t('save the configuration'), |
|
508 | + array('!verify' => l(t('verify the default values').' <strong>'. |
|
509 | + t('and').'</strong> '.t('save the configuration'), |
|
510 | 510 | 'admin/boinc/scheduler', array('html' => TRUE)) |
511 | 511 | ), WATCHDOG_WARNING); |
512 | 512 | if (user_access('administer site configuration')) { |
513 | 513 | drupal_set_message(t('The BOINC scheduling server settings are not yet |
514 | 514 | configured. Please !verify for the settings to become effective', |
515 | - array('!verify' => l(t('verify the default values') . ' <strong>' . |
|
516 | - t('and') . '</strong> ' . t('save the configuration'), |
|
515 | + array('!verify' => l(t('verify the default values').' <strong>'. |
|
516 | + t('and').'</strong> '.t('save the configuration'), |
|
517 | 517 | 'admin/boinc/scheduler', array('html' => TRUE)) |
518 | 518 | )), 'warning', FALSE); |
519 | 519 | } |
@@ -575,7 +575,7 @@ discard block |
||
575 | 575 | */ |
576 | 576 | function _boincuser_node_profile_delete_submit($form, &$form_state) { |
577 | 577 | $node = $form['#node']; |
578 | - $deleteurl = 'node/'. $node->nid .'/delete'; |
|
578 | + $deleteurl = 'node/'.$node->nid.'/delete'; |
|
579 | 579 | $afterq = 'destination=account'; |
580 | 580 | drupal_goto($deleteurl, $afterq); |
581 | 581 | } |
@@ -605,8 +605,8 @@ discard block |
||
605 | 605 | $view = views_get_current_view(); |
606 | 606 | $account_id = $view->args[0]; |
607 | 607 | $friend_count = flag_friend_get_friend_count($account_id); |
608 | - return '<h2 class="pane-title">' . bts('Friends (@count)', |
|
609 | - array('@count' => $friend_count)) . '</h2>'; |
|
608 | + return '<h2 class="pane-title">'.bts('Friends (@count)', |
|
609 | + array('@count' => $friend_count)).'</h2>'; |
|
610 | 610 | } |
611 | 611 | |
612 | 612 | /** |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | $result = db_query_range("SELECT id,name FROM {user} WHERE name LIKE '%s%'", $string, 0, 10); |
620 | 620 | db_set_active('default'); |
621 | 621 | while ($user = db_fetch_object($result)) { |
622 | - $matches[$user->name . '_' . $user->id] = htmlentities($user->name) . " (" . $user->id . ')'; |
|
622 | + $matches[$user->name.'_'.$user->id] = htmlentities($user->name)." (".$user->id.')'; |
|
623 | 623 | } |
624 | 624 | |
625 | 625 | drupal_json((object)$matches); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | 'type' => MENU_CALLBACK |
190 | 190 | ); |
191 | 191 | $items['account_finish.php'] = array( |
192 | - 'title' => 'Welcome to ' . variable_get('site_name', 'Drupal-BOINC'), |
|
192 | + 'title' => 'Welcome to '.variable_get('site_name', 'Drupal-BOINC'), |
|
193 | 193 | 'description' => 'RPC for after a user has created an account.', |
194 | 194 | 'page callback' => 'boincuser_account_finish', |
195 | 195 | 'access callback' => TRUE, |
@@ -249,8 +249,8 @@ discard block |
||
249 | 249 | // termsofuse is enabled, by having text in the termsofuse variable. |
250 | 250 | $existinguser_tou = variable_get('boinc_weboptions_existinguser_tou', FALSE); |
251 | 251 | $termsofuse = variable_get('boinc_weboptions_termsofuse', ''); |
252 | - if ( (!empty($termsofuse)) and ($user->uid) ) { |
|
253 | - if ( !boincuser_check_termsofuse($user) and ($existinguser_tou) ) { |
|
252 | + if ((!empty($termsofuse)) and ($user->uid)) { |
|
253 | + if (!boincuser_check_termsofuse($user) and ($existinguser_tou)) { |
|
254 | 254 | |
255 | 255 | // Admins are exempt, otherwise the admin may not be able to |
256 | 256 | // access the site! |
@@ -264,14 +264,14 @@ discard block |
||
264 | 264 | 'user/termsofuse', |
265 | 265 | 'logout', |
266 | 266 | 'account/info/edit', |
267 | - 'user/' . $user->uid . '/edit', |
|
268 | - 'user/' . $user->uid . '/recoveremail/*', |
|
267 | + 'user/'.$user->uid.'/edit', |
|
268 | + 'user/'.$user->uid.'/recoveremail/*', |
|
269 | 269 | 'recover_email.php', |
270 | 270 | ); |
271 | 271 | if (module_exists('boincuser_delete')) { |
272 | - $paths0[] = 'user/' . $user->uid . '/delete'; |
|
273 | - $paths0[] = 'user/' . $user->uid . '/deleteconfirm/*'; |
|
274 | - $paths0[] = 'user/' . $user->uid . '/odeleteconfirm/*'; |
|
272 | + $paths0[] = 'user/'.$user->uid.'/delete'; |
|
273 | + $paths0[] = 'user/'.$user->uid.'/deleteconfirm/*'; |
|
274 | + $paths0[] = 'user/'.$user->uid.'/odeleteconfirm/*'; |
|
275 | 275 | } |
276 | 276 | |
277 | 277 | // Paths added by the admin |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | } |
283 | 283 | |
284 | 284 | // paths to ignore |
285 | - $paths_to_ignore = array_unique( array_merge($paths0, $paths2) ); |
|
285 | + $paths_to_ignore = array_unique(array_merge($paths0, $paths2)); |
|
286 | 286 | |
287 | 287 | if (!_boincuser_ignore_paths($path, $paths_to_ignore)) { |
288 | 288 | drupal_goto('user/termsofuse'); |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | require_boinc('password_compat/password'); |
305 | 305 | // Handle BOINC integration for users with UID > 1 (skip anonymous and admin) |
306 | 306 | if (isset($account->uid) && ($account->uid > 1)) { |
307 | - switch($op) { |
|
307 | + switch ($op) { |
|
308 | 308 | case 'load': |
309 | 309 | // User loading; insert BOINC data into the user object |
310 | 310 | $drupal_user = db_fetch_object(db_query(" |
@@ -334,11 +334,11 @@ discard block |
||
334 | 334 | )); |
335 | 335 | $account->boincuser_name = $boinc_user->name; |
336 | 336 | $account->boincuser_account_key = $boinc_user->authenticator; |
337 | - $account->boincuser_weak_auth = md5($boinc_user->authenticator . $boinc_user->passwd_hash); |
|
337 | + $account->boincuser_weak_auth = md5($boinc_user->authenticator.$boinc_user->passwd_hash); |
|
338 | 338 | $account->boincuser_total_credit = round($boinc_user->total_credit); |
339 | 339 | $account->boincuser_expavg_credit = round($boinc_user->expavg_credit); |
340 | 340 | $account->boincuser_expavg_time = round($boinc_user->expavg_time); |
341 | - $account->boincuser_cpid = md5($boinc_user->cross_project_id . $account->mail); |
|
341 | + $account->boincuser_cpid = md5($boinc_user->cross_project_id.$account->mail); |
|
342 | 342 | $account->boincuser_default_pref_set = $boinc_user->venue; |
343 | 343 | $account->boincteam_id = $boinc_user->teamid; |
344 | 344 | $account->boincuser_previous_email_addr = $boinc_user->previous_email_addr; |
@@ -507,7 +507,7 @@ discard block |
||
507 | 507 | |
508 | 508 | // Set password hash appropriately |
509 | 509 | $passwd = ($edit['pass']) ? $edit['pass'] : $edit['current_pass']; |
510 | - $passwd_hash = password_hash( md5($passwd.$lower_email_addr), PASSWORD_DEFAULT ); |
|
510 | + $passwd_hash = password_hash(md5($passwd.$lower_email_addr), PASSWORD_DEFAULT); |
|
511 | 511 | // Algorithm for changing email and/or password |
512 | 512 | if ($changing_email) { |
513 | 513 | // locally store current email to set as previous email |
@@ -595,8 +595,8 @@ discard block |
||
595 | 595 | } |
596 | 596 | |
597 | 597 | // Check if user has agreed to terms of use. |
598 | - if ( (!empty($termsofuse)) and ($account->uid) and |
|
599 | - (!boincuser_check_termsofuse($account)) and ($existinguser_tou) ) { |
|
598 | + if ((!empty($termsofuse)) and ($account->uid) and |
|
599 | + (!boincuser_check_termsofuse($account)) and ($existinguser_tou)) { |
|
600 | 600 | |
601 | 601 | // Admins are exempted. |
602 | 602 | $administrator_role = array_search('administrator', user_roles(true)); |
@@ -610,9 +610,9 @@ discard block |
||
610 | 610 | $query_for_destination = ''; |
611 | 611 | $prevdest = $_REQUEST['destination']; |
612 | 612 | if ($prevdest) { |
613 | - $query_for_destination = '?destination=' . $prevdest; |
|
613 | + $query_for_destination = '?destination='.$prevdest; |
|
614 | 614 | } |
615 | - $_REQUEST['destination'] = $path_for_destination . $query_for_destination; |
|
615 | + $_REQUEST['destination'] = $path_for_destination.$query_for_destination; |
|
616 | 616 | |
617 | 617 | } |
618 | 618 | } |
@@ -645,7 +645,7 @@ discard block |
||
645 | 645 | // In Drupal 7, these operation cases will all exist as their own hooks, |
646 | 646 | // so let's approximate that here so that this function can simply be removed |
647 | 647 | // upon migration to 7 |
648 | - switch($op) { |
|
648 | + switch ($op) { |
|
649 | 649 | case 'update': |
650 | 650 | boincuser_node_update($node); |
651 | 651 | } |
@@ -656,7 +656,7 @@ discard block |
||
656 | 656 | * is updated (forward compatible to Drupal 7) |
657 | 657 | */ |
658 | 658 | function boincuser_node_update($node) { |
659 | - switch($node->type) { |
|
659 | + switch ($node->type) { |
|
660 | 660 | case 'profile': |
661 | 661 | // Update the BOINC database directly |
662 | 662 | $account = user_load($node->uid); |
@@ -778,7 +778,7 @@ discard block |
||
778 | 778 | } |
779 | 779 | |
780 | 780 | $form['cancel'] = array( |
781 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $cancel_dest) . '</li>', |
|
781 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $cancel_dest).'</li>', |
|
782 | 782 | '#weight' => 1004, |
783 | 783 | ); |
784 | 784 | $form['form control tabs suffix'] = array( |
@@ -811,7 +811,7 @@ discard block |
||
811 | 811 | $form['buttons']['preview_changes']['#suffix'] = '</li>'; |
812 | 812 | $form['buttons']['preview_changes']['#weight'] = 1004; |
813 | 813 | $form['buttons']['cancel'] = array( |
814 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), "node/{$form['nid']['#value']}") . '</li>', |
|
814 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), "node/{$form['nid']['#value']}").'</li>', |
|
815 | 815 | '#weight' => 1005, |
816 | 816 | ); |
817 | 817 | $form['buttons']['delete']['#prefix'] = '<li class="tab">'; |
@@ -843,7 +843,7 @@ discard block |
||
843 | 843 | $form['actions']['submit']['#suffix'] = '</li>'; |
844 | 844 | $form['actions']['submit']['#weight'] = 1002; |
845 | 845 | $form['actions']['cancel'] = array( |
846 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), "node/{$form['nid']['#value']}") . '</li>', |
|
846 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), "node/{$form['nid']['#value']}").'</li>', |
|
847 | 847 | '#weight' => 1005, |
848 | 848 | ); |
849 | 849 | $form['actions']['form control tabs suffix'] = array( |
@@ -870,7 +870,7 @@ discard block |
||
870 | 870 | $form['privatemsg']['preview']['#suffix'] = '</li>'; |
871 | 871 | $form['privatemsg']['preview']['#weight'] = 1003; |
872 | 872 | $form['privatemsg']['cancel'] = array( |
873 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']) . '</li>', |
|
873 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']).'</li>', |
|
874 | 874 | '#weight' => 1004, |
875 | 875 | ); |
876 | 876 | $form['privatemsg']['form control tabs suffix'] = array( |
@@ -958,11 +958,11 @@ discard block |
||
958 | 958 | // Set special message if user has not agreed to TOU |
959 | 959 | $existinguser_tou = variable_get('boinc_weboptions_existinguser_tou', FALSE); |
960 | 960 | $termsofuse = variable_get('boinc_weboptions_termsofuse', ''); |
961 | - if ( (!boincuser_check_termsofuse($account)) and ($existinguser_tou) and (!empty($termsofuse)) and (!user_access('administer users')) ) { |
|
961 | + if ((!boincuser_check_termsofuse($account)) and ($existinguser_tou) and (!empty($termsofuse)) and (!user_access('administer users'))) { |
|
962 | 962 | drupal_set_message( |
963 | 963 | bts('INFO: You have not agreed to the terms of use for @project. You may use this form to change your email address and/or password. Please note: you may not delete your account within seven (7) days of changing your email address.', |
964 | 964 | array( |
965 | - '@project' => variable_get('site_name','Drupal-BOINC'), |
|
965 | + '@project' => variable_get('site_name', 'Drupal-BOINC'), |
|
966 | 966 | ), NULL, 'boinc:account-credentials-change') |
967 | 967 | , 'info'); |
968 | 968 | } |
@@ -1027,36 +1027,36 @@ discard block |
||
1027 | 1027 | $form['account']['boincuser_id'] = array( |
1028 | 1028 | '#value' => ' |
1029 | 1029 | <div class="form-item"> |
1030 | - <label>' . bts('BOINC user ID', array(), NULL, 'boinc:account-credentials-change') . '</label> |
|
1031 | - <span>' . $account->boincuser_id . '</span> |
|
1030 | + <label>' . bts('BOINC user ID', array(), NULL, 'boinc:account-credentials-change').'</label> |
|
1031 | + <span>' . $account->boincuser_id.'</span> |
|
1032 | 1032 | </div>', |
1033 | 1033 | ); |
1034 | 1034 | $form['account']['user_id'] = array( |
1035 | 1035 | '#value' => ' |
1036 | 1036 | <div class="form-item"> |
1037 | - <label>' . bts('Drupal user ID', array(), NULL, 'boinc:account-credentials-change') . '</label> |
|
1038 | - <span>' . $account->uid . '</span> |
|
1037 | + <label>' . bts('Drupal user ID', array(), NULL, 'boinc:account-credentials-change').'</label> |
|
1038 | + <span>' . $account->uid.'</span> |
|
1039 | 1039 | </div>', |
1040 | 1040 | ); |
1041 | 1041 | $form['account']['account_key'] = array( |
1042 | 1042 | '#value' => ' |
1043 | 1043 | <div class="form-item"> |
1044 | - <label>' . bts('Account key', array(), NULL, 'boinc:account-credentials-change') . '</label> |
|
1045 | - <span>' . $account->boincuser_account_key . '</span> |
|
1044 | + <label>' . bts('Account key', array(), NULL, 'boinc:account-credentials-change').'</label> |
|
1045 | + <span>' . $account->boincuser_account_key.'</span> |
|
1046 | 1046 | </div>', |
1047 | 1047 | ); |
1048 | 1048 | $form['account']['weak_account_key'] = array( |
1049 | 1049 | '#value' => ' |
1050 | 1050 | <div class="form-item"> |
1051 | - <label>' . bts('Weak account key', array(), NULL, 'boinc:account-credentials-change') . '</label> |
|
1052 | - <span>' . "{$account->boincuser_id}_{$account->boincuser_weak_auth}" . '</span> |
|
1051 | + <label>' . bts('Weak account key', array(), NULL, 'boinc:account-credentials-change').'</label> |
|
1052 | + <span>' . "{$account->boincuser_id}_{$account->boincuser_weak_auth}".'</span> |
|
1053 | 1053 | </div>', |
1054 | 1054 | ); |
1055 | 1055 | $form['account']['cpid'] = array( |
1056 | 1056 | '#value' => ' |
1057 | 1057 | <div class="form-item"> |
1058 | - <label>' . bts('Cross-project ID', array(), NULL, 'boinc:account-credentials-change') . '</label> |
|
1059 | - <span>' . $account->boincuser_cpid . '</span> |
|
1058 | + <label>' . bts('Cross-project ID', array(), NULL, 'boinc:account-credentials-change').'</label> |
|
1059 | + <span>' . $account->boincuser_cpid.'</span> |
|
1060 | 1060 | </div>', |
1061 | 1061 | ); |
1062 | 1062 | |
@@ -1074,7 +1074,7 @@ discard block |
||
1074 | 1074 | $form['submit']['#suffix'] = '</li>'; |
1075 | 1075 | $form['submit']['#weight'] = 1002; |
1076 | 1076 | $form['cancel'] = array( |
1077 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']) . '</li>', |
|
1077 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']).'</li>', |
|
1078 | 1078 | '#weight' => 1003, |
1079 | 1079 | ); |
1080 | 1080 | if (isset($form['delete']) AND is_array($form['delete'])) { |
@@ -1170,7 +1170,7 @@ discard block |
||
1170 | 1170 | $form['buttons']['preview_changes']['#suffix'] = '</li>'; |
1171 | 1171 | $form['buttons']['preview_changes']['#weight'] = 1004; |
1172 | 1172 | $form['buttons']['cancel'] = array( |
1173 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']) . '</li>', |
|
1173 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']).'</li>', |
|
1174 | 1174 | '#weight' => 1005, |
1175 | 1175 | ); |
1176 | 1176 | $form['buttons']['delete']['#prefix'] = '<li class="tab">'; |
@@ -1219,11 +1219,11 @@ discard block |
||
1219 | 1219 | // Set name temporarily to dummy value to beat validation |
1220 | 1220 | $form['name'] = array( |
1221 | 1221 | '#type' => 'hidden', |
1222 | - '#value' => rand() . '.' . time() |
|
1222 | + '#value' => rand().'.'.time() |
|
1223 | 1223 | ); |
1224 | 1224 | |
1225 | 1225 | // Add JS for submit button disabling |
1226 | - drupal_add_js(drupal_get_path('module', 'boincuser') . '/boincuser.js'); |
|
1226 | + drupal_add_js(drupal_get_path('module', 'boincuser').'/boincuser.js'); |
|
1227 | 1227 | |
1228 | 1228 | // Terms of use section |
1229 | 1229 | $termsofuse = variable_get('boinc_weboptions_termsofuse', ''); |
@@ -1239,7 +1239,7 @@ discard block |
||
1239 | 1239 | |
1240 | 1240 | $form['termsofuse']['title1'] = array( |
1241 | 1241 | '#weight' => -12, |
1242 | - '#value' => '<h2>' . bts(variable_get('boinc_weboptions_registrationtitle', 'Please read and acknowledge our terms of use'), array(), NULL, 'project:user-register' ) . '</h2>', |
|
1242 | + '#value' => '<h2>'.bts(variable_get('boinc_weboptions_registrationtitle', 'Please read and acknowledge our terms of use'), array(), NULL, 'project:user-register').'</h2>', |
|
1243 | 1243 | '#prefix' => '<div id="register-title1">', |
1244 | 1244 | '#suffix' => '</div>', |
1245 | 1245 | ); |
@@ -1262,7 +1262,7 @@ discard block |
||
1262 | 1262 | |
1263 | 1263 | $form['title2'] = array( |
1264 | 1264 | '#weight' => -6, |
1265 | - '#value' => '<h2>' . bts(variable_get('boinc_weboptions_registrationtitle2', 'Fill in your name, email, and choose a secure passphrase.'), array(), NULL, 'project:user-register') . '</h2>', |
|
1265 | + '#value' => '<h2>'.bts(variable_get('boinc_weboptions_registrationtitle2', 'Fill in your name, email, and choose a secure passphrase.'), array(), NULL, 'project:user-register').'</h2>', |
|
1266 | 1266 | '#prefix' => '<div id="register-title2">', |
1267 | 1267 | '#suffix' => '</div>', |
1268 | 1268 | ); |
@@ -1326,7 +1326,7 @@ discard block |
||
1326 | 1326 | $form['buttons']['submit']['#suffix'] = '</li>'; |
1327 | 1327 | $form['buttons']['submit']['#weight'] = 1002; |
1328 | 1328 | $form['buttons']['cancel'] = array( |
1329 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), 'user/login') . '</li>', |
|
1329 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), 'user/login').'</li>', |
|
1330 | 1330 | '#weight' => 1005, |
1331 | 1331 | ); |
1332 | 1332 | $form['buttons']['form control tabs suffix'] = array( |
@@ -1408,7 +1408,7 @@ discard block |
||
1408 | 1408 | */ |
1409 | 1409 | function boincuser_token_list($type = 'all') { |
1410 | 1410 | if ($type == 'user' || $type == 'all') { |
1411 | - $tokens['user']['display-name'] = t("The user's name that should be displayed"); |
|
1411 | + $tokens['user']['display-name'] = t("The user's name that should be displayed"); |
|
1412 | 1412 | return $tokens; |
1413 | 1413 | } |
1414 | 1414 | } |
@@ -1420,9 +1420,9 @@ discard block |
||
1420 | 1420 | if ($view->args) { |
1421 | 1421 | $account_id = $view->args[0]; |
1422 | 1422 | } |
1423 | - if ($view->name=="user_activity") { |
|
1423 | + if ($view->name == "user_activity") { |
|
1424 | 1424 | // Run the following custom query for the user_activity view |
1425 | - $view->build_info['query']= " |
|
1425 | + $view->build_info['query'] = " |
|
1426 | 1426 | SELECT node_revisions.vid AS vid, |
1427 | 1427 | node.nid AS node_nid, |
1428 | 1428 | node.uid AS users_node_uid, |
@@ -1462,13 +1462,13 @@ discard block |
||
1462 | 1462 | // Delete expired users in the BOINC database, user_delete table. |
1463 | 1463 | require_boinc('boinc_db'); |
1464 | 1464 | $num_deleted = BoincUserDeleted::delete_expired(); |
1465 | - if ($num_deleted>0) { |
|
1465 | + if ($num_deleted > 0) { |
|
1466 | 1466 | watchdog('boincuser', "Deleted ${num_deleted} users from user_deleted table", WATCHDOG_NOTICE); |
1467 | 1467 | } |
1468 | 1468 | |
1469 | 1469 | // Delete expired tokens from token table |
1470 | 1470 | $tokens_deleted = BoincToken::delete_expired(); |
1471 | - if ($tokens_deleted>0) { |
|
1471 | + if ($tokens_deleted > 0) { |
|
1472 | 1472 | watchdog('boincuser', "Deleted ${tokens_deleted} tokens from token table", WATCHDOG_NOTICE); |
1473 | 1473 | } |
1474 | 1474 | } |
@@ -1553,38 +1553,38 @@ discard block |
||
1553 | 1553 | case 'boinc': |
1554 | 1554 | $output .= '<ol>'; |
1555 | 1555 | if ($registration_enabled) { |
1556 | - $output .= '<li>' . bts('First !create_an_account here at @sitename.', |
|
1556 | + $output .= '<li>'.bts('First !create_an_account here at @sitename.', |
|
1557 | 1557 | array( |
1558 | 1558 | '!create_an_account' => l(bts('create an account', array(), NULL, 'boinc:join-page'), 'user/registration'), |
1559 | 1559 | '@sitename' => $site_name, |
1560 | - ), NULL, 'boinc:join-page') . '</li>'; |
|
1560 | + ), NULL, 'boinc:join-page').'</li>'; |
|
1561 | 1561 | } |
1562 | - $output .= ' <li>' . bts("Install BOINC on this device if not already present.", array(), NULL, 'boinc:join-page') . '</li>'; |
|
1563 | - $output .= ' <li>' . bts("Select <i>Tools / Add Project</i>. Choose @sitename from the list, or enter @siteurl.", |
|
1562 | + $output .= ' <li>'.bts("Install BOINC on this device if not already present.", array(), NULL, 'boinc:join-page').'</li>'; |
|
1563 | + $output .= ' <li>'.bts("Select <i>Tools / Add Project</i>. Choose @sitename from the list, or enter @siteurl.", |
|
1564 | 1564 | array( |
1565 | 1565 | '@sitename' => $site_name, |
1566 | 1566 | '@siteurl' => $base_url, |
1567 | - ), NULL, 'boinc:join-page') . '</li>'; |
|
1567 | + ), NULL, 'boinc:join-page').'</li>'; |
|
1568 | 1568 | if ($registration_enabled) { |
1569 | - $output .= '<li>' . bts("If you're running a command-line or pre-5.0 version of BOINC, use <b>!boinccmd</b> to add the project.", |
|
1569 | + $output .= '<li>'.bts("If you're running a command-line or pre-5.0 version of BOINC, use <b>!boinccmd</b> to add the project.", |
|
1570 | 1570 | array( |
1571 | 1571 | '!boinccmd' => l('boinccmd --project_attach', 'http://boinc.berkeley.edu/wiki/Boinccmd_tool'), |
1572 | - ), NULL, 'boinc:join-page') . '</li>'; |
|
1572 | + ), NULL, 'boinc:join-page').'</li>'; |
|
1573 | 1573 | } |
1574 | 1574 | else { |
1575 | - $output .= '<li>' . bts("If you're running a command-line version of BOINC, |
|
1575 | + $output .= '<li>'.bts("If you're running a command-line version of BOINC, |
|
1576 | 1576 | please follow the <b>!instructionslink</b> to first <i>create an account</i>, and then <i>attach</i> to this project. Use the same project URL as above.", |
1577 | 1577 | array( |
1578 | 1578 | '!instructionslink' => l('instructions', 'http://boinc.berkeley.edu/wiki/Boinccmd_tool'), |
1579 | - ), NULL, 'boinc:join-page') . '</li>'; |
|
1579 | + ), NULL, 'boinc:join-page').'</li>'; |
|
1580 | 1580 | } |
1581 | - $output .= '<li>' . bts("If you're running a pre-5.0 version of BOINC, please |
|
1581 | + $output .= '<li>'.bts("If you're running a pre-5.0 version of BOINC, please |
|
1582 | 1582 | upgrade to a more recent version of BOINC to create an account |
1583 | 1583 | at @this_project.", |
1584 | 1584 | array( |
1585 | 1585 | '@this_project' => $site_name, |
1586 | - ), NULL, 'boinc:join-page') . '</li>'; |
|
1587 | - $output .= '</ol>'; |
|
1586 | + ), NULL, 'boinc:join-page').'</li>'; |
|
1587 | + $output .= '</ol>'; |
|
1588 | 1588 | break; |
1589 | 1589 | case 'new': |
1590 | 1590 | default: |
@@ -1596,34 +1596,34 @@ discard block |
||
1596 | 1596 | // $ruleslink = drupal_lookup_path('source', $ruleslinkB); |
1597 | 1597 | //} |
1598 | 1598 | |
1599 | - $ruleslink = drupal_lookup_path('source', variable_get('boinc_weboptions_rulespolicies', '') ); |
|
1599 | + $ruleslink = drupal_lookup_path('source', variable_get('boinc_weboptions_rulespolicies', '')); |
|
1600 | 1600 | |
1601 | 1601 | // Join page output |
1602 | 1602 | $output .= '<ol>'; |
1603 | 1603 | if ($registration_enabled) { |
1604 | - $output .= '<li>' . bts('First !create_an_account here at @sitename.', |
|
1604 | + $output .= '<li>'.bts('First !create_an_account here at @sitename.', |
|
1605 | 1605 | array( |
1606 | 1606 | '!create_an_account' => l(bts('create an account', array(), NULL, 'boinc:join-page'), 'user/registration'), |
1607 | 1607 | '@sitename' => $site_name, |
1608 | - ), NULL, 'boinc:join-page') . '</li>'; |
|
1608 | + ), NULL, 'boinc:join-page').'</li>'; |
|
1609 | 1609 | } |
1610 | - else if ( menu_valid_path(array('link_path' => $ruleslink)) ) { |
|
1611 | - $output .= ' <li>' . bts("Read our !rules_and_policies.", array( |
|
1610 | + else if (menu_valid_path(array('link_path' => $ruleslink))) { |
|
1611 | + $output .= ' <li>'.bts("Read our !rules_and_policies.", array( |
|
1612 | 1612 | '!rules_and_policies' => l(bts('Rules and Policies', array(), NULL, 'boinc:join-page'), $ruleslink), |
1613 | - ), NULL, 'boinc:join-page') . '</li>'; |
|
1613 | + ), NULL, 'boinc:join-page').'</li>'; |
|
1614 | 1614 | } |
1615 | - $output .= ' <li>' . bts('Download the BOINC desktop software.', array(), NULL, 'boinc:join-page'); |
|
1615 | + $output .= ' <li>'.bts('Download the BOINC desktop software.', array(), NULL, 'boinc:join-page'); |
|
1616 | 1616 | $output .= ' <p>'; |
1617 | 1617 | $output .= ' <a class="button" href="http://boinc.berkeley.edu/download.php">Download</a>'; |
1618 | 1618 | $output .= ' </p>'; |
1619 | - $output .= ' ' . bts("For Android devices, download BOINC from the Google Play Store or Amazon App Store.", array(), NULL, 'boinc:join-page'); |
|
1619 | + $output .= ' '.bts("For Android devices, download BOINC from the Google Play Store or Amazon App Store.", array(), NULL, 'boinc:join-page'); |
|
1620 | 1620 | $output .= ' </li>'; |
1621 | - $output .= ' <li>' . bts('Run the installer.', array(), NULL, 'boinc:join-page') . '</li>'; |
|
1622 | - $output .= ' <li>' . bts('Choose @sitename from the list, or enter @siteurl.', array( |
|
1621 | + $output .= ' <li>'.bts('Run the installer.', array(), NULL, 'boinc:join-page').'</li>'; |
|
1622 | + $output .= ' <li>'.bts('Choose @sitename from the list, or enter @siteurl.', array( |
|
1623 | 1623 | '@sitename' => $site_name, |
1624 | 1624 | '@siteurl' => $base_url, |
1625 | - ), NULL, 'boinc:join-page') . '</li>'; |
|
1626 | - $output .= '</ol>'; |
|
1625 | + ), NULL, 'boinc:join-page').'</li>'; |
|
1626 | + $output .= '</ol>'; |
|
1627 | 1627 | } |
1628 | 1628 | $output .= '</div>'; |
1629 | 1629 | return $output; |
@@ -1636,7 +1636,7 @@ discard block |
||
1636 | 1636 | global $user; |
1637 | 1637 | $site_name = variable_get('site_name', 'Drupal-BOINC'); |
1638 | 1638 | // get the front page message from database; this is set in the admin interface under BOINC Other |
1639 | - $site_message = variable_get('boinc_other_frontpage',''); |
|
1639 | + $site_message = variable_get('boinc_other_frontpage', ''); |
|
1640 | 1640 | |
1641 | 1641 | // Determine the user of the day |
1642 | 1642 | $current_uotd = db_fetch_object(db_query(" |
@@ -1658,30 +1658,30 @@ discard block |
||
1658 | 1658 | $output .= ($user->uid) ? bts('Welcome back!', array(), NULL, 'boinc:front-page') : ($site_name ? bts('What is @this_project?', array('@this_project' => $site_name)) : bts('Welcome!', array(), NULL, 'boinc:front-page')); |
1659 | 1659 | $output .= '</h2>'; |
1660 | 1660 | $output .= '<div class="boinc-overview balance-height-front">'; |
1661 | - $output .= ' <div>' . bts($site_message, array(), NULL, "project:front page") . ' ' . l(bts('Learn more', array(), NULL, 'boinc:front-page'), 'about') . '</div>'; |
|
1661 | + $output .= ' <div>'.bts($site_message, array(), NULL, "project:front page").' '.l(bts('Learn more', array(), NULL, 'boinc:front-page'), 'about').'</div>'; |
|
1662 | 1662 | if ($user->uid) { |
1663 | - $output .= ' <div>' . l(bts('View account', array(), NULL, 'boinc:front-page'), 'dashboard', array('attributes' => array('class' => 'join button'))) . '</div>'; |
|
1663 | + $output .= ' <div>'.l(bts('View account', array(), NULL, 'boinc:front-page'), 'dashboard', array('attributes' => array('class' => 'join button'))).'</div>'; |
|
1664 | 1664 | } |
1665 | 1665 | else { |
1666 | - $output .= ' <div>' . l(bts('Join now', array(), NULL, 'boinc:front-page'), 'join', array('attributes' => array('class' => 'join button'))) . '</div>'; |
|
1666 | + $output .= ' <div>'.l(bts('Join now', array(), NULL, 'boinc:front-page'), 'join', array('attributes' => array('class' => 'join button'))).'</div>'; |
|
1667 | 1667 | } |
1668 | 1668 | $output .= '</div>'; |
1669 | 1669 | $output .= '<div class="boinc-overview-details">'; |
1670 | 1670 | $output .= ' <div class="detail-container">'; |
1671 | - $output .= ' <a class="user-of-the-day" href="account/' . $uotd->uid . '">'; |
|
1671 | + $output .= ' <a class="user-of-the-day" href="account/'.$uotd->uid.'">'; |
|
1672 | 1672 | $output .= ' <div class="picture">'; |
1673 | 1673 | $output .= theme('imagefield_image', $uotd_image['image'], $uotd_image['alt'], |
1674 | 1674 | $uotd_image['alt'], array(), FALSE); |
1675 | 1675 | $output .= ' </div>'; |
1676 | - $output .= ' <div class="text">' . bts('User of the day', array(), NULL, 'boinc:front-page') . '</div>'; |
|
1677 | - $output .= ' <div class="detail">' . $uotd->boincuser_name . '</div>'; |
|
1676 | + $output .= ' <div class="text">'.bts('User of the day', array(), NULL, 'boinc:front-page').'</div>'; |
|
1677 | + $output .= ' <div class="detail">'.$uotd->boincuser_name.'</div>'; |
|
1678 | 1678 | $output .= ' </a>'; |
1679 | 1679 | $output .= ' <div class="volunteers">'; |
1680 | - $output .= ' <div class="text">' . bts('Over 500,000 volunteers and counting.', array(), NULL, 'boinc:front-page') . '</div>'; |
|
1680 | + $output .= ' <div class="text">'.bts('Over 500,000 volunteers and counting.', array(), NULL, 'boinc:front-page').'</div>'; |
|
1681 | 1681 | $output .= ' <div class="platforms">'; |
1682 | - $output .= ' <div class="detail platform windows">' . bts('Windows', array(), NULL, 'boinc:front-page') . '</div>'; |
|
1683 | - $output .= ' <div class="detail platform mac">' . bts('Mac', array(), NULL, 'boinc:front-page') . '</div>'; |
|
1684 | - $output .= ' <div class="detail platform linux">' . bts('Linux', array(), NULL, 'boinc:front-page') . '</div>'; |
|
1682 | + $output .= ' <div class="detail platform windows">'.bts('Windows', array(), NULL, 'boinc:front-page').'</div>'; |
|
1683 | + $output .= ' <div class="detail platform mac">'.bts('Mac', array(), NULL, 'boinc:front-page').'</div>'; |
|
1684 | + $output .= ' <div class="detail platform linux">'.bts('Linux', array(), NULL, 'boinc:front-page').'</div>'; |
|
1685 | 1685 | $output .= ' </div>'; |
1686 | 1686 | $output .= ' </div>'; |
1687 | 1687 | $output .= ' </div>'; |
@@ -1712,7 +1712,7 @@ discard block |
||
1712 | 1712 | $enablethisRPC = variable_get('boinc_weboptions_enableaccountcreateRPC', TRUE); |
1713 | 1713 | if (!$enablethisRPC) { |
1714 | 1714 | $mess = bts('Account creation is done through our Web site. Please register at @url', array( |
1715 | - '@url' => $base_url . '/user/registration', |
|
1715 | + '@url' => $base_url.'/user/registration', |
|
1716 | 1716 | ), |
1717 | 1717 | NULL, 'boinc:create_account'); |
1718 | 1718 | xml_error(-208, $mess); |
@@ -1744,8 +1744,8 @@ discard block |
||
1744 | 1744 | $boinc_user = BoincUser::lookup_email_addr($params['email_addr']); |
1745 | 1745 | if ($boinc_user) { |
1746 | 1746 | // Return authenticator for existing users |
1747 | - if ( ($params['passwd_hash'] == $boinc_user->passwd_hash) or |
|
1748 | - password_verify($params['passwd_hash'], $boinc_user->passwd_hash) ) { |
|
1747 | + if (($params['passwd_hash'] == $boinc_user->passwd_hash) or |
|
1748 | + password_verify($params['passwd_hash'], $boinc_user->passwd_hash)) { |
|
1749 | 1749 | $output = array('authenticator' => $boinc_user->authenticator); |
1750 | 1750 | } |
1751 | 1751 | else { |
@@ -1801,7 +1801,7 @@ discard block |
||
1801 | 1801 | // Ensure there is a authentication token before continuing |
1802 | 1802 | if (empty($authtoken)) { |
1803 | 1803 | drupal_not_found(); |
1804 | - return ; |
|
1804 | + return; |
|
1805 | 1805 | } |
1806 | 1806 | |
1807 | 1807 | if (strlen($authtoken) != 32) { |
@@ -1823,8 +1823,8 @@ discard block |
||
1823 | 1823 | } |
1824 | 1824 | |
1825 | 1825 | // Lookup path to custom account finish page |
1826 | - $customaccountfinishpath = drupal_lookup_path('source', variable_get('boinc_weboptions_accountfinish', '') ); |
|
1827 | - if ( menu_valid_path(array('link_path' => $customaccountfinishpath)) ) { |
|
1826 | + $customaccountfinishpath = drupal_lookup_path('source', variable_get('boinc_weboptions_accountfinish', '')); |
|
1827 | + if (menu_valid_path(array('link_path' => $customaccountfinishpath))) { |
|
1828 | 1828 | $node = menu_get_object('node', 1, $customaccountfinishpath); |
1829 | 1829 | if ($node) { |
1830 | 1830 | return node_page_view($node); |
@@ -1833,12 +1833,12 @@ discard block |
||
1833 | 1833 | |
1834 | 1834 | // open links in new window |
1835 | 1835 | $options = array( |
1836 | - 'attributes' => array( 'target' => '_blank' ), |
|
1836 | + 'attributes' => array('target' => '_blank'), |
|
1837 | 1837 | ); |
1838 | 1838 | |
1839 | 1839 | // Check moderation page exists |
1840 | - $moderationpath = drupal_lookup_path('source', variable_get('boinc_weboptions_moderationpage', '') ); |
|
1841 | - if ( menu_valid_path(array('link_path' => $moderationpath)) ) { |
|
1840 | + $moderationpath = drupal_lookup_path('source', variable_get('boinc_weboptions_moderationpage', '')); |
|
1841 | + if (menu_valid_path(array('link_path' => $moderationpath))) { |
|
1842 | 1842 | $modsentence = bts('Please note: user profiles are subject to !moderation.', array('!moderation' => l(bts('moderation', array(), NULL, 'boinc:account-finish'), $moderationpath, $options)), NULL, 'boinc:account-finish'); |
1843 | 1843 | } else { |
1844 | 1844 | $modsentence = bts('Please note: user profiles are subject to moderation.', array(), NULL, 'boinc:account-finish'); |
@@ -1846,11 +1846,11 @@ discard block |
||
1846 | 1846 | |
1847 | 1847 | $username = $user->boincuser_name; |
1848 | 1848 | $site_name = variable_get('site_name', 'Drupal-BOINC'); |
1849 | - $output = "<p>" . bts('Thank you @user_name for joining @site_name. Your account has been created. Your BOINC client should start working on assigned tasks soon, without any additional action or configuration. Please visit the links below for more information and additional options. (Links will open in a new window.)', |
|
1849 | + $output = "<p>".bts('Thank you @user_name for joining @site_name. Your account has been created. Your BOINC client should start working on assigned tasks soon, without any additional action or configuration. Please visit the links below for more information and additional options. (Links will open in a new window.)', |
|
1850 | 1850 | array( |
1851 | 1851 | '@user_name' => $username, |
1852 | 1852 | '@site_name' => $site_name, |
1853 | - ), NULL, 'boinc:account-finish') . "</p>"; |
|
1853 | + ), NULL, 'boinc:account-finish')."</p>"; |
|
1854 | 1854 | |
1855 | 1855 | $links = array( |
1856 | 1856 | array( |
@@ -1916,7 +1916,7 @@ discard block |
||
1916 | 1916 | ); |
1917 | 1917 | |
1918 | 1918 | //List of links |
1919 | - $output .= theme_item_list($links, $title = NULL, $type='ul'); |
|
1919 | + $output .= theme_item_list($links, $title = NULL, $type = 'ul'); |
|
1920 | 1920 | |
1921 | 1921 | return $output; |
1922 | 1922 | } |
@@ -2033,7 +2033,7 @@ discard block |
||
2033 | 2033 | global $base_url; |
2034 | 2034 | global $base_path; |
2035 | 2035 | $site_name = variable_get('site_name', 'Drupal-BOINC'); |
2036 | - $site_url = $base_url . $base_path; |
|
2036 | + $site_url = $base_url.$base_path; |
|
2037 | 2037 | $moderator = user_load($user->uid); |
2038 | 2038 | $profile->moderate = 0; |
2039 | 2039 | $profile->status = 0; |
@@ -2094,7 +2094,7 @@ discard block |
||
2094 | 2094 | global $base_url; |
2095 | 2095 | global $base_path; |
2096 | 2096 | $site_name = variable_get('site_name', 'Drupal-BOINC'); |
2097 | - $site_url = $base_url . $base_path; |
|
2097 | + $site_url = $base_url.$base_path; |
|
2098 | 2098 | $moderator = user_load($user->uid); |
2099 | 2099 | $settings = array( |
2100 | 2100 | 'from' => '', |
@@ -2198,25 +2198,25 @@ discard block |
||
2198 | 2198 | if (!$projects) return bts('no projects...', array(), NULL, 'boinc:account-dashboard'); |
2199 | 2199 | |
2200 | 2200 | $output = ''; |
2201 | - $output .= '<table class="user-projects">' . "\n"; |
|
2202 | - $output .= '<thead>' . "\n"; |
|
2203 | - $output .= ' <tr>' . "\n"; |
|
2204 | - $output .= ' <th>' . bts('Name', array(), NULL, 'boinc:project-name:-1:ignoreoverwrite') . '</th>' . "\n"; |
|
2205 | - $output .= ' <th class="numeric">' . bts('Avg credit', array(), NULL, 'boinc:account-dashboard') . '</th>' . "\n"; |
|
2206 | - $output .= ' <th class="numeric">' . bts('Total credit', array(), NULL, 'boinc:user-or-team-total-credits') . '</th>' . "\n"; |
|
2207 | - $output .= ' </tr>' . "\n"; |
|
2208 | - $output .= '</thead>' . "\n"; |
|
2209 | - $output .= '<tbody>' . "\n"; |
|
2201 | + $output .= '<table class="user-projects">'."\n"; |
|
2202 | + $output .= '<thead>'."\n"; |
|
2203 | + $output .= ' <tr>'."\n"; |
|
2204 | + $output .= ' <th>'.bts('Name', array(), NULL, 'boinc:project-name:-1:ignoreoverwrite').'</th>'."\n"; |
|
2205 | + $output .= ' <th class="numeric">'.bts('Avg credit', array(), NULL, 'boinc:account-dashboard').'</th>'."\n"; |
|
2206 | + $output .= ' <th class="numeric">'.bts('Total credit', array(), NULL, 'boinc:user-or-team-total-credits').'</th>'."\n"; |
|
2207 | + $output .= ' </tr>'."\n"; |
|
2208 | + $output .= '</thead>'."\n"; |
|
2209 | + $output .= '<tbody>'."\n"; |
|
2210 | 2210 | foreach ($projects AS $project) { |
2211 | - $url = rtrim($project->url, '/') . '/show_user.php?userid=' . $project->id; |
|
2212 | - $output .= ' <tr>' . "\n"; |
|
2213 | - $output .= ' <td>' . l($project->name, $url) . '</td>' . "\n"; |
|
2214 | - $output .= ' <td class="numeric">' . boincwork_format_stats((float) $project->expavg_credit) . '</td>' . "\n"; |
|
2215 | - $output .= ' <td class="numeric">' . boincwork_format_stats((float) $project->total_credit) . '</td>' . "\n"; |
|
2216 | - $output .= ' </tr>' . "\n"; |
|
2211 | + $url = rtrim($project->url, '/').'/show_user.php?userid='.$project->id; |
|
2212 | + $output .= ' <tr>'."\n"; |
|
2213 | + $output .= ' <td>'.l($project->name, $url).'</td>'."\n"; |
|
2214 | + $output .= ' <td class="numeric">'.boincwork_format_stats((float)$project->expavg_credit).'</td>'."\n"; |
|
2215 | + $output .= ' <td class="numeric">'.boincwork_format_stats((float)$project->total_credit).'</td>'."\n"; |
|
2216 | + $output .= ' </tr>'."\n"; |
|
2217 | 2217 | } |
2218 | - $output .= '</tbody>' . "\n"; |
|
2219 | - $output .= '</table>' . "\n"; |
|
2218 | + $output .= '</tbody>'."\n"; |
|
2219 | + $output .= '</table>'."\n"; |
|
2220 | 2220 | $more_link = ($account) ? "user/{$account->uid}/stats" : 'account/stats'; |
2221 | 2221 | //$output .= "<div class=\"more-link\"><a href=\"{$more_link}\">More stats</a></div>" . "\n"; |
2222 | 2222 | return $output; |
@@ -2236,8 +2236,8 @@ discard block |
||
2236 | 2236 | 'cpid' => $cpid |
2237 | 2237 | ); |
2238 | 2238 | $args = array(); |
2239 | - foreach ($get as $arg => $value) $args[] = "{$arg}=" . rawurlencode($value); |
|
2240 | - $query = '?' . implode('&', $args); |
|
2239 | + foreach ($get as $arg => $value) $args[] = "{$arg}=".rawurlencode($value); |
|
2240 | + $query = '?'.implode('&', $args); |
|
2241 | 2241 | |
2242 | 2242 | // Load XML from RPC |
2243 | 2243 | $target_url = "http://{$stats_server}/{$stats_rpc}{$query}"; |
@@ -2309,12 +2309,12 @@ discard block |
||
2309 | 2309 | $output .= '<ul class="tab-list">'; |
2310 | 2310 | $count = 0; |
2311 | 2311 | foreach ($links as $key => $link) { |
2312 | - $output .= '<li class="' . (($count == 0) ? 'first primary ' : '') . 'tab">'; |
|
2312 | + $output .= '<li class="'.(($count == 0) ? 'first primary ' : '').'tab">'; |
|
2313 | 2313 | $output .= l($link['title'], $link['href'], array('query' => drupal_get_destination())); |
2314 | 2314 | $output .= '</li>'; |
2315 | 2315 | $count++; |
2316 | 2316 | } |
2317 | - $output .= '<li class="' . (($count) ? '' : 'first ') . 'last tab">' . flag_create_link('abuse_user_meta', $account->uid) . '</li>'; |
|
2317 | + $output .= '<li class="'.(($count) ? '' : 'first ').'last tab">'.flag_create_link('abuse_user_meta', $account->uid).'</li>'; |
|
2318 | 2318 | $output .= '</ul>'; |
2319 | 2319 | } |
2320 | 2320 | return $output; |
@@ -2355,7 +2355,7 @@ discard block |
||
2355 | 2355 | function boincuser_apachesolr_index_documents_alter(array &$documents, $entity, $entity_type, $env_id) { |
2356 | 2356 | |
2357 | 2357 | foreach ($documents as $document) { |
2358 | - if ( $document->entity_type=='node' AND $document->bundle=='profile' ) { |
|
2358 | + if ($document->entity_type == 'node' AND $document->bundle == 'profile') { |
|
2359 | 2359 | // Node information. |
2360 | 2360 | $nid = $document->entity_id; |
2361 | 2361 | $node = node_load($nid); |
@@ -2405,11 +2405,11 @@ discard block |
||
2405 | 2405 | // privatemsg module. We need to convert them back to spaces for the |
2406 | 2406 | // check below. |
2407 | 2407 | $boincname = preg_replace("/\\xc2\\xa0/", " ", $boincname); |
2408 | - if ($drupalid>0) { |
|
2408 | + if ($drupalid > 0) { |
|
2409 | 2409 | if ($recipient = user_load(array('uid' => $drupalid))) { |
2410 | 2410 | // Double-check that the loaded user matches both boincuser_id |
2411 | 2411 | // and boincuser_name. |
2412 | - if ( ($boincid == $recipient->boincuser_id) AND ($boincname == $recipient->boincuser_name) ) { |
|
2412 | + if (($boincid == $recipient->boincuser_id) AND ($boincname == $recipient->boincuser_name)) { |
|
2413 | 2413 | return $recipient; |
2414 | 2414 | } |
2415 | 2415 | } |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * Callback admin/boinc/import/settings |
6 | 6 | */ |
7 | 7 | function boincimport_admin_settings() { |
8 | - global $conf ; |
|
8 | + global $conf; |
|
9 | 9 | global $db_url; |
10 | 10 | global $base_url; |
11 | 11 | $stage = variable_get('boincimport_config_stage', 0); |
@@ -27,17 +27,17 @@ discard block |
||
27 | 27 | |
28 | 28 | $output = ''; |
29 | 29 | if (!variable_get('boincimport_tested', 0)) { |
30 | - $form['test']['#collapsed']= FALSE; |
|
30 | + $form['test']['#collapsed'] = FALSE; |
|
31 | 31 | $output = '<span class="marker">'; |
32 | 32 | $ready_for_migration = 0; |
33 | 33 | } |
34 | - $output .= '<p>' . t('The migration will modify and even destroy some data. You |
|
34 | + $output .= '<p>'.t('The migration will modify and even destroy some data. You |
|
35 | 35 | must test this module on a copy of your data first, several times if necessary. |
36 | 36 | Only use this module on your live data when you are familiar with the procedure |
37 | - and you\'re confident everything will run smoothly.') . '</p><p>' . t('Also, you |
|
37 | + and you\'re confident everything will run smoothly.').'</p><p>'.t('Also, you |
|
38 | 38 | should make a full backup of your database just prior to performing the |
39 | 39 | migration on the live data. It is better to turn off both the BOINC site and the |
40 | - Drupal site during the migration.') . '</p>'; |
|
40 | + Drupal site during the migration.').'</p>'; |
|
41 | 41 | if (!variable_get('boincimport_tested', 0)) { |
42 | 42 | $output .= '</span>'; |
43 | 43 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | // Where is BOINC data? |
57 | 57 | $pre = variable_get('boincimport_table_prefix', ''); |
58 | - $tables = array($pre .'forum', $pre .'post', $pre .'thread', $pre .'user'); |
|
58 | + $tables = array($pre.'forum', $pre.'post', $pre.'thread', $pre.'user'); |
|
59 | 59 | $db = (is_array($db_url) AND isset($db_url['boinc_rw'])) ? 'boinc_rw' : 'default'; |
60 | 60 | $result = _boincimport_check_tables($tables, $db, 0); |
61 | 61 | |
@@ -79,8 +79,8 @@ discard block |
||
79 | 79 | $default_db_url = is_array($db_url) ? end($db_url) : $db_url; |
80 | 80 | $url = variable_get('boincimport_db_url', $default_db_url); |
81 | 81 | if (!preg_match('{(mysql|pgsql):\/\/(.+):(.*?)@(.+)/(\w+)}i', $url)) { |
82 | - $output = '<p class="marker">'. t('Set the address of the BOINC database |
|
83 | - according to the following format:') . '<br /><pre> |
|
82 | + $output = '<p class="marker">'.t('Set the address of the BOINC database |
|
83 | + according to the following format:').'<br /><pre> |
|
84 | 84 | mysql://boinc_username:boinc_password@localhost/boinc_database |
85 | 85 | </pre></p>'; |
86 | 86 | $ready_for_migration = 0; |
@@ -98,13 +98,13 @@ discard block |
||
98 | 98 | ); |
99 | 99 | } |
100 | 100 | |
101 | - $output = '<p>' . t('Note that due to a limitation within Drupal core, we cannot |
|
101 | + $output = '<p>'.t('Note that due to a limitation within Drupal core, we cannot |
|
102 | 102 | import messages from one database type to another database type. E.g, we |
103 | 103 | cannot import BOINC from a myqsl DB, to a postgresql DB. You need to import |
104 | 104 | the data into the same type of database first (import all the BOINC data, as is, |
105 | - from mysql to postgresql).') . '</p><p>' . t('If both BOINC and Drupal are on |
|
105 | + from mysql to postgresql).').'</p><p>'.t('If both BOINC and Drupal are on |
|
106 | 106 | postgresql, see !this_issue.', array('!this_issue' => l(t('this issue'), |
107 | - 'http://drupal.org/node/64877', array('attributes' => array('target' => '_blank'))))) . '</p>'; |
|
107 | + 'http://drupal.org/node/64877', array('attributes' => array('target' => '_blank'))))).'</p>'; |
|
108 | 108 | $form['boinc_data']['note'] = array('#value' => $output); |
109 | 109 | |
110 | 110 | // BOINC table prefix |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $output = $result['html']; |
122 | 122 | if ($result['result'] != 1) { |
123 | 123 | $ready_for_migration = 0; |
124 | - $form['boinc_data']['#collapsed']= FALSE; |
|
124 | + $form['boinc_data']['#collapsed'] = FALSE; |
|
125 | 125 | $output .= '<span class="marker">'; |
126 | 126 | $output .= t('Some tables couldn\'t be found. Are the database settings correct? |
127 | 127 | Please correct the errors so that the BOINC tables can be accessed.'); |
@@ -169,15 +169,15 @@ discard block |
||
169 | 169 | '#collapsible' => TRUE, |
170 | 170 | '#collapsed' => TRUE |
171 | 171 | ); |
172 | - $output = '<p>'. t('Select which !input_format should be used for the imported |
|
172 | + $output = '<p>'.t('Select which !input_format should be used for the imported |
|
173 | 173 | messages. It is highly-recommended that this value be left as it is, as the |
174 | 174 | Full HTML and PHP code formats can be very dangerous!', |
175 | - array('!input_format' => l(t('input format'), 'admin/settings/filters'))) .'</p>'; |
|
175 | + array('!input_format' => l(t('input format'), 'admin/settings/filters'))).'</p>'; |
|
176 | 176 | $form['input']['intro'] = array('#value' => $output); |
177 | 177 | |
178 | 178 | $formats = db_query('SELECT format, name FROM {filter_formats}'); |
179 | 179 | while ($format = db_fetch_array($formats)) { |
180 | - $input_formats[$format['format']]= $format['name']; |
|
180 | + $input_formats[$format['format']] = $format['name']; |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | // By default, use the format named "Rich text"; fall back to Filtered HTML |
@@ -194,10 +194,10 @@ discard block |
||
194 | 194 | ); |
195 | 195 | if (!$input_format) { |
196 | 196 | $ready_for_migration = 0; |
197 | - $form['input']['#collapsed']= FALSE; |
|
197 | + $form['input']['#collapsed'] = FALSE; |
|
198 | 198 | } |
199 | - $output = '<p><em>'. t('This setting will be applied to all posts and private |
|
200 | - messages.') .'</em></p>'; |
|
199 | + $output = '<p><em>'.t('This setting will be applied to all posts and private |
|
200 | + messages.').'</em></p>'; |
|
201 | 201 | $form['input']['result'] = array('#value' => $output); |
202 | 202 | |
203 | 203 | // BBcode settings |
@@ -208,23 +208,23 @@ discard block |
||
208 | 208 | '#collapsed' => TRUE, |
209 | 209 | ); |
210 | 210 | |
211 | - $output = '<p>' . t('BOINC posts are often formatted in BBcode. During the |
|
212 | - import process, BBcode can be handled in two diffent ways') . ':</p>'; |
|
213 | - $output .= '<ul><li>' . t('Leave the BBcode as is and use the !bbcode_module |
|
211 | + $output = '<p>'.t('BOINC posts are often formatted in BBcode. During the |
|
212 | + import process, BBcode can be handled in two diffent ways').':</p>'; |
|
213 | + $output .= '<ul><li>'.t('Leave the BBcode as is and use the !bbcode_module |
|
214 | 214 | after the migration to filter the imported posts. In this case, the module |
215 | 215 | is not required during the migration, but will need to be installed and |
216 | 216 | configured later.', |
217 | 217 | array('!bbcode_module' => l(t('bbcode module'), 'http://drupal.org/project/bbcode', |
218 | - array('attributes' => array('target' => '_blank'))))) . '</li>'; |
|
219 | - $output .= '<li>' . t('Filter the BBcode now and replace it with plain HTML. |
|
218 | + array('attributes' => array('target' => '_blank'))))).'</li>'; |
|
219 | + $output .= '<li>'.t('Filter the BBcode now and replace it with plain HTML. |
|
220 | 220 | The BBcode module will be required during the migration process, but can |
221 | - be disabled afterwards.') . '</li></ul>'; |
|
222 | - $output .= '<p>' . t('An appropriate input filter should be chosen, as well, |
|
221 | + be disabled afterwards.').'</li></ul>'; |
|
222 | + $output .= '<p>'.t('An appropriate input filter should be chosen, as well, |
|
223 | 223 | as it will affect how the post is displayed. For example, if BBcode is |
224 | 224 | removed and replaced by HTML, some HTML tags will be stripped by the |
225 | 225 | "Filtered HTML" input format unless they are first added to the list of |
226 | 226 | allowed tags in that format. See the !input_formats page.', |
227 | - array('!input_formats' => l(t('input formats'), 'admin/settings/filters'))) . '</p>'; |
|
227 | + array('!input_formats' => l(t('input formats'), 'admin/settings/filters'))).'</p>'; |
|
228 | 228 | |
229 | 229 | $form['bbcode']['intro'] = array('#value' => $output); |
230 | 230 | $form['bbcode']['boincimport_bbcode'] = array( |
@@ -254,28 +254,28 @@ discard block |
||
254 | 254 | $result = db_query($sql, $input_format); |
255 | 255 | if (!db_result($result)) { |
256 | 256 | $form['bbcode']['#collapsed'] = FALSE; |
257 | - $output .= '<p class="marker">'. t('You need to !enable_bbcode_input and |
|
257 | + $output .= '<p class="marker">'.t('You need to !enable_bbcode_input and |
|
258 | 258 | then !configure_bbcode_options', array( |
259 | 259 | '!enable_bbcode_input' => l(t('enable BBcode in the selected input format'), "admin/settings/filters/{$input_format}"), |
260 | - '!configure_bbcode_options' => l(t('configure BBcode options'), "admin/settings/filters/{$input_format}/configure"))) .'</p>'; |
|
260 | + '!configure_bbcode_options' => l(t('configure BBcode options'), "admin/settings/filters/{$input_format}/configure"))).'</p>'; |
|
261 | 261 | } |
262 | - $output .= '<p>'. t('For best results, !disable_all_options', |
|
263 | - array('!disable_all_options' => l(t('all four BBcode configure options should be disabled'), "admin/settings/filters/{$input_format}/configure"))) . '.</p>'; |
|
262 | + $output .= '<p>'.t('For best results, !disable_all_options', |
|
263 | + array('!disable_all_options' => l(t('all four BBcode configure options should be disabled'), "admin/settings/filters/{$input_format}/configure"))).'.</p>'; |
|
264 | 264 | } else { |
265 | 265 | if ($bbcode_disabled) { |
266 | 266 | $form['bbcode']['#collapsed'] = FALSE; |
267 | - $output .= '<p>'. t('The !bbcode_module is recommended, but not required. |
|
267 | + $output .= '<p>'.t('The !bbcode_module is recommended, but not required. |
|
268 | 268 | You may !enable_bbcode after having installed it.', array( |
269 | 269 | '!bbcode_module' => l(t('bbcode module'), 'http://drupal.org/project/bbcode', array('attributes' => array('target' => '_blank'))), |
270 | - '!enable_bbcode' => l(t('enable the bbcode module'), 'admin/build/modules'))) .'</p>'; |
|
270 | + '!enable_bbcode' => l(t('enable the bbcode module'), 'admin/build/modules'))).'</p>'; |
|
271 | 271 | } |
272 | - $output .= '<p>' . t('Don\'t forget to !enable_bbcode_input and then !configure_bbcode_options.', array( |
|
272 | + $output .= '<p>'.t('Don\'t forget to !enable_bbcode_input and then !configure_bbcode_options.', array( |
|
273 | 273 | '!enable_bbcode_input' => l(t('enable BBcode in the selected input format'), "admin/settings/filters/{$input_format}"), |
274 | - '!configure_bbcode_options' => l(t('configure BBcode options'), "admin/settings/filters/{$input_format}/configure"))) . '</p>'; |
|
275 | - $output .= '<p>' . t('You may want to enable it for other input formats, too.') . '</p>'; |
|
274 | + '!configure_bbcode_options' => l(t('configure BBcode options'), "admin/settings/filters/{$input_format}/configure"))).'</p>'; |
|
275 | + $output .= '<p>'.t('You may want to enable it for other input formats, too.').'</p>'; |
|
276 | 276 | } |
277 | - $output .= '<p><em>'. t('This setting will be applied to all posts, private |
|
278 | - messages and the users\' signature.') .'</em></p>'; |
|
277 | + $output .= '<p><em>'.t('This setting will be applied to all posts, private |
|
278 | + messages and the users\' signature.').'</em></p>'; |
|
279 | 279 | |
280 | 280 | $form['bbcode']['result'] = array('#value' => $output); |
281 | 281 | |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | '#collapsed' => TRUE, |
288 | 288 | ); |
289 | 289 | if (!variable_get('boincimport_base_url_boinc', 0)) { |
290 | - $form['url_transforms']['#collapsed']= FALSE; |
|
290 | + $form['url_transforms']['#collapsed'] = FALSE; |
|
291 | 291 | $output = '<span class="marker">'; |
292 | 292 | $ready_for_migration = 0; |
293 | 293 | } |
@@ -320,11 +320,11 @@ discard block |
||
320 | 320 | ); |
321 | 321 | variable_set('boincimport_ready', $ready_for_migration); |
322 | 322 | if ($ready_for_migration) { |
323 | - $output = '<p>'. t('Check the settings above one more time. If everything |
|
324 | - is ok, !proceed.', array('!proceed' => l(t('you can now proceed with the migration'), 'admin/boinc/import/process'))) .'</p>'; |
|
323 | + $output = '<p>'.t('Check the settings above one more time. If everything |
|
324 | + is ok, !proceed.', array('!proceed' => l(t('you can now proceed with the migration'), 'admin/boinc/import/process'))).'</p>'; |
|
325 | 325 | } else { |
326 | - $output = '<p class="marker">'. t('You are not ready for the migration yet. |
|
327 | - Please check the settings above.') .'</p>'; |
|
326 | + $output = '<p class="marker">'.t('You are not ready for the migration yet. |
|
327 | + Please check the settings above.').'</p>'; |
|
328 | 328 | } |
329 | 329 | |
330 | 330 | $form['migration']['info'] = array('#value' => $output); |
@@ -335,23 +335,23 @@ discard block |
||
335 | 335 | * Callback admin/boinc/import/post_configuration |
336 | 336 | */ |
337 | 337 | function boincimport_post_configuration() { |
338 | - $output = '<p>'. t('This page will help to tie up any loose ends following |
|
338 | + $output = '<p>'.t('This page will help to tie up any loose ends following |
|
339 | 339 | the BOINC data import process. Before continuing, it may be best to have |
340 | - already:') .'</p>'; |
|
340 | + already:').'</p>'; |
|
341 | 341 | $output .= '<ul>'; |
342 | - $output .= '<li>'. t('Imported users, teams, and forums using the BOINC |
|
343 | - import module') .'</li>'; |
|
344 | - $output .= '<li>'. t('Imported any additional data using add on modules if |
|
345 | - available.') .'</li>'; |
|
342 | + $output .= '<li>'.t('Imported users, teams, and forums using the BOINC |
|
343 | + import module').'</li>'; |
|
344 | + $output .= '<li>'.t('Imported any additional data using add on modules if |
|
345 | + available.').'</li>'; |
|
346 | 346 | $output .= '</ul>'; |
347 | 347 | //User Set up |
348 | - $output .= '<h2>'. t('User settings') .'</h2>'; |
|
349 | - $output .= '<p>'. t('Make sure your !user_settings are correct. Specifically, |
|
348 | + $output .= '<h2>'.t('User settings').'</h2>'; |
|
349 | + $output .= '<p>'.t('Make sure your !user_settings are correct. Specifically, |
|
350 | 350 | you can enable or disable signatures there. ', array( |
351 | 351 | '!user_settings' => l(t('user settings'), 'admin/user/settings') |
352 | - )) .'</p>'; |
|
353 | - $output .= '<p>' . t('Note that avatar/picture support is not tied to user |
|
354 | - settings Picture support at this time.') . '</p>'; |
|
352 | + )).'</p>'; |
|
353 | + $output .= '<p>'.t('Note that avatar/picture support is not tied to user |
|
354 | + settings Picture support at this time.').'</p>'; |
|
355 | 355 | /*$output .= '<p>' . t('In order to activate avatar/picture support, you need to |
356 | 356 | enable pictures on this page and also:') . '</p>'; |
357 | 357 | $output .= '<ul>'; |
@@ -366,15 +366,15 @@ discard block |
||
366 | 366 | $output .= '</ul>'; */ |
367 | 367 | |
368 | 368 | // Forum Set up |
369 | - $output .= '<h2>'. t('Forum settings') .'</h2>'; |
|
370 | - $output .= '<p>'. t('Check any additional changes to make on the |
|
369 | + $output .= '<h2>'.t('Forum settings').'</h2>'; |
|
370 | + $output .= '<p>'.t('Check any additional changes to make on the |
|
371 | 371 | !forum_settings page.', array( |
372 | 372 | '!forum_settings' => l(t('forum settings'), 'admin/content/forum/settings') |
373 | - )) .'</p>'; |
|
374 | - $output .= '<p>'. t('It also may be a good idea to look at the !forum_list to |
|
373 | + )).'</p>'; |
|
374 | + $output .= '<p>'.t('It also may be a good idea to look at the !forum_list to |
|
375 | 375 | verify that all necessary containers and forums are in place.', array( |
376 | 376 | '!forum_list' => l(t('forum list'), 'admin/content/forum') |
377 | - )) .'</p>'; |
|
377 | + )).'</p>'; |
|
378 | 378 | /*$output .= '<p>'. t('If need be, set up the private forums as explained in the |
379 | 379 | !documentation.', array( |
380 | 380 | '!documentation' => l(t('documentation'), 'http://drupal.org/node/58969', array('attributes' => array('target' => '_blank'))) |
@@ -390,17 +390,17 @@ discard block |
||
390 | 390 | // BBcode |
391 | 391 | $bbcode = variable_get('boincimport_bbcode', 0); |
392 | 392 | if ($bbcode) { |
393 | - $output .= '<h2>'. t('Remove BBcode module') .'</h2>'; |
|
394 | - $output .= '<p>'. t('The BBcode has been cleaned from the posts. You shouldn\'t |
|
395 | - need the bbcode module anymore. You can disable it.') .'</p>'; |
|
393 | + $output .= '<h2>'.t('Remove BBcode module').'</h2>'; |
|
394 | + $output .= '<p>'.t('The BBcode has been cleaned from the posts. You shouldn\'t |
|
395 | + need the bbcode module anymore. You can disable it.').'</p>'; |
|
396 | 396 | } else { |
397 | - $output .= '<h2>'. t('Configure BBcode module') .'</h2>'; |
|
398 | - $output .= '<p>'. t('Most likely, there are many BOINC forum postings |
|
397 | + $output .= '<h2>'.t('Configure BBcode module').'</h2>'; |
|
398 | + $output .= '<p>'.t('Most likely, there are many BOINC forum postings |
|
399 | 399 | formatted in BBcode. It would be a good idea to verify that BBcode is |
400 | 400 | being formatted correctly in the imported posts. Have a look around |
401 | 401 | !the_forum.', array( |
402 | 402 | '!the_forum' => l(t('the forum'), 'community') |
403 | - )) . '</p>'; |
|
403 | + )).'</p>'; |
|
404 | 404 | } |
405 | 405 | |
406 | 406 | return $output; |
@@ -445,11 +445,11 @@ discard block |
||
445 | 445 | $output .= '</ol>'; |
446 | 446 | |
447 | 447 | // process will die() if the link to the BOINC database is wrong: |
448 | - $output .= '<p>'. t('If the BOINC data is in another database, but you made a |
|
448 | + $output .= '<p>'.t('If the BOINC data is in another database, but you made a |
|
449 | 449 | mistake while setting up the data base url, you may be unable to access the |
450 | 450 | setting page due to some limitations of the core of Drupal. !reset_db_url.', array( |
451 | 451 | '!reset_db_url' => l(t('Click here to reset the database url'), 'admin/boinc/import/reset') |
452 | - )) .'</p>'; |
|
452 | + )).'</p>'; |
|
453 | 453 | |
454 | 454 | return $output; |
455 | 455 | } |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | $boinc_db_url = (is_array($db_url)) ? (isset($db_url['boinc_rw']) ? $db_url['boinc_rw'] : $db_url['default']) : $db_url; |
106 | 106 | variable_set('boincimport_db_url', $boinc_db_url); |
107 | 107 | variable_set('boincimport_ready', 0); |
108 | - return '<p>'. t('The BOINC database URL has been reset. You may now <a href="@configlink">go back to the configuration page</a>.', |
|
109 | - array('@configlink' => url('admin/boinc/import/settings'))) .'</p>'; |
|
108 | + return '<p>'.t('The BOINC database URL has been reset. You may now <a href="@configlink">go back to the configuration page</a>.', |
|
109 | + array('@configlink' => url('admin/boinc/import/settings'))).'</p>'; |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | /** |
@@ -114,18 +114,18 @@ discard block |
||
114 | 114 | */ |
115 | 115 | function boincimport_unlock() { |
116 | 116 | variable_del('boincimport_process_locked'); |
117 | - return '<p>'. t('The BOINC data import process has been unlocked. You may |
|
117 | + return '<p>'.t('The BOINC data import process has been unlocked. You may |
|
118 | 118 | now !proceed_with_import.', array( |
119 | 119 | '!proceed_with_import' => l(t('proceed with the import'), |
120 | 120 | 'admin/boinc/import/process') |
121 | - )) .'</p>'; |
|
121 | + )).'</p>'; |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | /** |
125 | 125 | * Callback admin/boinc/import/cleanup |
126 | 126 | */ |
127 | 127 | function boincimport_cleanup() { |
128 | - return boincimport_process_cleanup() .'<p>'. t('Drupal database cleaned.') .'</p>'; |
|
128 | + return boincimport_process_cleanup().'<p>'.t('Drupal database cleaned.').'</p>'; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * fails, the process will die() which is a bit too much since we only |
139 | 139 | * want to test. Therefore, the test part of the code is not used, now. |
140 | 140 | */ |
141 | -function _boincimport_db_connect($test= 0) { |
|
141 | +function _boincimport_db_connect($test = 0) { |
|
142 | 142 | global $db_url; |
143 | 143 | $db_ready = variable_get('boincimport_db_configured', 1); |
144 | 144 | if (!$db_ready) { |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | $db_url2['default'] = $db_url; |
149 | 149 | } |
150 | 150 | $db_url2['boinc_rw'] = variable_get('boincimport_db_url', $db_url); |
151 | - $GLOBALS['db_url'] =& $db_url2; |
|
151 | + $GLOBALS['db_url'] = & $db_url2; |
|
152 | 152 | if ($test) { |
153 | 153 | if (!db_connect($db_url2['boinc_rw'])) { |
154 | 154 | return 0; |
@@ -171,10 +171,10 @@ discard block |
||
171 | 171 | $result = module_exists($module); |
172 | 172 | $out['result'] = $result; |
173 | 173 | if ($result == 1) { |
174 | - $out['html'] .= '<li>'. t('Module %module is enabled. OK!', array('%module' => $module)) .'</li>'; |
|
174 | + $out['html'] .= '<li>'.t('Module %module is enabled. OK!', array('%module' => $module)).'</li>'; |
|
175 | 175 | } |
176 | 176 | else { |
177 | - $out['html'] .= '<li><span class="marker">'. t('Module %module is disabled.', array('%module' => $module)) .'</span></li>'; |
|
177 | + $out['html'] .= '<li><span class="marker">'.t('Module %module is disabled.', array('%module' => $module)).'</span></li>'; |
|
178 | 178 | } |
179 | 179 | $out['html'] .= '</ul>'; |
180 | 180 | return $out; |
@@ -187,32 +187,32 @@ discard block |
||
187 | 187 | * $out['html'] = formatted html. |
188 | 188 | * $out['result'] = boolean. |
189 | 189 | */ |
190 | -function _boincimport_check_tables($tables = array(), $db = 'default' , $prefix = 1) { |
|
190 | +function _boincimport_check_tables($tables = array(), $db = 'default', $prefix = 1) { |
|
191 | 191 | _boincimport_db_connect(); |
192 | 192 | |
193 | 193 | $out['html'] = '<ul>'; |
194 | - $out['result']= 1; |
|
194 | + $out['result'] = 1; |
|
195 | 195 | foreach ($tables as $table) { |
196 | 196 | if ($prefix) { |
197 | - $table = db_prefix_tables('{'. $table .'}'); |
|
197 | + $table = db_prefix_tables('{'.$table.'}'); |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | db_set_active($db); |
201 | 201 | if ($GLOBALS['db_type'] == 'pgsql') { |
202 | 202 | // adapt from db_table_exists in database.pgsql.inc |
203 | - $result = (bool) db_result(db_query("SELECT COUNT(*) FROM pg_class WHERE relname = '%s'", $table)); |
|
203 | + $result = (bool)db_result(db_query("SELECT COUNT(*) FROM pg_class WHERE relname = '%s'", $table)); |
|
204 | 204 | } |
205 | 205 | else { |
206 | 206 | // adapt from db_table_exists in database.mysql.inc |
207 | - $result = (bool) db_fetch_object(db_query("SHOW TABLES LIKE '%s'", $table)); |
|
207 | + $result = (bool)db_fetch_object(db_query("SHOW TABLES LIKE '%s'", $table)); |
|
208 | 208 | } |
209 | 209 | db_set_active('default'); |
210 | 210 | if ($result) { |
211 | - $out['html'] .= '<li>'. t('Table %table: OK!', array('%table' => $table)) .'</li>'; |
|
211 | + $out['html'] .= '<li>'.t('Table %table: OK!', array('%table' => $table)).'</li>'; |
|
212 | 212 | } |
213 | 213 | else { |
214 | - $out['html'] .= '<li><span class="marker">'. t('Table <strong>%table</strong> does not exist!', array('%table' => $table)) .'</span></li>'; |
|
215 | - $out['result']= 0; |
|
214 | + $out['html'] .= '<li><span class="marker">'.t('Table <strong>%table</strong> does not exist!', array('%table' => $table)).'</span></li>'; |
|
215 | + $out['result'] = 0; |
|
216 | 216 | } |
217 | 217 | } |
218 | 218 | $out['html'] .= '</ul>'; |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | boinc_get_path(); |
227 | 227 | |
228 | 228 | if (!variable_get('boincimport_ready', 0)) { |
229 | - return '<p>'. t('You cannot import the data now. Please <a href="@settings">complete the setup first</a>', array('@settings' => url('admin/boinc/import/settings'))) .'</p>'; |
|
229 | + return '<p>'.t('You cannot import the data now. Please <a href="@settings">complete the setup first</a>', array('@settings' => url('admin/boinc/import/settings'))).'</p>'; |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | $output = 'BOINC import process form'; |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | |
237 | 237 | function boincimport_process_form() { |
238 | 238 | $form = array(); |
239 | - _boincimport_db_connect() ; |
|
239 | + _boincimport_db_connect(); |
|
240 | 240 | // Causes problems with form api redirect |
241 | 241 | //ini_set('display_errors', TRUE); |
242 | 242 | |
@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | } |
413 | 413 | else { |
414 | 414 | drupal_set_message('Congratulations. Import Finished'); |
415 | - drupal_set_message('Please visit the '. l('Post migration configuration', 'admin/boinc/import/post_configuration') .' page'); |
|
415 | + drupal_set_message('Please visit the '.l('Post migration configuration', 'admin/boinc/import/post_configuration').' page'); |
|
416 | 416 | watchdog('boincimport', 'Import process is complete', array(), WATCHDOG_INFO); |
417 | 417 | unset($_SESSION['boincimport_stage_selected']); |
418 | 418 | } |
@@ -633,7 +633,7 @@ discard block |
||
633 | 633 | $context['finished'] = 1; |
634 | 634 | } |
635 | 635 | else { |
636 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
636 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
637 | 637 | } |
638 | 638 | } |
639 | 639 | |
@@ -662,7 +662,7 @@ discard block |
||
662 | 662 | // An error occurred. |
663 | 663 | // $operations contains the operations that remained unprocessed. |
664 | 664 | $error_operation = reset($operations); |
665 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
665 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
666 | 666 | } |
667 | 667 | drupal_set_message($message); |
668 | 668 | |
@@ -846,7 +846,7 @@ discard block |
||
846 | 846 | $context['finished'] = 1; |
847 | 847 | } |
848 | 848 | else { |
849 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
849 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
850 | 850 | } |
851 | 851 | } |
852 | 852 | |
@@ -873,7 +873,7 @@ discard block |
||
873 | 873 | // An error occurred. |
874 | 874 | // $operations contains the operations that remained unprocessed. |
875 | 875 | $error_operation = reset($operations); |
876 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
876 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
877 | 877 | } |
878 | 878 | drupal_set_message($message); |
879 | 879 | |
@@ -1019,7 +1019,7 @@ discard block |
||
1019 | 1019 | $context['finished'] = 1; |
1020 | 1020 | } |
1021 | 1021 | else { |
1022 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
1022 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
1023 | 1023 | } |
1024 | 1024 | } |
1025 | 1025 | |
@@ -1047,7 +1047,7 @@ discard block |
||
1047 | 1047 | // An error occurred. |
1048 | 1048 | // $operations contains the operations that remained unprocessed. |
1049 | 1049 | $error_operation = reset($operations); |
1050 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
1050 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
1051 | 1051 | } |
1052 | 1052 | drupal_set_message($message); |
1053 | 1053 | |
@@ -1203,7 +1203,7 @@ discard block |
||
1203 | 1203 | $context['finished'] = 1; |
1204 | 1204 | } |
1205 | 1205 | else { |
1206 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
1206 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
1207 | 1207 | } |
1208 | 1208 | } |
1209 | 1209 | |
@@ -1232,7 +1232,7 @@ discard block |
||
1232 | 1232 | // An error occurred. |
1233 | 1233 | // $operations contains the operations that remained unprocessed. |
1234 | 1234 | $error_operation = reset($operations); |
1235 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
1235 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
1236 | 1236 | } |
1237 | 1237 | drupal_set_message($message); |
1238 | 1238 | |
@@ -1382,7 +1382,7 @@ discard block |
||
1382 | 1382 | $context['finished'] = 1; |
1383 | 1383 | } |
1384 | 1384 | else { |
1385 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
1385 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
1386 | 1386 | } |
1387 | 1387 | } |
1388 | 1388 | |
@@ -1409,7 +1409,7 @@ discard block |
||
1409 | 1409 | // An error occurred. |
1410 | 1410 | // $operations contains the operations that remained unprocessed. |
1411 | 1411 | $error_operation = reset($operations); |
1412 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
1412 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
1413 | 1413 | } |
1414 | 1414 | drupal_set_message($message); |
1415 | 1415 | |
@@ -1710,7 +1710,7 @@ discard block |
||
1710 | 1710 | $context['finished'] = 1; |
1711 | 1711 | } |
1712 | 1712 | else { |
1713 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
1713 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
1714 | 1714 | } |
1715 | 1715 | } |
1716 | 1716 | |
@@ -1788,7 +1788,7 @@ discard block |
||
1788 | 1788 | $context['finished'] = 1; |
1789 | 1789 | } |
1790 | 1790 | else { |
1791 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
1791 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
1792 | 1792 | } |
1793 | 1793 | } |
1794 | 1794 | |
@@ -1801,34 +1801,34 @@ discard block |
||
1801 | 1801 | $forum_perms = array(); |
1802 | 1802 | $role_map = array_flip(user_roles()); |
1803 | 1803 | $forum_perms[$role_map['anonymous user']] = array( |
1804 | - 'view' => (int) !$hidden, |
|
1804 | + 'view' => (int)!$hidden, |
|
1805 | 1805 | 'update' => 0, |
1806 | 1806 | 'delete' => 0, |
1807 | 1807 | 'create' => 0, |
1808 | 1808 | ); |
1809 | 1809 | $forum_perms[$role_map['authenticated user']] = array( |
1810 | - 'view' => (int) !$hidden, |
|
1810 | + 'view' => (int)!$hidden, |
|
1811 | 1811 | 'update' => 0, |
1812 | 1812 | 'delete' => 0, |
1813 | 1813 | 'create' => 0, |
1814 | 1814 | ); |
1815 | 1815 | $forum_perms[$role_map['community member']] = array( |
1816 | - 'view' => (int) !$hidden, |
|
1816 | + 'view' => (int)!$hidden, |
|
1817 | 1817 | 'update' => 0, |
1818 | 1818 | 'delete' => 0, |
1819 | - 'create' => (int) $open, |
|
1819 | + 'create' => (int)$open, |
|
1820 | 1820 | ); |
1821 | 1821 | $forum_perms[$role_map['verified contributor']] = array( |
1822 | - 'view' => (int) !$hidden, |
|
1822 | + 'view' => (int)!$hidden, |
|
1823 | 1823 | 'update' => 0, |
1824 | 1824 | 'delete' => 0, |
1825 | - 'create' => (int) !$hidden, |
|
1825 | + 'create' => (int)!$hidden, |
|
1826 | 1826 | ); |
1827 | 1827 | $forum_perms[$role_map['moderator']] = array( |
1828 | - 'view' => (int) !$hidden, |
|
1829 | - 'update' => (int) !$hidden, |
|
1828 | + 'view' => (int)!$hidden, |
|
1829 | + 'update' => (int)!$hidden, |
|
1830 | 1830 | 'delete' => 0, |
1831 | - 'create' => (int) !$hidden, |
|
1831 | + 'create' => (int)!$hidden, |
|
1832 | 1832 | ); |
1833 | 1833 | $forum_perms[$role_map['administrator']] = array( |
1834 | 1834 | 'view' => 1, |
@@ -1893,7 +1893,7 @@ discard block |
||
1893 | 1893 | // An error occurred. |
1894 | 1894 | // $operations contains the operations that remained unprocessed. |
1895 | 1895 | $error_operation = reset($operations); |
1896 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
1896 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
1897 | 1897 | } |
1898 | 1898 | drupal_set_message($message); |
1899 | 1899 | |
@@ -1963,7 +1963,7 @@ discard block |
||
1963 | 1963 | $batch_size = 100; |
1964 | 1964 | |
1965 | 1965 | // Create batches to process |
1966 | - for ($offset = 0; $offset < $topic_count; $offset+=$batch_size) { |
|
1966 | + for ($offset = 0; $offset < $topic_count; $offset += $batch_size) { |
|
1967 | 1967 | $topics_per_batch = $batch_size; |
1968 | 1968 | if ($offset + $batch_size > $topic_count) { |
1969 | 1969 | $topics_per_batch = $topic_count - $offset; |
@@ -2080,7 +2080,7 @@ discard block |
||
2080 | 2080 | 'type' => $node_type, |
2081 | 2081 | 'title' => $topic->title, |
2082 | 2082 | 'uid' => $uid, |
2083 | - 'status' => ($topic->hidden) ? 0 : 1, // published or not |
|
2083 | + 'status' => ($topic->hidden) ? 0 : 1, // published or not |
|
2084 | 2084 | 'promote' => $promote, |
2085 | 2085 | 'created' => $topic->create_time, |
2086 | 2086 | 'changed' => $topic->timestamp, |
@@ -2094,7 +2094,7 @@ discard block |
||
2094 | 2094 | $node['tid'] = $tid; |
2095 | 2095 | |
2096 | 2096 | // Save the topic node |
2097 | - $node = (object) $node; // node_save requires an object form |
|
2097 | + $node = (object)$node; // node_save requires an object form |
|
2098 | 2098 | node_save($node); |
2099 | 2099 | taxonomy_node_save($node, array($tid)); |
2100 | 2100 | $success = ($node->nid) ? TRUE : FALSE; |
@@ -2157,7 +2157,7 @@ discard block |
||
2157 | 2157 | $context['finished'] = 1; |
2158 | 2158 | } |
2159 | 2159 | else { |
2160 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
2160 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
2161 | 2161 | } |
2162 | 2162 | } |
2163 | 2163 | } |
@@ -2195,7 +2195,7 @@ discard block |
||
2195 | 2195 | // An error occurred. |
2196 | 2196 | // $operations contains the operations that remained unprocessed. |
2197 | 2197 | $error_operation = reset($operations); |
2198 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
2198 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
2199 | 2199 | } |
2200 | 2200 | drupal_set_message($message); |
2201 | 2201 | |
@@ -2271,7 +2271,7 @@ discard block |
||
2271 | 2271 | $batch_size = 100; |
2272 | 2272 | |
2273 | 2273 | // Create batches to process |
2274 | - for ($offset = 0; $offset < $topic_count; $offset+=$batch_size) { |
|
2274 | + for ($offset = 0; $offset < $topic_count; $offset += $batch_size) { |
|
2275 | 2275 | $topics_per_batch = $batch_size; |
2276 | 2276 | if ($offset + $batch_size > $topic_count) { |
2277 | 2277 | $topics_per_batch = $topic_count - $offset; |
@@ -2485,7 +2485,7 @@ discard block |
||
2485 | 2485 | $context['finished'] = 1; |
2486 | 2486 | } |
2487 | 2487 | else { |
2488 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
2488 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
2489 | 2489 | } |
2490 | 2490 | } |
2491 | 2491 | } |
@@ -2503,10 +2503,10 @@ discard block |
||
2503 | 2503 | $empty_posts = count($results['posts']['empty']); |
2504 | 2504 | $failed_posts = count($results['posts']['failure']); |
2505 | 2505 | $message = t( |
2506 | - 'Successfully imported @post_count posts in @topic_count topics ' . |
|
2507 | - '(@skipped topics either had no replies or all replies were already imported, ' . |
|
2508 | - '@duplicates posts were skipped as already imported, ' . |
|
2509 | - '@empty_posts had no content, ' . |
|
2506 | + 'Successfully imported @post_count posts in @topic_count topics '. |
|
2507 | + '(@skipped topics either had no replies or all replies were already imported, '. |
|
2508 | + '@duplicates posts were skipped as already imported, '. |
|
2509 | + '@empty_posts had no content, '. |
|
2510 | 2510 | 'and @error_posts encountered errors during import)', |
2511 | 2511 | array( |
2512 | 2512 | '@post_count' => $posts_imported, |
@@ -2529,7 +2529,7 @@ discard block |
||
2529 | 2529 | // An error occurred. |
2530 | 2530 | // $operations contains the operations that remained unprocessed. |
2531 | 2531 | $error_operation = reset($operations); |
2532 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
2532 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
2533 | 2533 | } |
2534 | 2534 | drupal_set_message($message); |
2535 | 2535 | |
@@ -2699,7 +2699,7 @@ discard block |
||
2699 | 2699 | $context['finished'] = 1; |
2700 | 2700 | } |
2701 | 2701 | else { |
2702 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
2702 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
2703 | 2703 | } |
2704 | 2704 | } |
2705 | 2705 | |
@@ -2726,7 +2726,7 @@ discard block |
||
2726 | 2726 | // An error occurred. |
2727 | 2727 | // $operations contains the operations that remained unprocessed. |
2728 | 2728 | $error_operation = reset($operations); |
2729 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
2729 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
2730 | 2730 | } |
2731 | 2731 | drupal_set_message($message); |
2732 | 2732 | |
@@ -2908,7 +2908,7 @@ discard block |
||
2908 | 2908 | 'type' => $node_type, |
2909 | 2909 | 'title' => $topic->title, |
2910 | 2910 | 'uid' => $uid, |
2911 | - 'status' => ($topic->hidden) ? 0 : 1, // published or not |
|
2911 | + 'status' => ($topic->hidden) ? 0 : 1, // published or not |
|
2912 | 2912 | 'promote' => $promote, |
2913 | 2913 | 'created' => $topic->create_time, |
2914 | 2914 | 'changed' => $topic->timestamp, |
@@ -2922,7 +2922,7 @@ discard block |
||
2922 | 2922 | ); |
2923 | 2923 | |
2924 | 2924 | // Save the team topic node |
2925 | - $node = (object) $node; // node_save requires an object form |
|
2925 | + $node = (object)$node; // node_save requires an object form |
|
2926 | 2926 | node_save($node); |
2927 | 2927 | |
2928 | 2928 | if ($node->nid) { |
@@ -2968,7 +2968,7 @@ discard block |
||
2968 | 2968 | $context['finished'] = 1; |
2969 | 2969 | } |
2970 | 2970 | else { |
2971 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
2971 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
2972 | 2972 | } |
2973 | 2973 | } |
2974 | 2974 | |
@@ -2995,7 +2995,7 @@ discard block |
||
2995 | 2995 | // An error occurred. |
2996 | 2996 | // $operations contains the operations that remained unprocessed. |
2997 | 2997 | $error_operation = reset($operations); |
2998 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
2998 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
2999 | 2999 | } |
3000 | 3000 | drupal_set_message($message); |
3001 | 3001 | |
@@ -3250,7 +3250,7 @@ discard block |
||
3250 | 3250 | $context['finished'] = 1; |
3251 | 3251 | } |
3252 | 3252 | else { |
3253 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
3253 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
3254 | 3254 | } |
3255 | 3255 | } |
3256 | 3256 | |
@@ -3277,7 +3277,7 @@ discard block |
||
3277 | 3277 | // An error occurred. |
3278 | 3278 | // $operations contains the operations that remained unprocessed. |
3279 | 3279 | $error_operation = reset($operations); |
3280 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
3280 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
3281 | 3281 | } |
3282 | 3282 | drupal_set_message($message); |
3283 | 3283 | |
@@ -3399,7 +3399,7 @@ discard block |
||
3399 | 3399 | $context['finished'] = 1; |
3400 | 3400 | } |
3401 | 3401 | else { |
3402 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
3402 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
3403 | 3403 | } |
3404 | 3404 | } |
3405 | 3405 | |
@@ -3428,7 +3428,7 @@ discard block |
||
3428 | 3428 | // An error occurred. |
3429 | 3429 | // $operations contains the operations that remained unprocessed. |
3430 | 3430 | $error_operation = reset($operations); |
3431 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
3431 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
3432 | 3432 | } |
3433 | 3433 | drupal_set_message($message); |
3434 | 3434 | |
@@ -3504,7 +3504,7 @@ discard block |
||
3504 | 3504 | $batch_size = 100; |
3505 | 3505 | |
3506 | 3506 | // Create node batches to process |
3507 | - for ($offset = 0; $offset < $node_count; $offset+=$batch_size) { |
|
3507 | + for ($offset = 0; $offset < $node_count; $offset += $batch_size) { |
|
3508 | 3508 | $nodes_per_batch = $batch_size; |
3509 | 3509 | if ($offset + $batch_size > $node_count) { |
3510 | 3510 | $nodes_per_batch = $node_count - $offset; |
@@ -3516,7 +3516,7 @@ discard block |
||
3516 | 3516 | ); |
3517 | 3517 | } |
3518 | 3518 | // Add comment batches |
3519 | - for ($offset = 0; $offset < $comment_count; $offset+=$batch_size) { |
|
3519 | + for ($offset = 0; $offset < $comment_count; $offset += $batch_size) { |
|
3520 | 3520 | $comments_per_batch = $batch_size; |
3521 | 3521 | if ($offset + $batch_size > $comment_count) { |
3522 | 3522 | $comments_per_batch = $comment_count - $offset; |
@@ -3528,7 +3528,7 @@ discard block |
||
3528 | 3528 | ); |
3529 | 3529 | } |
3530 | 3530 | // And don't forget to process private messages |
3531 | - for ($offset = 0; $offset < $pm_count; $offset+=$batch_size) { |
|
3531 | + for ($offset = 0; $offset < $pm_count; $offset += $batch_size) { |
|
3532 | 3532 | $messages_per_batch = $batch_size; |
3533 | 3533 | if ($offset + $batch_size > $pm_count) { |
3534 | 3534 | $messages_per_batch = $pm_count - $offset; |
@@ -3617,7 +3617,7 @@ discard block |
||
3617 | 3617 | $context['finished'] = 1; |
3618 | 3618 | } |
3619 | 3619 | else { |
3620 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
3620 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
3621 | 3621 | } |
3622 | 3622 | } |
3623 | 3623 | } |
@@ -3681,7 +3681,7 @@ discard block |
||
3681 | 3681 | $context['finished'] = 1; |
3682 | 3682 | } |
3683 | 3683 | else { |
3684 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
3684 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
3685 | 3685 | } |
3686 | 3686 | } |
3687 | 3687 | } |
@@ -3744,7 +3744,7 @@ discard block |
||
3744 | 3744 | $context['finished'] = 1; |
3745 | 3745 | } |
3746 | 3746 | else { |
3747 | - $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; |
|
3747 | + $context['finished'] = $context['sandbox']['progress']/$context['sandbox']['max']; |
|
3748 | 3748 | } |
3749 | 3749 | } |
3750 | 3750 | } |
@@ -3813,7 +3813,7 @@ discard block |
||
3813 | 3813 | // An error occurred. |
3814 | 3814 | // $operations contains the operations that remained unprocessed. |
3815 | 3815 | $error_operation = reset($operations); |
3816 | - $message = 'An error occurred while processing ' . $error_operation[0] . ' with arguments :' . print_r($error_operation[0], TRUE); |
|
3816 | + $message = 'An error occurred while processing '.$error_operation[0].' with arguments :'.print_r($error_operation[0], TRUE); |
|
3817 | 3817 | } |
3818 | 3818 | drupal_set_message($message); |
3819 | 3819 | |
@@ -3882,18 +3882,18 @@ discard block |
||
3882 | 3882 | $max = db_result(db_query('SELECT MAX(thread) FROM {comments} WHERE nid = %d', $edit['nid'])); |
3883 | 3883 | // Strip the "/" from the end of the thread. |
3884 | 3884 | $max = rtrim($max, '/'); |
3885 | - $thread = int2vancode(vancode2int($max)+1) .'/'; |
|
3885 | + $thread = int2vancode(vancode2int($max) + 1).'/'; |
|
3886 | 3886 | } else { |
3887 | 3887 | // This is comment with a parent comment: we increase the part of the thread |
3888 | 3888 | // value at the proper depth. |
3889 | 3889 | $parent = db_fetch_object(db_query('SELECT * FROM {comments} WHERE cid = %d', $edit['pid'])); |
3890 | 3890 | // Strip the "/" from the end of the parent thread. |
3891 | - $parent->thread = (string) rtrim((string) $parent->thread, '/'); |
|
3891 | + $parent->thread = (string)rtrim((string)$parent->thread, '/'); |
|
3892 | 3892 | // Get the max value in _this_ thread. |
3893 | 3893 | $max = db_result(db_query("SELECT MAX(thread) FROM {comments} WHERE thread LIKE '%s.%%' AND nid = %d", $parent->thread, $edit['nid'])); |
3894 | 3894 | if ($max == '') { |
3895 | 3895 | // First child of this parent. |
3896 | - $thread = $parent->thread .'.'. int2vancode(1) .'/'; |
|
3896 | + $thread = $parent->thread.'.'.int2vancode(1).'/'; |
|
3897 | 3897 | } else { |
3898 | 3898 | // Strip the "/" at the end of the thread. |
3899 | 3899 | $max = rtrim($max, '/'); |
@@ -3902,14 +3902,14 @@ discard block |
||
3902 | 3902 | $parent_depth = count(explode('.', $parent->thread)); |
3903 | 3903 | $last = $parts[$parent_depth]; |
3904 | 3904 | // Finally, build the thread field for this new comment. |
3905 | - $thread = $parent->thread .'.'. int2vancode(vancode2int($last) + 1) .'/'; |
|
3905 | + $thread = $parent->thread.'.'.int2vancode(vancode2int($last) + 1).'/'; |
|
3906 | 3906 | } |
3907 | 3907 | } |
3908 | 3908 | |
3909 | 3909 | $status = 0; // 1 - not published, 0 - published |
3910 | 3910 | $format = variable_get('boincimport_input_format', 0); |
3911 | 3911 | $score = 0; // 0 default value, comments get higher score depending on the author's roles |
3912 | - $users = serialize(array(0 => 1)); // default value for everybody!! |
|
3912 | + $users = serialize(array(0 => 1)); // default value for everybody!! |
|
3913 | 3913 | |
3914 | 3914 | if ($edit['uid'] === $user->uid) { // '===' because we want to modify anonymous users too |
3915 | 3915 | $edit['name'] = $user->name; |
@@ -3943,7 +3943,7 @@ discard block |
||
3943 | 3943 | // BBcode to normal html |
3944 | 3944 | if (variable_get('boincimport_bbcode', 0)) { |
3945 | 3945 | $input_format = variable_get('boincimport_input_format', 0); |
3946 | - $text = bbcode_filter('process', 0 , $input_format, $text); |
|
3946 | + $text = bbcode_filter('process', 0, $input_format, $text); |
|
3947 | 3947 | } |
3948 | 3948 | return $text; |
3949 | 3949 | } |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | |
168 | 168 | if ($preset) { |
169 | 169 | // Load preset from configuration |
170 | - $preset_prefs = (array) $preset_prefs['general_preferences']; |
|
170 | + $preset_prefs = (array)$preset_prefs['general_preferences']; |
|
171 | 171 | if (isset($preset_prefs['preset'])) { |
172 | 172 | if (!is_numeric(key($preset_prefs['preset']))) { |
173 | 173 | $preset_prefs['preset'] = array($preset_prefs['preset']); |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | function boincwork_get_project_specific_config() { |
189 | 189 | $raw_config_data = variable_get('boinc_project_specific_prefs_config', ''); |
190 | 190 | |
191 | - $xsd = './' . drupal_get_path('module', 'boincwork') . '/includes/projectprefs.xsd'; |
|
191 | + $xsd = './'.drupal_get_path('module', 'boincwork').'/includes/projectprefs.xsd'; |
|
192 | 192 | libxml_use_internal_errors(true); |
193 | 193 | |
194 | 194 | $xml = new DomDocument(); |
@@ -196,8 +196,8 @@ discard block |
||
196 | 196 | if (!$xml->schemaValidate($xsd)) { |
197 | 197 | $errors = libxml_get_errors(); |
198 | 198 | $lines = explode("\r", $raw_config_data); |
199 | - drupal_set_message("{$errors[0]->message} at line {$errors[0]->line}" . |
|
200 | - ': <br/>' . htmlentities($lines[$errors[0]->line - 1]), 'error'); |
|
199 | + drupal_set_message("{$errors[0]->message} at line {$errors[0]->line}". |
|
200 | + ': <br/>'.htmlentities($lines[$errors[0]->line - 1]), 'error'); |
|
201 | 201 | return NULL; |
202 | 202 | } |
203 | 203 | |
@@ -392,13 +392,13 @@ discard block |
||
392 | 392 | |
393 | 393 | // Use appropriate datatype |
394 | 394 | if (isset($element['@attributes']['datatype'])) { |
395 | - switch($element['@attributes']['datatype']) { |
|
395 | + switch ($element['@attributes']['datatype']) { |
|
396 | 396 | case 'integer': |
397 | - $value = (int) $value; |
|
397 | + $value = (int)$value; |
|
398 | 398 | break; |
399 | 399 | |
400 | 400 | case 'float': |
401 | - $value = number_format((float) $value, 2); |
|
401 | + $value = number_format((float)$value, 2); |
|
402 | 402 | break; |
403 | 403 | |
404 | 404 | default: |
@@ -420,7 +420,7 @@ discard block |
||
420 | 420 | '#type' => 'textfield', |
421 | 421 | '#default_value' => $value, |
422 | 422 | '#size' => 5, |
423 | - '#description' => $description . bts(' Default value: @default', array('@default' => $default), NULL, 'boinc:account-preferences-project') |
|
423 | + '#description' => $description.bts(' Default value: @default', array('@default' => $default), NULL, 'boinc:account-preferences-project') |
|
424 | 424 | ); |
425 | 425 | } |
426 | 426 | break; |
@@ -484,7 +484,7 @@ discard block |
||
484 | 484 | $name = $element['@attributes']['name']; |
485 | 485 | $default = null; |
486 | 486 | $options = array(); |
487 | - foreach($element['items']['item'] as $item) { |
|
487 | + foreach ($element['items']['item'] as $item) { |
|
488 | 488 | if (is_array($item)) { |
489 | 489 | $value = $item['@value']; |
490 | 490 | if ($default === NULL AND |
@@ -526,7 +526,7 @@ discard block |
||
526 | 526 | '#options' => $options, |
527 | 527 | '#attributes' => array('class' => 'fancy'), |
528 | 528 | '#default_value' => $value, |
529 | - '#description' => $description . bts(' Default value: @default', array('@default' =>$default), NULL, 'boinc:account-preferences-project') |
|
529 | + '#description' => $description.bts(' Default value: @default', array('@default' =>$default), NULL, 'boinc:account-preferences-project') |
|
530 | 530 | ); |
531 | 531 | } |
532 | 532 | break; |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | } |
592 | 592 | foreach ($elements as $key => $element) { |
593 | 593 | $title = is_array($element['title']) ? $element['title']['@value'] : $element['title']; |
594 | - $name = str_replace(' ','_',strtolower($title)); |
|
594 | + $name = str_replace(' ', '_', strtolower($title)); |
|
595 | 595 | $name = "group_{$name}"; |
596 | 596 | |
597 | 597 | // Translate elements as appropriate |
@@ -743,13 +743,13 @@ discard block |
||
743 | 743 | if ($type == 'project') { |
744 | 744 | if ($boincuser->project_prefs) { |
745 | 745 | $main_prefs = load_configuration($boincuser->project_prefs); |
746 | - $main_prefs = (array) $main_prefs['project_preferences']; |
|
746 | + $main_prefs = (array)$main_prefs['project_preferences']; |
|
747 | 747 | } |
748 | 748 | } |
749 | 749 | else { |
750 | 750 | if ($boincuser->global_prefs) { |
751 | 751 | $main_prefs = load_configuration($boincuser->global_prefs); |
752 | - $main_prefs = (array) $main_prefs['global_preferences']; |
|
752 | + $main_prefs = (array)$main_prefs['global_preferences']; |
|
753 | 753 | } |
754 | 754 | } |
755 | 755 | |
@@ -801,13 +801,13 @@ discard block |
||
801 | 801 | if ($type == 'project') { |
802 | 802 | if ($boincuser->project_prefs) { |
803 | 803 | $main_prefs = load_configuration($boincuser->project_prefs); |
804 | - $main_prefs = (array) $main_prefs['project_preferences']; |
|
804 | + $main_prefs = (array)$main_prefs['project_preferences']; |
|
805 | 805 | } |
806 | 806 | } |
807 | 807 | else { |
808 | 808 | if ($boincuser->global_prefs) { |
809 | 809 | $main_prefs = load_configuration($boincuser->global_prefs); |
810 | - $main_prefs = (array) $main_prefs['global_preferences']; |
|
810 | + $main_prefs = (array)$main_prefs['global_preferences']; |
|
811 | 811 | } |
812 | 812 | } |
813 | 813 | |
@@ -1129,11 +1129,11 @@ discard block |
||
1129 | 1129 | $magnitude = 0; |
1130 | 1130 | $precision = 0; |
1131 | 1131 | if ($digits > $max_digits) { |
1132 | - $magnitude = floor(($digits - ($max_digits - 3)) / 3); |
|
1133 | - $precision = $max_digits - ($digits - ($magnitude * 3) + 1); |
|
1134 | - $number = round($number / pow(1000, $magnitude), $precision); |
|
1132 | + $magnitude = floor(($digits - ($max_digits - 3))/3); |
|
1133 | + $precision = $max_digits - ($digits - ($magnitude*3) + 1); |
|
1134 | + $number = round($number/pow(1000, $magnitude), $precision); |
|
1135 | 1135 | } |
1136 | - $number = number_format($number, $precision) . (($magnitude) ? "{$suffix[$magnitude]}" : ''); |
|
1136 | + $number = number_format($number, $precision).(($magnitude) ? "{$suffix[$magnitude]}" : ''); |
|
1137 | 1137 | |
1138 | 1138 | return $number; |
1139 | 1139 | } |
@@ -1310,7 +1310,7 @@ discard block |
||
1310 | 1310 | |
1311 | 1311 | function text_to_xml($text) { |
1312 | 1312 | $xml = new DomDocument(); |
1313 | - if ( !($xml->loadXML($text)) ) return false; |
|
1313 | + if (!($xml->loadXML($text))) return false; |
|
1314 | 1314 | return $xml; |
1315 | 1315 | } |
1316 | 1316 | |
@@ -1327,7 +1327,7 @@ discard block |
||
1327 | 1327 | while (!is_null($node)) { |
1328 | 1328 | switch ($node->nodeType) { |
1329 | 1329 | case XML_TEXT_NODE: |
1330 | - if (trim($node->nodeValue) != '') $result = $node->nodeValue; |
|
1330 | + if (trim($node->nodeValue) != '') $result = $node->nodeValue; |
|
1331 | 1331 | break; |
1332 | 1332 | case XML_ELEMENT_NODE: |
1333 | 1333 | $node_name = $node->nodeName; |
@@ -1344,7 +1344,7 @@ discard block |
||
1344 | 1344 | if ($sibling) { |
1345 | 1345 | $result[$node_name][$index] = ''; |
1346 | 1346 | if ($node->childNodes) { |
1347 | - $result[$node_name][$index] = xml_to_array($node) ; |
|
1347 | + $result[$node_name][$index] = xml_to_array($node); |
|
1348 | 1348 | } |
1349 | 1349 | if ($node->hasAttributes()) { |
1350 | 1350 | $attributes = $node->attributes; |
@@ -1367,14 +1367,14 @@ discard block |
||
1367 | 1367 | } else { |
1368 | 1368 | $result[$node_name] = ''; |
1369 | 1369 | if ($node->childNodes) { |
1370 | - $result[$node_name] = xml_to_array($node) ; |
|
1370 | + $result[$node_name] = xml_to_array($node); |
|
1371 | 1371 | } |
1372 | 1372 | if ($node->hasAttributes()) { |
1373 | 1373 | $attributes = $node->attributes; |
1374 | 1374 | if ($result[$node_name] !== '' AND !is_array($result[$node_name])) { |
1375 | 1375 | $result[$node_name] = array('@value' => $result[$node_name]); |
1376 | 1376 | } |
1377 | - foreach($attributes as $key => $attribute) { |
|
1377 | + foreach ($attributes as $key => $attribute) { |
|
1378 | 1378 | $result[$node_name]['@attributes'][$attribute->name] = $attribute->value; |
1379 | 1379 | } |
1380 | 1380 | } |
@@ -1414,30 +1414,30 @@ discard block |
||
1414 | 1414 | // Determine if hosts are associated at all or just hidden |
1415 | 1415 | $output = ''; |
1416 | 1416 | if ($boincuser->show_hosts) { |
1417 | - switch($context) { |
|
1417 | + switch ($context) { |
|
1418 | 1418 | case 'active': |
1419 | - $output .= '<h2>' . bts('No active computers', array(), NULL, 'boinc:host-list') . '</h2>'; |
|
1420 | - $output .= '<p>' . bts('This user has no computers that have been' |
|
1421 | - . ' active in the last 30 days.', array(), NULL, 'boinc:host-list') . '</p>'; |
|
1419 | + $output .= '<h2>'.bts('No active computers', array(), NULL, 'boinc:host-list').'</h2>'; |
|
1420 | + $output .= '<p>'.bts('This user has no computers that have been' |
|
1421 | + . ' active in the last 30 days.', array(), NULL, 'boinc:host-list').'</p>'; |
|
1422 | 1422 | break; |
1423 | 1423 | |
1424 | 1424 | case 'preferences': |
1425 | - $output .= '<h2>' . bts('No computers', array(), NULL, 'boinc:host-list') . '</h2>'; |
|
1426 | - $output .= '<p>' . bts('There are no computers assigned to this' |
|
1427 | - . ' preference set.', array(), NULL, 'boinc:host-list') . '</p>'; |
|
1425 | + $output .= '<h2>'.bts('No computers', array(), NULL, 'boinc:host-list').'</h2>'; |
|
1426 | + $output .= '<p>'.bts('There are no computers assigned to this' |
|
1427 | + . ' preference set.', array(), NULL, 'boinc:host-list').'</p>'; |
|
1428 | 1428 | break; |
1429 | 1429 | |
1430 | 1430 | default: |
1431 | - $output .= '<h2>' . bts('Computers pending', array(), NULL, 'boinc:host-list') . '</h2>'; |
|
1432 | - $output .= '<p>' . bts('This user does not yet have any associated' |
|
1431 | + $output .= '<h2>'.bts('Computers pending', array(), NULL, 'boinc:host-list').'</h2>'; |
|
1432 | + $output .= '<p>'.bts('This user does not yet have any associated' |
|
1433 | 1433 | . ' computers. Computers will be displayed when they have earned their' |
1434 | - . ' first credits.', array(), NULL, 'boinc:host-list') . '</p>'; |
|
1434 | + . ' first credits.', array(), NULL, 'boinc:host-list').'</p>'; |
|
1435 | 1435 | } |
1436 | 1436 | } |
1437 | 1437 | else { |
1438 | - $output .= '<h2>' . bts('Computers hidden', array(), NULL, 'boinc:host-list') . '</h2>'; |
|
1439 | - $output .= '<p>' . bts('This user has chosen not to show information' |
|
1440 | - . ' about their computers.', array(), NULL, 'boinc:host-list') . '</p>'; |
|
1438 | + $output .= '<h2>'.bts('Computers hidden', array(), NULL, 'boinc:host-list').'</h2>'; |
|
1439 | + $output .= '<p>'.bts('This user has chosen not to show information' |
|
1440 | + . ' about their computers.', array(), NULL, 'boinc:host-list').'</p>'; |
|
1441 | 1441 | } |
1442 | 1442 | return $output; |
1443 | 1443 | } |
@@ -1449,11 +1449,11 @@ discard block |
||
1449 | 1449 | |
1450 | 1450 | // |
1451 | 1451 | $output = ''; |
1452 | - switch($context) { |
|
1452 | + switch ($context) { |
|
1453 | 1453 | default: |
1454 | - $output .= '<h2>' . bts('No @type tasks', array('@type' => $context), NULL, 'boinc:task-list') |
|
1454 | + $output .= '<h2>'.bts('No @type tasks', array('@type' => $context), NULL, 'boinc:task-list') |
|
1455 | 1455 | . '</h2>'; |
1456 | - $output .= '<p>' . bts('There are no tasks of this type on record', array(), NULL, 'boinc:task-list') |
|
1456 | + $output .= '<p>'.bts('There are no tasks of this type on record', array(), NULL, 'boinc:task-list') |
|
1457 | 1457 | . '</p>'; |
1458 | 1458 | } |
1459 | 1459 | return $output; |
@@ -1475,10 +1475,10 @@ discard block |
||
1475 | 1475 | $output .= l(bts('Delete', array(), NULL, 'boinc:form-delete'), "host/{$host_id}/delete", |
1476 | 1476 | array( |
1477 | 1477 | 'attributes' => array( |
1478 | - 'onclick' => 'return confirm(\'' . bts('This will delete host @id' |
|
1478 | + 'onclick' => 'return confirm(\''.bts('This will delete host @id' |
|
1479 | 1479 | . ' from your account forever. Are you sure this is OK?', |
1480 | 1480 | array('@id' => $host_id), |
1481 | - NULL, 'boinc:account-host-delete') . '\')' |
|
1481 | + NULL, 'boinc:account-host-delete').'\')' |
|
1482 | 1482 | ) |
1483 | 1483 | ) |
1484 | 1484 | ); |
@@ -1568,8 +1568,8 @@ discard block |
||
1568 | 1568 | "{$path}/school" => bts('School', array(), NULL, 'boinc:account-preferences-location') |
1569 | 1569 | ); |
1570 | 1570 | variable_set('jump_use_js_venues-Array', 1); |
1571 | - drupal_add_js(drupal_get_path('module', 'jump') . '/jump.js'); |
|
1572 | - drupal_add_js(drupal_get_path('theme', 'boinc') . '/js/prefs.js', 'theme'); |
|
1571 | + drupal_add_js(drupal_get_path('module', 'jump').'/jump.js'); |
|
1572 | + drupal_add_js(drupal_get_path('theme', 'boinc').'/js/prefs.js', 'theme'); |
|
1573 | 1573 | // Get current venue |
1574 | 1574 | db_set_active('boinc_ro'); |
1575 | 1575 | $venue = db_result(db_query( |
@@ -1593,10 +1593,10 @@ discard block |
||
1593 | 1593 | // Add a wrapper to deadline text |
1594 | 1594 | if (!$received_time) { |
1595 | 1595 | if (time() < $deadline) { |
1596 | - $output = '<span class="on-time">' . $output . '</span>'; |
|
1596 | + $output = '<span class="on-time">'.$output.'</span>'; |
|
1597 | 1597 | } |
1598 | 1598 | else { |
1599 | - $output = '<span class="past-due">' . $output . '</span>'; |
|
1599 | + $output = '<span class="past-due">'.$output.'</span>'; |
|
1600 | 1600 | } |
1601 | 1601 | } |
1602 | 1602 | } |
@@ -1632,15 +1632,15 @@ discard block |
||
1632 | 1632 | */ |
1633 | 1633 | function boincwork_tasktable($category = 0, $queryid = 1, $tselect = NULL, $app_id = 0, $tablerows = 20) { |
1634 | 1634 | // Check type parameter, if not (0,2) then return an error. |
1635 | - if ( ($category!=0) AND ($category!=1) AND ($category!=2) ) { |
|
1635 | + if (($category != 0) AND ($category != 1) AND ($category != 2)) { |
|
1636 | 1636 | watchdog('boincwork', 'task table called with invalid category = %category', array('%category' => $category), WATCHDOG_WARNING); |
1637 | 1637 | return ''; |
1638 | 1638 | } |
1639 | 1639 | |
1640 | - require_boinc( array('util', 'result') ); |
|
1640 | + require_boinc(array('util', 'result')); |
|
1641 | 1641 | |
1642 | 1642 | global $language; |
1643 | - $locality=$language->language; |
|
1643 | + $locality = $language->language; |
|
1644 | 1644 | $nf = new NumberFormatter($locality, NumberFormatter::DECIMAL); |
1645 | 1645 | $nf->setAttribute(NumberFormatter::MIN_FRACTION_DIGITS, 0); |
1646 | 1646 | $nf->setAttribute(NumberFormatter::MAX_FRACTION_DIGITS, 0); |
@@ -1688,13 +1688,13 @@ discard block |
||
1688 | 1688 | ."ON r.appid=a.id "; |
1689 | 1689 | |
1690 | 1690 | // Use userid, hostid, or workunitid |
1691 | - if ($category==0) { |
|
1691 | + if ($category == 0) { |
|
1692 | 1692 | $sqlall .= " WHERE r.userid='%s' "; |
1693 | 1693 | } |
1694 | - elseif ($category==1) { |
|
1694 | + elseif ($category == 1) { |
|
1695 | 1695 | $sqlall .= " WHERE r.workunitid='%s' "; |
1696 | 1696 | } |
1697 | - elseif ($category==2) { |
|
1697 | + elseif ($category == 2) { |
|
1698 | 1698 | $sqlall .= " WHERE r.hostid='%s' "; |
1699 | 1699 | } |
1700 | 1700 | $sqlall .= " ORDER BY user_friendly_name"; |
@@ -1705,7 +1705,7 @@ discard block |
||
1705 | 1705 | if ($dbres_all) { |
1706 | 1706 | while ($result = db_fetch_object($dbres_all)) { |
1707 | 1707 | $mystate = state_num($result); |
1708 | - if ( ($result->appid==$app_id) OR ($app_id==0) OR ($app_id==-1) ) { |
|
1708 | + if (($result->appid == $app_id) OR ($app_id == 0) OR ($app_id == -1)) { |
|
1709 | 1709 | $taskstates[STATE_ALL]++; |
1710 | 1710 | switch ($mystate) { |
1711 | 1711 | case STATE_IN_PROGRESS: |
@@ -1728,7 +1728,7 @@ discard block |
||
1728 | 1728 | |
1729 | 1729 | //map holds a map between app ids and user friendly names for all applications. |
1730 | 1730 | $application_map[$result->appid] = $result->user_friendly_name; |
1731 | - if ( ($mystate == $tselect) OR ($tselect==STATE_ALL) ) { |
|
1731 | + if (($mystate == $tselect) OR ($tselect == STATE_ALL)) { |
|
1732 | 1732 | //count of appids in the results. |
1733 | 1733 | $application_select_count[$result->appid]++; |
1734 | 1734 | }// if mystate |
@@ -1741,14 +1741,14 @@ discard block |
||
1741 | 1741 | // Entry for all applications. |
1742 | 1742 | $allcount = $application_select_count ? array_sum($application_select_count) : 0; |
1743 | 1743 | $applications[-1] = bts('Application', array(), NULL, 'boinc:task-table'); |
1744 | - $applications[0] = bts('All applications', array(), NULL, 'boinc:task-table') . ' (' . $allcount . ')'; |
|
1744 | + $applications[0] = bts('All applications', array(), NULL, 'boinc:task-table').' ('.$allcount.')'; |
|
1745 | 1745 | // Create application filter from application_map and application_select_count. |
1746 | - foreach($application_map as $akey => $aname) { |
|
1746 | + foreach ($application_map as $akey => $aname) { |
|
1747 | 1747 | $acount = 0; |
1748 | - if ( $application_select_count and array_key_exists($akey, $application_select_count) ) { |
|
1748 | + if ($application_select_count and array_key_exists($akey, $application_select_count)) { |
|
1749 | 1749 | $acount = $application_select_count[$akey]; |
1750 | 1750 | } |
1751 | - $applications[$akey] = $aname . ' ('. $acount . ')'; |
|
1751 | + $applications[$akey] = $aname.' ('.$acount.')'; |
|
1752 | 1752 | } |
1753 | 1753 | // Header array for (sub) results table. |
1754 | 1754 | $resultheader = array( |
@@ -1827,13 +1827,13 @@ discard block |
||
1827 | 1827 | $sqlwhere = array(); |
1828 | 1828 | |
1829 | 1829 | // Use userid, hostid, or workunitid |
1830 | - if ($category==0) { |
|
1830 | + if ($category == 0) { |
|
1831 | 1831 | $sqlwhere[] = "r.userid = '%s'"; |
1832 | 1832 | } |
1833 | - elseif ($category==1) { |
|
1833 | + elseif ($category == 1) { |
|
1834 | 1834 | $sqlwhere[] = "r.workunitid = '%s'"; |
1835 | 1835 | } |
1836 | - elseif ($category==2) { |
|
1836 | + elseif ($category == 2) { |
|
1837 | 1837 | $sqlwhere[] = "r.hostid = '%s'"; |
1838 | 1838 | } |
1839 | 1839 | |
@@ -1857,14 +1857,14 @@ discard block |
||
1857 | 1857 | default: |
1858 | 1858 | } |
1859 | 1859 | |
1860 | - if (is_numeric($app_id) AND $app_id>0 ) { |
|
1860 | + if (is_numeric($app_id) AND $app_id > 0) { |
|
1861 | 1861 | $sqlwhere[] = "r.appid = '%s'"; |
1862 | - if ($sqlwhere) $sqlsub .= " WHERE " . implode(' AND ', $sqlwhere); |
|
1863 | - $dbres_sub = pager_query( $sqlsub . tablesort_sql($resultheader), $tablerows, 0, NULL, $queryid, $app_id); |
|
1862 | + if ($sqlwhere) $sqlsub .= " WHERE ".implode(' AND ', $sqlwhere); |
|
1863 | + $dbres_sub = pager_query($sqlsub.tablesort_sql($resultheader), $tablerows, 0, NULL, $queryid, $app_id); |
|
1864 | 1864 | } |
1865 | 1865 | else { |
1866 | - if ($sqlwhere) $sqlsub .= " WHERE " . implode(' AND ', $sqlwhere); |
|
1867 | - $dbres_sub = pager_query( $sqlsub . tablesort_sql($resultheader), $tablerows, 0, NULL, $queryid); |
|
1866 | + if ($sqlwhere) $sqlsub .= " WHERE ".implode(' AND ', $sqlwhere); |
|
1867 | + $dbres_sub = pager_query($sqlsub.tablesort_sql($resultheader), $tablerows, 0, NULL, $queryid); |
|
1868 | 1868 | } |
1869 | 1869 | db_set_active('default'); |
1870 | 1870 | |
@@ -1874,7 +1874,7 @@ discard block |
||
1874 | 1874 | // state_num() function changes $result object, clone $result |
1875 | 1875 | // object for use in state_num() |
1876 | 1876 | // check if state matches selection |
1877 | - if ( (state_num(clone $result) == $tselect) OR ($tselect==STATE_ALL) ) { |
|
1877 | + if ((state_num(clone $result) == $tselect) OR ($tselect == STATE_ALL)) { |
|
1878 | 1878 | // create pretty result row |
1879 | 1879 | $prettyresult = array( |
1880 | 1880 | array( |
@@ -1890,7 +1890,7 @@ discard block |
||
1890 | 1890 | $nf->format($result->cpu_time), |
1891 | 1891 | $nf->format($result->granted_credit), |
1892 | 1892 | array( |
1893 | - 'data' => $result->user_friendly_name . " " . pretty_application_version($result->app_version_id,$result->version_number, $result->plan_class, $result->platform), |
|
1893 | + 'data' => $result->user_friendly_name." ".pretty_application_version($result->app_version_id, $result->version_number, $result->plan_class, $result->platform), |
|
1894 | 1894 | 'class' => 'task-app', |
1895 | 1895 | ), |
1896 | 1896 | ); |
@@ -1903,54 +1903,54 @@ discard block |
||
1903 | 1903 | // Begin result navigation |
1904 | 1904 | |
1905 | 1905 | // Set pathprefix based on type |
1906 | - if ($category==0) { |
|
1906 | + if ($category == 0) { |
|
1907 | 1907 | $pathprefix = 'account/tasks'; |
1908 | 1908 | } |
1909 | - elseif ($category==1) { |
|
1910 | - $pathprefix = 'workunit/' . $queryid . '/tasks'; |
|
1909 | + elseif ($category == 1) { |
|
1910 | + $pathprefix = 'workunit/'.$queryid.'/tasks'; |
|
1911 | 1911 | } |
1912 | - elseif ($category==2) { |
|
1913 | - $pathprefix = 'host/' . $queryid . '/tasks'; |
|
1912 | + elseif ($category == 2) { |
|
1913 | + $pathprefix = 'host/'.$queryid.'/tasks'; |
|
1914 | 1914 | } |
1915 | 1915 | // Need an "All" tab as well, maps to app_id of zero. |
1916 | 1916 | $application_map[0] = bts('All', array(), NULL, 'boinc:task-table'); |
1917 | 1917 | $stitems = array(); |
1918 | 1918 | foreach ($taskstates as $state => $numstates) { |
1919 | - $mypath = $pathprefix . '/' . $state . '/' . $app_id; |
|
1920 | - if ($state==STATE_ALL) { |
|
1921 | - $ltext = '<span class="tab task-app-name">' . bts('All', array(), NULL, 'boinc:task-table') . ' (' . $numstates . ')</span>'; |
|
1919 | + $mypath = $pathprefix.'/'.$state.'/'.$app_id; |
|
1920 | + if ($state == STATE_ALL) { |
|
1921 | + $ltext = '<span class="tab task-app-name">'.bts('All', array(), NULL, 'boinc:task-table').' ('.$numstates.')</span>'; |
|
1922 | 1922 | } |
1923 | 1923 | else { |
1924 | - $ltext = '<span class="tab">' . bts($state_hnames[$state], array(), NULL, 'boinc:task-table') . ' (' . $numstates . ')</span>'; |
|
1924 | + $ltext = '<span class="tab">'.bts($state_hnames[$state], array(), NULL, 'boinc:task-table').' ('.$numstates.')</span>'; |
|
1925 | 1925 | } |
1926 | 1926 | $myitem = array( |
1927 | - 'data' => l($ltext, $mypath, array('html' => TRUE) ), |
|
1927 | + 'data' => l($ltext, $mypath, array('html' => TRUE)), |
|
1928 | 1928 | ); |
1929 | - if ($state==$tselect) { |
|
1929 | + if ($state == $tselect) { |
|
1930 | 1930 | $myitem['class'] = 'active'; |
1931 | 1931 | } |
1932 | 1932 | $stitems[] = $myitem; |
1933 | 1933 | } |
1934 | 1934 | // Add reset button |
1935 | - $mypath = $pathprefix . '/0/0'; |
|
1936 | - $ltext = '<span class="tab">' . bts('Reset', array(), NULL, 'boinc:task-table') . '</span>'; |
|
1937 | - $stitems[] = array( 'data' => l($ltext, $mypath, array('html' => TRUE) ) ); |
|
1935 | + $mypath = $pathprefix.'/0/0'; |
|
1936 | + $ltext = '<span class="tab">'.bts('Reset', array(), NULL, 'boinc:task-table').'</span>'; |
|
1937 | + $stitems[] = array('data' => l($ltext, $mypath, array('html' => TRUE))); |
|
1938 | 1938 | |
1939 | - $output .= theme_item_list($stitems, NULL, 'ul' . ' class="tabs secondary clearfix"'); |
|
1939 | + $output .= theme_item_list($stitems, NULL, 'ul'.' class="tabs secondary clearfix"'); |
|
1940 | 1940 | |
1941 | 1941 | // Application select-drop down form |
1942 | 1942 | // Hack to place Application form into header |
1943 | 1943 | // App ID of zero maps to "-1" for drop-down box. |
1944 | - if ($app_id==0) { |
|
1945 | - $app_id=-1; |
|
1944 | + if ($app_id == 0) { |
|
1945 | + $app_id = -1; |
|
1946 | 1946 | } |
1947 | 1947 | $resultheader[] = drupal_get_form('boincwork_selectapp_form', $applications, $app_id); |
1948 | 1948 | |
1949 | 1949 | // Begin table of results |
1950 | - if ( is_array($resultheader) AND is_array($resultdata) ) { |
|
1950 | + if (is_array($resultheader) AND is_array($resultdata)) { |
|
1951 | 1951 | |
1952 | 1952 | // Take advantage of the fact that $category is the same as the row/column we want to remove. |
1953 | - if ( ($category==1) OR ($category==2) ) { |
|
1953 | + if (($category == 1) OR ($category == 2)) { |
|
1954 | 1954 | unset($resultheader[$category]); |
1955 | 1955 | delete_col($resultdata, $category); |
1956 | 1956 | } |
@@ -1967,7 +1967,7 @@ discard block |
||
1967 | 1967 | * Function to delete a column from an array. |
1968 | 1968 | */ |
1969 | 1969 | function delete_col(&$array, $offset) { |
1970 | - return array_walk($array, function (&$v) use ($offset) { |
|
1970 | + return array_walk($array, function(&$v) use ($offset) { |
|
1971 | 1971 | array_splice($v, $offset, 1); |
1972 | 1972 | }); |
1973 | 1973 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | }// switch |
72 | 72 | } else { |
73 | 73 | $form_state['storage']['wip'] = TRUE; |
74 | - if ( !in_array($prefs_preset, array('standard','maximum','green','minimum','custom')) ) { |
|
74 | + if (!in_array($prefs_preset, array('standard', 'maximum', 'green', 'minimum', 'custom'))) { |
|
75 | 75 | if ($established) { |
76 | 76 | $prefs_preset = 'custom'; |
77 | 77 | } else { |
@@ -141,10 +141,10 @@ discard block |
||
141 | 141 | ); |
142 | 142 | $form['hour_options'] = array( |
143 | 143 | '#type' => 'value', |
144 | - '#value' => array('0:00','1:00','2:00','3:00','4:00', |
|
145 | - '5:00','6:00','7:00','8:00','9:00','10:00','11:00', |
|
146 | - '12:00','13:00','14:00','15:00','16:00','17:00', |
|
147 | - '18:00','19:00','20:00','21:00','22:00','23:00') |
|
144 | + '#value' => array('0:00', '1:00', '2:00', '3:00', '4:00', |
|
145 | + '5:00', '6:00', '7:00', '8:00', '9:00', '10:00', '11:00', |
|
146 | + '12:00', '13:00', '14:00', '15:00', '16:00', '17:00', |
|
147 | + '18:00', '19:00', '20:00', '21:00', '22:00', '23:00') |
|
148 | 148 | ); |
149 | 149 | |
150 | 150 | // Identify preference sets that are established to distinguish what has been |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | '#description' => bts('Suspend computing when your computer is busy running other programs.', array(), NULL, 'boinc:account-preferences-computing'), |
282 | 282 | ); |
283 | 283 | $form['prefs']['advanced']['processor']['hour_label'] = array( |
284 | - '#value' => '<div class="form-item"><label>' . bts('Compute only between:', array(), NULL, 'boinc:account-preferences-computing') . '</label></div>' |
|
284 | + '#value' => '<div class="form-item"><label>'.bts('Compute only between:', array(), NULL, 'boinc:account-preferences-computing').'</label></div>' |
|
285 | 285 | ); |
286 | 286 | $form['prefs']['advanced']['processor']['start_hour'] = array( |
287 | 287 | '#type' => 'select', |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | '#default_value' => $default['start_hour'] |
290 | 290 | ); |
291 | 291 | $form['prefs']['advanced']['processor']['hour_delimiter'] = array( |
292 | - '#value' => '<span>' . bts('and', array(), NULL, 'boinc:account-preference') . '</span>' |
|
292 | + '#value' => '<span>'.bts('and', array(), NULL, 'boinc:account-preference').'</span>' |
|
293 | 293 | ); |
294 | 294 | $form['prefs']['advanced']['processor']['end_hour'] = array( |
295 | 295 | '#type' => 'select', |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | '#default_value' => $default['end_hour'] |
298 | 298 | ); |
299 | 299 | $form['prefs']['advanced']['processor']['hour_description'] = array( |
300 | - '#value' => '<div class="form-item slim"><div class="description">' . bts('Compute only during a particular period each day.', array(), NULL, 'boinc:account-preferences-computing') . '</div></div>' |
|
300 | + '#value' => '<div class="form-item slim"><div class="description">'.bts('Compute only during a particular period each day.', array(), NULL, 'boinc:account-preferences-computing').'</div></div>' |
|
301 | 301 | ); |
302 | 302 | $form['prefs']['advanced']['processor']['leave_apps_in_memory'] = array( |
303 | 303 | '#title' => bts('Leave non-GPU tasks in memory while suspended?', array(), NULL, 'boinc:account-preferences-computing'), |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | '#description' => bts('Limit the upload rate of file transfers.', array(), NULL, 'boinc:account-preferences-computing') |
455 | 455 | ); |
456 | 456 | $form['prefs']['advanced']['network']['hour_label'] = array( |
457 | - '#value' => '<div class="form-item"><label>' . bts('Transfer files only between', array(), NULL, 'boinc:account-preferences-computing') . '</label></div>' |
|
457 | + '#value' => '<div class="form-item"><label>'.bts('Transfer files only between', array(), NULL, 'boinc:account-preferences-computing').'</label></div>' |
|
458 | 458 | ); |
459 | 459 | $form['prefs']['advanced']['network']['net_start_hour'] = array( |
460 | 460 | '#type' => 'select', |
@@ -462,7 +462,7 @@ discard block |
||
462 | 462 | '#default_value' => $default['net_start_hour'] |
463 | 463 | ); |
464 | 464 | $form['prefs']['advanced']['network']['hour_delimiter'] = array( |
465 | - '#value' => '<span>' . bts('and', array(), NULL, 'boinc:account-preference') . '</span>' |
|
465 | + '#value' => '<span>'.bts('and', array(), NULL, 'boinc:account-preference').'</span>' |
|
466 | 466 | ); |
467 | 467 | $form['prefs']['advanced']['network']['net_end_hour'] = array( |
468 | 468 | '#type' => 'select', |
@@ -470,7 +470,7 @@ discard block |
||
470 | 470 | '#default_value' => $default['net_end_hour'] |
471 | 471 | ); |
472 | 472 | $form['prefs']['advanced']['network']['hour_description'] = array( |
473 | - '#value' => '<div class="form-item slim"><div class="description">' . bts('Transfer files only during a particular period each day.', array(), NULL, 'boinc:account-preferences-computing') . '</div></div>' |
|
473 | + '#value' => '<div class="form-item slim"><div class="description">'.bts('Transfer files only during a particular period each day.', array(), NULL, 'boinc:account-preferences-computing').'</div></div>' |
|
474 | 474 | ); |
475 | 475 | $form['prefs']['advanced']['network']['daily_xfer_limit_mb'] = array( |
476 | 476 | '#title' => bts('Limit usage to', array(), NULL, 'boinc:account-preferences-computing'), |
@@ -530,23 +530,23 @@ discard block |
||
530 | 530 | '#suffix' => '</li>' |
531 | 531 | ); |
532 | 532 | $form['prefs']['form control tabs'] = array( |
533 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), drupal_get_path_alias("account/prefs/computing/edit")) . '</li>' |
|
533 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), drupal_get_path_alias("account/prefs/computing/edit")).'</li>' |
|
534 | 534 | ); |
535 | 535 | if ($venue AND $venue != 'generic') { |
536 | 536 | global $base_path; |
537 | - $form['prefs']['form control tabs']['#value'] .= '<li class="tab">' . |
|
537 | + $form['prefs']['form control tabs']['#value'] .= '<li class="tab">'. |
|
538 | 538 | l(bts('Clear', array(), NULL, 'boinc:form-clear'), "account/prefs/computing/clear/{$venue}", |
539 | 539 | array( |
540 | - 'query' => 'destination=' . urlencode(drupal_get_path_alias('account/prefs/computing/combined')), |
|
540 | + 'query' => 'destination='.urlencode(drupal_get_path_alias('account/prefs/computing/combined')), |
|
541 | 541 | 'attributes' => array( |
542 | - 'onclick' => 'return confirm(\'' . bts('This will remove all of your settings from the @name preference set. Are you sure?', |
|
543 | - array('@name' => $venue), NULL, 'boinc:account-preferences') . '\')' |
|
542 | + 'onclick' => 'return confirm(\''.bts('This will remove all of your settings from the @name preference set. Are you sure?', |
|
543 | + array('@name' => $venue), NULL, 'boinc:account-preferences').'\')' |
|
544 | 544 | ) |
545 | 545 | ) |
546 | - ) . '</li>'; |
|
546 | + ).'</li>'; |
|
547 | 547 | } |
548 | 548 | $form['prefs']['view control'] = array( |
549 | - '#value' => '<li class="first alt tab">' . l('(' . bts('Show comparison view', array(), NULL, 'boinc:account-preferences') . ')', 'account/prefs/computing/combined') . '</li>' |
|
549 | + '#value' => '<li class="first alt tab">'.l('('.bts('Show comparison view', array(), NULL, 'boinc:account-preferences').')', 'account/prefs/computing/combined').'</li>' |
|
550 | 550 | ); |
551 | 551 | $form['prefs']['form control tabs suffix'] = array( |
552 | 552 | '#value' => '</ul>' |
@@ -784,7 +784,7 @@ discard block |
||
784 | 784 | return FALSE; |
785 | 785 | } |
786 | 786 | |
787 | - if ($new_host->userid==0) { |
|
787 | + if ($new_host->userid == 0) { |
|
788 | 788 | rules_invoke_event('boincwork_zombie_merge_error', $old_host->id, $new_host->id, variable_get('boinc_admin_mailing_list_subject_tag', '')); |
789 | 789 | watchdog('boincwork', |
790 | 790 | 'Zombie merge attempted, target host has userid=0: old host id=%old_host, target host id=%new_host', |
@@ -880,9 +880,9 @@ discard block |
||
880 | 880 | } |
881 | 881 | |
882 | 882 | $form['overview'] = array( |
883 | - '#value' => '<p>' . bts('Sometimes BOINC assigns separate identities to' |
|
883 | + '#value' => '<p>'.bts('Sometimes BOINC assigns separate identities to' |
|
884 | 884 | . ' the same computer by mistake. You can correct this by merging old' |
885 | - . ' identities with the newest one.', array(), NULL, 'boinc:account-host-merge') . '</p>' |
|
885 | + . ' identities with the newest one.', array(), NULL, 'boinc:account-host-merge').'</p>' |
|
886 | 886 | . '<p>' |
887 | 887 | . bts('Check the computers that are the same as @name' |
888 | 888 | . ' (created on @date at @time with computer ID @id)', |
@@ -892,7 +892,7 @@ discard block |
||
892 | 892 | '@time' => date('G:i:s T', $current_host->create_time), |
893 | 893 | '@id' => $current_host->id, |
894 | 894 | ), |
895 | - NULL, 'boinc:account-host-merge') . '</p>', |
|
895 | + NULL, 'boinc:account-host-merge').'</p>', |
|
896 | 896 | ); |
897 | 897 | |
898 | 898 | $options = array(); |
@@ -926,7 +926,7 @@ discard block |
||
926 | 926 | '#suffix' => '</li>' |
927 | 927 | ); |
928 | 928 | $form['prefs']['form control tabs'] = array( |
929 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), "host/{$host_id}") . '</li>' |
|
929 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), "host/{$host_id}").'</li>' |
|
930 | 930 | ); |
931 | 931 | |
932 | 932 | return $form; |
@@ -971,7 +971,7 @@ discard block |
||
971 | 971 | if (count($merged) == 2) { |
972 | 972 | $oxford_comma = ''; |
973 | 973 | } |
974 | - $list = implode(', ', $list) . $oxford_comma . ' ' . $conjunction . ' ' . $last; |
|
974 | + $list = implode(', ', $list).$oxford_comma.' '.$conjunction.' '.$last; |
|
975 | 975 | } |
976 | 976 | else { |
977 | 977 | $list = $last; |
@@ -1220,23 +1220,23 @@ discard block |
||
1220 | 1220 | '#suffix' => '</li>' |
1221 | 1221 | ); |
1222 | 1222 | $form['prefs']['form control tabs'] = array( |
1223 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']) . '</li>' |
|
1223 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']).'</li>' |
|
1224 | 1224 | ); |
1225 | 1225 | if ($venue AND $venue != 'generic') { |
1226 | 1226 | global $base_path; |
1227 | - $form['prefs']['form control tabs']['#value'] .= '<li class="tab">' . |
|
1227 | + $form['prefs']['form control tabs']['#value'] .= '<li class="tab">'. |
|
1228 | 1228 | l(bts('Clear', array(), NULL, 'boinc:form-clear'), "account/prefs/project/clear/{$venue}", |
1229 | 1229 | array( |
1230 | - 'query' => 'destination=' . urlencode(drupal_get_path_alias('account/prefs/project/combined')), |
|
1230 | + 'query' => 'destination='.urlencode(drupal_get_path_alias('account/prefs/project/combined')), |
|
1231 | 1231 | 'attributes' => array( |
1232 | - 'onclick' => 'return confirm(\'' . bts('This will remove all of your settings from the @name preference set. Are you sure?', |
|
1233 | - array('@name' => $venue), NULL, 'boinc:account-preferences') . '\')' |
|
1232 | + 'onclick' => 'return confirm(\''.bts('This will remove all of your settings from the @name preference set. Are you sure?', |
|
1233 | + array('@name' => $venue), NULL, 'boinc:account-preferences').'\')' |
|
1234 | 1234 | ) |
1235 | 1235 | ) |
1236 | - ) . '</li>'; |
|
1236 | + ).'</li>'; |
|
1237 | 1237 | } |
1238 | 1238 | $form['prefs']['view control'] = array( |
1239 | - '#value' => '<li class="first alt tab">' . l('(' . bts('Show comparison view', array(), NULL, 'boinc:account-preferences') . ')', 'account/prefs/project/combined') . '</li>' |
|
1239 | + '#value' => '<li class="first alt tab">'.l('('.bts('Show comparison view', array(), NULL, 'boinc:account-preferences').')', 'account/prefs/project/combined').'</li>' |
|
1240 | 1240 | ); |
1241 | 1241 | $form['prefs']['form control tabs suffix'] = array( |
1242 | 1242 | '#value' => '</ul>' |
@@ -1279,7 +1279,7 @@ discard block |
||
1279 | 1279 | |
1280 | 1280 | foreach ($xml['project_specific_preferences'] as $wrapped_element) { |
1281 | 1281 | $type = key($wrapped_element); |
1282 | - $element= reset($wrapped_element); |
|
1282 | + $element = reset($wrapped_element); |
|
1283 | 1283 | boincwork_generate_prefs_element($form, $type, $element, $prefs['project_specific']); |
1284 | 1284 | } |
1285 | 1285 | } |
@@ -1505,7 +1505,7 @@ discard block |
||
1505 | 1505 | $names = array(); |
1506 | 1506 | foreach ($languages as $langcode => $item) { |
1507 | 1507 | $name = t($item->name); |
1508 | - $names[check_plain($langcode)] = check_plain($name . ($item->native != $name ? ' ('. $item->native .')' : '')); |
|
1508 | + $names[check_plain($langcode)] = check_plain($name.($item->native != $name ? ' ('.$item->native.')' : '')); |
|
1509 | 1509 | } |
1510 | 1510 | $form['locale'] = array( |
1511 | 1511 | '#type' => 'fieldset', |
@@ -1530,20 +1530,20 @@ discard block |
||
1530 | 1530 | // Avatar options |
1531 | 1531 | $form['gravatar'] = array( |
1532 | 1532 | '#type' => 'item', |
1533 | - '#value' => bts('If you have a <a href="@gravatar-check">valid Gravatar</a> associated with your e-mail address, it will be used for your user picture.', array('@gravatar-check' => 'http://en.gravatar.com/site/check/' . $account->mail), NULL, 'boinc:account-preferences-community'), |
|
1533 | + '#value' => bts('If you have a <a href="@gravatar-check">valid Gravatar</a> associated with your e-mail address, it will be used for your user picture.', array('@gravatar-check' => 'http://en.gravatar.com/site/check/'.$account->mail), NULL, 'boinc:account-preferences-community'), |
|
1534 | 1534 | '#description' => bts('Your Gravatar will not be shown if you upload a user picture.', array(), NULL, 'boinc:account-preferences-community'), |
1535 | 1535 | ); |
1536 | 1536 | if (user_access('disable own gravatar', $account)) { |
1537 | 1537 | $form['gravatar'] = array( |
1538 | 1538 | '#type' => 'checkbox', |
1539 | - '#title' => bts('If you have a <a href="@gravatar-check">valid Gravatar</a> associated with your e-mail address, use it for your user picture.', array('@gravatar-check' => 'http://en.gravatar.com/site/check/' . $account->mail), NULL, 'boinc:account-preferences-community'), |
|
1539 | + '#title' => bts('If you have a <a href="@gravatar-check">valid Gravatar</a> associated with your e-mail address, use it for your user picture.', array('@gravatar-check' => 'http://en.gravatar.com/site/check/'.$account->mail), NULL, 'boinc:account-preferences-community'), |
|
1540 | 1540 | '#description' => bts('Gravatar will not be shown if an avatar is uploaded.', array(), NULL, 'boinc:account-preferences-community'), |
1541 | 1541 | '#default_value' => isset($account->gravatar) ? $account->gravatar : 0, |
1542 | 1542 | '#disabled' => !empty($account->picture), |
1543 | 1543 | ); |
1544 | 1544 | } |
1545 | 1545 | $form['gravatar']['#weight'] = 15; |
1546 | - $form['gravatar']['#prefix'] = '<fieldset class="collapsible"><legend><a href="#">' . bts('Avatar settings', array(), NULL, 'boinc:account-preferences-community') . '</a></legend>'; |
|
1546 | + $form['gravatar']['#prefix'] = '<fieldset class="collapsible"><legend><a href="#">'.bts('Avatar settings', array(), NULL, 'boinc:account-preferences-community').'</a></legend>'; |
|
1547 | 1547 | // Upload an avatar (pulled from profile_node_form): |
1548 | 1548 | if (!empty($profile_form['field_image'])) { |
1549 | 1549 | $form['field_image'] = $profile_form['field_image']; |
@@ -1578,7 +1578,7 @@ discard block |
||
1578 | 1578 | ); |
1579 | 1579 | // Can't have a typical Drupal form suffix on a select box? |
1580 | 1580 | $form['forums']['comments_per_page_suffix'] = array( |
1581 | - '#value' => '<span>' . bts('comments per page', array(), NULL, 'boinc:account-preferences-community') . '</span>' |
|
1581 | + '#value' => '<span>'.bts('comments per page', array(), NULL, 'boinc:account-preferences-community').'</span>' |
|
1582 | 1582 | ); |
1583 | 1583 | $form['forums']['comments_order'] = array( |
1584 | 1584 | '#type' => 'select', |
@@ -1631,7 +1631,7 @@ discard block |
||
1631 | 1631 | '#weight' => 1002, |
1632 | 1632 | ); |
1633 | 1633 | $form['form control tabs'] = array( |
1634 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']) . '</li>', |
|
1634 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']).'</li>', |
|
1635 | 1635 | '#weight' => 1003, |
1636 | 1636 | ); |
1637 | 1637 | $form['form control tabs suffix'] = array( |
@@ -1717,10 +1717,10 @@ discard block |
||
1717 | 1717 | if ($user->language != $edit['language']) { |
1718 | 1718 | global $base_url; |
1719 | 1719 | if ($edit['language'] != language_default('language')) { |
1720 | - $form_state['redirect'] = $base_url . '/' . $edit['language'] . '/' . $_GET['q']; |
|
1720 | + $form_state['redirect'] = $base_url.'/'.$edit['language'].'/'.$_GET['q']; |
|
1721 | 1721 | } |
1722 | 1722 | else { |
1723 | - $form_state['redirect'] = $base_url . '/' . $_GET['q']; |
|
1723 | + $form_state['redirect'] = $base_url.'/'.$_GET['q']; |
|
1724 | 1724 | } |
1725 | 1725 | } |
1726 | 1726 | } |
@@ -1790,7 +1790,7 @@ discard block |
||
1790 | 1790 | // option that deals with privacy. |
1791 | 1791 | foreach ($privacy_consent_types as $ct) { |
1792 | 1792 | |
1793 | - $currstate = (check_user_consent($boincuser, $ct['shortname'])) ? 1 : 0 ; |
|
1793 | + $currstate = (check_user_consent($boincuser, $ct['shortname'])) ? 1 : 0; |
|
1794 | 1794 | // Set name to 'privacyconsent_SHORTNAME', which can be parsed |
1795 | 1795 | // later in the submit function. |
1796 | 1796 | $form['privacy']['privacyconsent_'.$ct['shortname']] = array( |
@@ -1804,7 +1804,7 @@ discard block |
||
1804 | 1804 | // Add a description with link to the question 'Do you consent to |
1805 | 1805 | // exporting your data...'. |
1806 | 1806 | $mypatt = '/Do you consent to exporting your data/'; |
1807 | - if (preg_match($mypatt, $ct['description']) ) { |
|
1807 | + if (preg_match($mypatt, $ct['description'])) { |
|
1808 | 1808 | $form['privacy']['privacyconsent_'.$ct['shortname']]['#description'] = bts('See our !privacy_policy_link for the current list of statistics exports.', |
1809 | 1809 | array( |
1810 | 1810 | '!privacy_policy_link' => l( |
@@ -1843,7 +1843,7 @@ discard block |
||
1843 | 1843 | $form['ignoreblock']['delete'][$ignored_user['iuid']] = array( |
1844 | 1844 | '#value' => l( |
1845 | 1845 | bts('delete', array(), NULL, 'boinc:ignore-user-delete-button'), |
1846 | - 'account/prefs/privacy/ignore_user/remove/'. $ignored_user['iuid'], |
|
1846 | + 'account/prefs/privacy/ignore_user/remove/'.$ignored_user['iuid'], |
|
1847 | 1847 | array() |
1848 | 1848 | ), |
1849 | 1849 | ); |
@@ -1894,7 +1894,7 @@ discard block |
||
1894 | 1894 | '#suffix' => '</li>' |
1895 | 1895 | ); |
1896 | 1896 | $form['prefs']['form control tabs'] = array( |
1897 | - '#value' => '<li class="tab">' . l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']) . '</li>' |
|
1897 | + '#value' => '<li class="tab">'.l(bts('Cancel', array(), NULL, 'boinc:form-cancel'), $_GET['q']).'</li>' |
|
1898 | 1898 | ); |
1899 | 1899 | $form['prefs']['form control tabs suffix'] = array( |
1900 | 1900 | '#value' => '</ul>' |
@@ -1981,7 +1981,7 @@ discard block |
||
1981 | 1981 | $privacyconsent_prefs = array_intersect_key($form_state['values'], array_flip($result)); |
1982 | 1982 | foreach ($privacyconsent_prefs as $name => $newstate) { |
1983 | 1983 | $subname = explode('_', $name)[1]; |
1984 | - $currstate = (check_user_consent($boincuser, $subname)) ? 1 : 0 ; |
|
1984 | + $currstate = (check_user_consent($boincuser, $subname)) ? 1 : 0; |
|
1985 | 1985 | list($checkct, $ctid) = check_consent_type($subname); |
1986 | 1986 | if ($checkct && ($currstate != $newstate)) { |
1987 | 1987 | consent_to_a_policy($boincuser, $ctid, $newstate, 0, 'Webform', time()); |
@@ -2047,7 +2047,7 @@ discard block |
||
2047 | 2047 | function boincwork_selectapp_form_submit($form, &$form_state) { |
2048 | 2048 | $myargs = arg(); |
2049 | 2049 | array_pop($myargs); |
2050 | - $newpath = implode('/', $myargs ) . '/' . $form['selectapp']['#value']; |
|
2050 | + $newpath = implode('/', $myargs).'/'.$form['selectapp']['#value']; |
|
2051 | 2051 | $form_state['redirect'] = $newpath; |
2052 | 2052 | } |
2053 | 2053 |