Projet

Général

Profil

Paste
Télécharger (38,9 ko) Statistiques
| Branche: | Révision:

root / drupal7 / modules / block / block.module @ 01dfd3b5

1
<?php
2

    
3
/**
4
 * @file
5
 * Controls the visual building blocks a page is constructed with.
6
 */
7

    
8
/**
9
 * Denotes that a block is not enabled in any region and should not be shown.
10
 */
11
define('BLOCK_REGION_NONE', -1);
12

    
13
/**
14
 * Users cannot control whether or not they see this block.
15
 */
16
define('BLOCK_CUSTOM_FIXED', 0);
17

    
18
/**
19
 * Shows this block by default, but lets individual users hide it.
20
 */
21
define('BLOCK_CUSTOM_ENABLED', 1);
22

    
23
/**
24
 * Hides this block by default but lets individual users show it.
25
 */
26
define('BLOCK_CUSTOM_DISABLED', 2);
27

    
28
/**
29
 * Shows this block on every page except the listed pages.
30
 */
31
define('BLOCK_VISIBILITY_NOTLISTED', 0);
32

    
33
/**
34
 * Shows this block on only the listed pages.
35
 */
36
define('BLOCK_VISIBILITY_LISTED', 1);
37

    
38
/**
39
 * Shows this block if the associated PHP code returns TRUE.
40
 */
41
define('BLOCK_VISIBILITY_PHP', 2);
42

    
43
/**
44
 * Implements hook_help().
45
 */
46
function block_help($path, $arg) {
47
  switch ($path) {
48
    case 'admin/help#block':
49
      $output = '';
50
      $output .= '<h3>' . t('About') . '</h3>';
51
      $output .= '<p>' . t('The Block module allows you to create boxes of content, which are rendered into an area, or region, of one or more pages of a website. The core Seven administration theme, for example, implements the regions "Content", "Help", "Dashboard main", and "Dashboard sidebar", and a block may appear in any one of these regions. The <a href="@blocks">Blocks administration page</a> provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions. For more information, see the online handbook entry for <a href="@block">Block module</a>.', array('@block' => 'http://drupal.org/documentation/modules/block/', '@blocks' => url('admin/structure/block'))) . '</p>';
52
      $output .= '<h3>' . t('Uses') . '</h3>';
53
      $output .= '<dl>';
54
      $output .= '<dt>' . t('Positioning content') . '</dt>';
55
      $output .= '<dd>' . t('When working with blocks, remember that all themes do <em>not</em> implement the same regions, or display regions in the same way. Blocks are positioned on a per-theme basis. Users with the <em>Administer blocks</em> permission can disable blocks. Disabled blocks are listed on the <a href="@blocks">Blocks administration page</a>, but are not displayed in any region.', array('@block' => 'http://drupal.org/documentation/modules/block/', '@blocks' => url('admin/structure/block'))) . '</dd>';
56
      $output .= '<dt>' . t('Controlling visibility') . '</dt>';
57
      $output .= '<dd>' . t('Blocks can be configured to be visible only on certain pages, only to users of certain roles, or only on pages displaying certain <a href="@content-type">content types</a>. Administrators can also allow specific blocks to be enabled or disabled by users when they edit their <a href="@user">My account</a> page. Some dynamic blocks, such as those generated by modules, will be displayed only on certain pages.', array('@content-type' => url('admin/structure/types'), '@user' => url('user'))) . '</dd>';
58
      $output .= '<dt>' . t('Creating custom blocks') . '</dt>';
59
      $output .= '<dd>' . t('Users with the <em>Administer blocks</em> permission can <a href="@block-add">add custom blocks</a>, which are then listed on the <a href="@blocks">Blocks administration page</a>. Once created, custom blocks behave just like default and module-generated blocks.', array('@blocks' => url('admin/structure/block'), '@block-add' => url('admin/structure/block/add'))) . '</dd>';
60
      $output .= '</dl>';
61
      return $output;
62

    
63
    case 'admin/structure/block/add':
64
      return '<p>' . t('Use this page to create a new custom block.') . '</p>';
65
  }
66
  if ($arg[0] == 'admin' && $arg[1] == 'structure' && $arg['2'] == 'block' && (empty($arg[3]) || $arg[3] == 'list')) {
67
    $demo_theme = !empty($arg[4]) ? $arg[4] : variable_get('theme_default', 'bartik');
68
    $themes = list_themes();
69
    $output = '<p>' . t('This page provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions. Since not all themes implement the same regions, or display regions in the same way, blocks are positioned on a per-theme basis. Remember that your changes will not be saved until you click the <em>Save blocks</em> button at the bottom of the page. Click the <em>configure</em> link next to each block to configure its specific title and visibility settings.') . '</p>';
70
    $output .= '<p>' . l(t('Demonstrate block regions (!theme)', array('!theme' => $themes[$demo_theme]->info['name'])), 'admin/structure/block/demo/' . $demo_theme) . '</p>';
71
    return $output;
72
  }
73
}
74

    
75
/**
76
 * Implements hook_theme().
77
 */
78
function block_theme() {
79
  return array(
80
    'block' => array(
81
      'render element' => 'elements',
82
      'template' => 'block',
83
    ),
84
    'block_admin_display_form' => array(
85
      'template' => 'block-admin-display-form',
86
      'file' => 'block.admin.inc',
87
      'render element' => 'form',
88
    ),
89
  );
90
}
91

    
92
/**
93
 * Implements hook_permission().
94
 */
95
function block_permission() {
96
  return array(
97
    'administer blocks' => array(
98
      'title' => t('Administer blocks'),
99
    ),
100
  );
101
}
102

    
103
/**
104
 * Implements hook_menu().
105
 */
106
function block_menu() {
107
  $default_theme = variable_get('theme_default', 'bartik');
108
  $items['admin/structure/block'] = array(
109
    'title' => 'Blocks',
110
    'description' => 'Configure what block content appears in your site\'s sidebars and other regions.',
111
    'page callback' => 'block_admin_display',
112
    'page arguments' => array($default_theme),
113
    'access arguments' => array('administer blocks'),
114
    'file' => 'block.admin.inc',
115
  );
116
  $items['admin/structure/block/manage/%/%'] = array(
117
    'title' => 'Configure block',
118
    'page callback' => 'drupal_get_form',
119
    'page arguments' => array('block_admin_configure', 4, 5),
120
    'access arguments' => array('administer blocks'),
121
    'file' => 'block.admin.inc',
122
  );
123
  $items['admin/structure/block/manage/%/%/configure'] = array(
124
    'title' => 'Configure block',
125
    'type' => MENU_DEFAULT_LOCAL_TASK,
126
    'context' => MENU_CONTEXT_INLINE,
127
  );
128
  $items['admin/structure/block/manage/%/%/delete'] = array(
129
    'title' => 'Delete block',
130
    'page callback' => 'drupal_get_form',
131
    'page arguments' => array('block_custom_block_delete', 4, 5),
132
    'access arguments' => array('administer blocks'),
133
    'type' => MENU_LOCAL_TASK,
134
    'context' => MENU_CONTEXT_NONE,
135
    'file' => 'block.admin.inc',
136
  );
137
  $items['admin/structure/block/add'] = array(
138
    'title' => 'Add block',
139
    'page callback' => 'drupal_get_form',
140
    'page arguments' => array('block_add_block_form'),
141
    'access arguments' => array('administer blocks'),
142
    'type' => MENU_LOCAL_ACTION,
143
    'file' => 'block.admin.inc',
144
  );
145
  foreach (list_themes() as $key => $theme) {
146
    $items['admin/structure/block/list/' . $key] = array(
147
      'title' => $theme->info['name'],
148
      'page arguments' => array($key),
149
      'type' => $key == $default_theme ? MENU_DEFAULT_LOCAL_TASK : MENU_LOCAL_TASK,
150
      'weight' => $key == $default_theme ? -10 : 0,
151
      'access callback' => '_block_themes_access',
152
      'access arguments' => array($theme),
153
      'file' => 'block.admin.inc',
154
    );
155
    if ($key != $default_theme) {
156
      $items['admin/structure/block/list/' . $key . '/add'] = array(
157
        'title' => 'Add block',
158
        'page callback' => 'drupal_get_form',
159
        'page arguments' => array('block_add_block_form'),
160
        'access arguments' => array('administer blocks'),
161
        'type' => MENU_LOCAL_ACTION,
162
        'file' => 'block.admin.inc',
163
      );
164
    }
165
    $items['admin/structure/block/demo/' . $key] = array(
166
      'title' => $theme->info['name'],
167
      'page callback' => 'block_admin_demo',
168
      'page arguments' => array($key),
169
      'type' => MENU_CALLBACK,
170
      'access callback' => '_block_themes_access',
171
      'access arguments' => array($theme),
172
      'theme callback' => '_block_custom_theme',
173
      'theme arguments' => array($key),
174
      'file' => 'block.admin.inc',
175
    );
176
  }
177
  return $items;
178
}
179

    
180
/**
181
 * Menu item access callback - only admin or enabled themes can be accessed.
182
 */
183
function _block_themes_access($theme) {
184
  return user_access('administer blocks') && drupal_theme_access($theme);
185
}
186

    
187
/**
188
 * Theme callback for the block configuration pages.
189
 *
190
 * @param $theme
191
 *   The theme whose blocks are being configured. If not set, the default theme
192
 *   is assumed.
193
 *
194
 * @return
195
 *   The theme that should be used for the block configuration page, or NULL
196
 *   to indicate that the default theme should be used.
197
 */
198
function _block_custom_theme($theme = NULL) {
199
  // We return exactly what was passed in, to guarantee that the page will
200
  // always be displayed using the theme whose blocks are being configured.
201
  return $theme;
202
}
203

    
204
/**
205
 * Implements hook_block_info().
206
 */
207
function block_block_info() {
208
  $blocks = array();
209

    
210
  $result = db_query('SELECT bid, info FROM {block_custom} ORDER BY info');
211
  foreach ($result as $block) {
212
    $blocks[$block->bid]['info'] = $block->info;
213
    // Not worth caching.
214
    $blocks[$block->bid]['cache'] = DRUPAL_NO_CACHE;
215
  }
216
  return $blocks;
217
}
218

    
219
/**
220
 * Implements hook_block_configure().
221
 */
222
function block_block_configure($delta = 0) {
223
  if ($delta) {
224
    $custom_block = block_custom_block_get($delta);
225
  }
226
  else {
227
    $custom_block = array();
228
  }
229
  return block_custom_block_form($custom_block);
230
}
231

    
232
/**
233
 * Implements hook_block_save().
234
 */
235
function block_block_save($delta = 0, $edit = array()) {
236
  block_custom_block_save($edit, $delta);
237
}
238

    
239
/**
240
 * Implements hook_block_view().
241
 *
242
 * Generates the administrator-defined blocks for display.
243
 */
244
function block_block_view($delta = '') {
245
  $block = db_query('SELECT body, format FROM {block_custom} WHERE bid = :bid', array(':bid' => $delta))->fetchObject();
246
  $data['subject'] = NULL;
247
  $data['content'] = check_markup($block->body, $block->format, '', TRUE);
248
  return $data;
249
}
250

    
251
/**
252
 * Implements hook_page_build().
253
 *
254
 * Renders blocks into their regions.
255
 */
256
function block_page_build(&$page) {
257
  global $theme;
258

    
259
  // The theme system might not yet be initialized. We need $theme.
260
  drupal_theme_initialize();
261

    
262
  // Fetch a list of regions for the current theme.
263
  $all_regions = system_region_list($theme);
264

    
265
  $item = menu_get_item();
266
  if ($item === FALSE || $item['path'] != 'admin/structure/block/demo/' . $theme) {
267
    // Load all region content assigned via blocks.
268
    foreach (array_keys($all_regions) as $region) {
269
      // Assign blocks to region.
270
      if ($blocks = block_get_blocks_by_region($region)) {
271
        $page[$region] = $blocks;
272
      }
273
    }
274
    // Once we've finished attaching all blocks to the page, clear the static
275
    // cache to allow modules to alter the block list differently in different
276
    // contexts. For example, any code that triggers hook_page_build() more
277
    // than once in the same page request may need to alter the block list
278
    // differently each time, so that only certain parts of the page are
279
    // actually built. We do not clear the cache any earlier than this, though,
280
    // because it is used each time block_get_blocks_by_region() gets called
281
    // above.
282
    drupal_static_reset('block_list');
283
  }
284
  else {
285
    // Append region description if we are rendering the regions demo page.
286
    if ($item['path'] == 'admin/structure/block/demo/' . $theme) {
287
      foreach (system_region_list($theme, REGIONS_VISIBLE, FALSE) as $region) {
288
        $description = '<div class="block-region">' . $all_regions[$region] . '</div>';
289
        $page[$region]['block_description'] = array(
290
          '#markup' => $description,
291
          '#weight' => 15,
292
        );
293
      }
294
      $page['page_top']['backlink'] = array(
295
        '#type' => 'link',
296
        '#title' => t('Exit block region demonstration'),
297
        '#href' => 'admin/structure/block' . (variable_get('theme_default', 'bartik') == $theme ? '' : '/list/' . $theme),
298
        // Add the "overlay-restore" class to indicate this link should restore
299
        // the context in which the region demonstration page was opened.
300
        '#options' => array('attributes' => array('class' => array('block-demo-backlink', 'overlay-restore'))),
301
        '#weight' => -10,
302
      );
303
    }
304
  }
305
}
306

    
307
/**
308
 * Gets a renderable array of a region containing all enabled blocks.
309
 *
310
 * @param $region
311
 *   The requested region.
312
 *
313
 * @return
314
 *   A renderable array of a region containing all enabled blocks.
315
 */
316
function block_get_blocks_by_region($region) {
317
  $build = array();
318
  if ($list = block_list($region)) {
319
    $build = _block_get_renderable_array($list);
320
  }
321
  return $build;
322
}
323

    
324
/**
325
 * Gets an array of blocks suitable for drupal_render().
326
 *
327
 * @param $list
328
 *   A list of blocks such as that returned by block_list().
329
 *
330
 * @return
331
 *   A renderable array.
332
 */
333
function _block_get_renderable_array($list = array()) {
334
  $weight = 0;
335
  $build = array();
336
  foreach ($list as $key => $block) {
337
    $build[$key] = $block->content;
338
    unset($block->content);
339

    
340
    // Add contextual links for this block; skip the main content block, since
341
    // contextual links are basically output as tabs/local tasks already. Also
342
    // skip the help block, since we assume that most users do not need or want
343
    // to perform contextual actions on the help block, and the links needlessly
344
    // draw attention on it.
345
    if ($key != 'system_main' && $key != 'system_help') {
346
      $build[$key]['#contextual_links']['block'] = array(
347
        'admin/structure/block/manage',
348
        array($block->module, $block->delta),
349
      );
350
    }
351

    
352
    $build[$key] += array(
353
      '#block' => $block,
354
      '#weight' => ++$weight,
355
    );
356
    $build[$key]['#theme_wrappers'][] = 'block';
357
  }
358
  $build['#sorted'] = TRUE;
359
  return $build;
360
}
361

    
362
/**
363
 * Updates the 'block' DB table with the blocks currently exported by modules.
364
 *
365
 * @param $theme
366
 *   The theme to rehash blocks for. If not provided, defaults to the currently
367
 *   used theme.
368
 *
369
 * @return
370
 *   Blocks currently exported by modules.
371
 */
372
function _block_rehash($theme = NULL) {
373
  global $theme_key;
374

    
375
  drupal_theme_initialize();
376
  if (!isset($theme)) {
377
    // If theme is not specifically set, rehash for the current theme.
378
    $theme = $theme_key;
379
  }
380
  $regions = system_region_list($theme);
381

    
382
  // These are the blocks the function will return.
383
  $blocks = array();
384
  // These are the blocks defined by code and modified by the database.
385
  $current_blocks = array();
386
  // These are {block}.bid values to be kept.
387
  $bids = array();
388
  $or = db_or();
389
  // Gather the blocks defined by modules.
390
  foreach (module_implements('block_info') as $module) {
391
    $module_blocks = module_invoke($module, 'block_info');
392
    $delta_list = array();
393
    foreach ($module_blocks as $delta => $block) {
394
      // Compile a condition to retrieve this block from the database.
395
      // Add identifiers.
396
      $delta_list[] = $delta;
397
      $block['module'] = $module;
398
      $block['delta'] = $delta;
399
      $block['theme'] = $theme;
400
      $current_blocks[$module][$delta] = $block;
401
    }
402
    if (!empty($delta_list)) {
403
      $condition = db_and()->condition('module', $module)->condition('delta', $delta_list);
404
      $or->condition($condition);
405
    }
406
  }
407
  // Save the blocks defined in code for alter context.
408
  $code_blocks = $current_blocks;
409
  $database_blocks = db_select('block', 'b', array('fetch' => PDO::FETCH_ASSOC))
410
    ->fields('b')
411
    ->condition($or)
412
    ->condition('theme', $theme)
413
    ->execute();
414
  $original_database_blocks = array();
415
  foreach ($database_blocks as $block) {
416
    $module = $block['module'];
417
    $delta = $block['delta'];
418
    $original_database_blocks[$module][$delta] = $block;
419
    // The cache mode can only by set from hook_block_info(), so that has
420
    // precedence over the database's value.
421
    if (isset($current_blocks[$module][$delta]['cache'])) {
422
      $block['cache'] = $current_blocks[$module][$delta]['cache'];
423
    }
424
    // Preserve info which is not in the database.
425
    $block['info'] = $current_blocks[$module][$delta]['info'];
426
    // Blocks stored in the database override the blocks defined in code.
427
    $current_blocks[$module][$delta] = $block;
428
    // Preserve this block.
429
    $bids[$block['bid']] = $block['bid'];
430
  }
431
  drupal_alter('block_info', $current_blocks, $theme, $code_blocks);
432
  foreach ($current_blocks as $module => $module_blocks) {
433
    foreach ($module_blocks as $delta => $block) {
434
      // Make sure certain attributes are set.
435
      $block += array(
436
        'pages' => '',
437
        'weight' => 0,
438
        'status' => 0,
439
      );
440
      // Check for active blocks in regions that are not available.
441
      if (!empty($block['region']) && $block['region'] != BLOCK_REGION_NONE && !isset($regions[$block['region']]) && $block['status'] == 1) {
442
        drupal_set_message(t('The block %info was assigned to the invalid region %region and has been disabled.', array('%info' => $block['info'], '%region' => $block['region'])), 'warning');
443
        // Disabled modules are moved into the BLOCK_REGION_NONE later so no
444
        // need to move the block to another region.
445
        $block['status'] = 0;
446
      }
447
      // Set region to none if not enabled.
448
      if (empty($block['status'])) {
449
        $block['status'] = 0;
450
        $block['region'] = BLOCK_REGION_NONE;
451
      }
452
      // There is no point saving disabled blocks. Still, we need to save them
453
      // because the 'title' attribute is saved to the {blocks} table.
454
      if (isset($block['bid'])) {
455
        // If the block has a bid property, it comes from the database and
456
        // the record needs to be updated, so set the primary key to 'bid'
457
        // before passing to drupal_write_record().
458
        $primary_keys = array('bid');
459
        // Remove a block from the list of blocks to keep if it became disabled.
460
        unset($bids[$block['bid']]);
461
      }
462
      else {
463
        $primary_keys = array();
464
      }
465
      // If the block is new or differs from the original database block, save
466
      // it. To determine whether there was a change it is enough to examine
467
      // the values for the keys in the original database record as that
468
      // contained every database field.
469
      if (!$primary_keys || array_diff_assoc($original_database_blocks[$module][$delta], $block)) {
470
        drupal_write_record('block', $block, $primary_keys);
471
        // Make it possible to test this.
472
        $block['saved'] = TRUE;
473
      }
474
      // Add to the list of blocks we return.
475
      $blocks[] = $block;
476
    }
477
  }
478
  if ($bids) {
479
    // Remove disabled that are no longer defined by the code from the
480
    // database.
481
    db_delete('block')
482
      ->condition('bid', $bids, 'NOT IN')
483
      ->condition('theme', $theme)
484
      ->execute();
485
  }
486
  return $blocks;
487
}
488

    
489
/**
490
 * Returns information from database about a user-created (custom) block.
491
 *
492
 * @param $bid
493
 *   ID of the block to get information for.
494
 *
495
 * @return
496
 *   Associative array of information stored in the database for this block.
497
 *   Array keys:
498
 *   - bid: Block ID.
499
 *   - info: Block description.
500
 *   - body: Block contents.
501
 *   - format: Filter ID of the filter format for the body.
502
 */
503
function block_custom_block_get($bid) {
504
  return db_query("SELECT * FROM {block_custom} WHERE bid = :bid", array(':bid' => $bid))->fetchAssoc();
505
}
506

    
507
/**
508
 * Form constructor for the custom block form.
509
 *
510
 * @param $edit
511
 *   (optional) An associative array of information retrieved by
512
 *   block_custom_get_block() if an existing block is being edited, or an empty
513
 *   array otherwise. Defaults to array().
514
 *
515
 * @ingroup forms
516
 */
517
function block_custom_block_form($edit = array()) {
518
  $edit += array(
519
    'info' => '',
520
    'body' => '',
521
  );
522
  $form['info'] = array(
523
    '#type' => 'textfield',
524
    '#title' => t('Block description'),
525
    '#default_value' => $edit['info'],
526
    '#maxlength' => 64,
527
    '#description' => t('A brief description of your block. Used on the <a href="@overview">Blocks administration page</a>.', array('@overview' => url('admin/structure/block'))),
528
    '#required' => TRUE,
529
    '#weight' => -18,
530
  );
531
  $form['body_field']['#weight'] = -17;
532
  $form['body_field']['body'] = array(
533
    '#type' => 'text_format',
534
    '#title' => t('Block body'),
535
    '#default_value' => $edit['body'],
536
    '#format' => isset($edit['format']) ? $edit['format'] : NULL,
537
    '#rows' => 15,
538
    '#description' => t('The content of the block as shown to the user.'),
539
    '#required' => TRUE,
540
    '#weight' => -17,
541
  );
542

    
543
  return $form;
544
}
545

    
546
/**
547
 * Saves a user-created block in the database.
548
 *
549
 * @param $edit
550
 *   Associative array of fields to save. Array keys:
551
 *   - info: Block description.
552
 *   - body: Associative array of body value and format.  Array keys:
553
 *     - value: Block contents.
554
 *     - format: Filter ID of the filter format for the body.
555
 * @param $delta
556
 *   Block ID of the block to save.
557
 *
558
 * @return
559
 *   Always returns TRUE.
560
 */
561
function block_custom_block_save($edit, $delta) {
562
  db_update('block_custom')
563
    ->fields(array(
564
      'body' => $edit['body']['value'],
565
      'info' => $edit['info'],
566
      'format' => $edit['body']['format'],
567
    ))
568
    ->condition('bid', $delta)
569
    ->execute();
570
  return TRUE;
571
}
572

    
573
/**
574
 * Implements hook_form_FORM_ID_alter() for user_profile_form().
575
 */
576
function block_form_user_profile_form_alter(&$form, &$form_state) {
577
  if ($form['#user_category'] == 'account') {
578
    $account = $form['#user'];
579
    $rids = array_keys($account->roles);
580
    $result = db_query("SELECT DISTINCT b.* FROM {block} b LEFT JOIN {block_role} r ON b.module = r.module AND b.delta = r.delta WHERE b.status = 1 AND b.custom <> 0 AND (r.rid IN (:rids) OR r.rid IS NULL) ORDER BY b.weight, b.module", array(':rids' => $rids));
581

    
582
    $blocks = array();
583
    foreach ($result as $block) {
584
      $data = module_invoke($block->module, 'block_info');
585
      if ($data[$block->delta]['info']) {
586
        $blocks[$block->module][$block->delta] = array(
587
          '#type' => 'checkbox',
588
          '#title' => check_plain($data[$block->delta]['info']),
589
          '#default_value' => isset($account->data['block'][$block->module][$block->delta]) ? $account->data['block'][$block->module][$block->delta] : ($block->custom == 1),
590
        );
591
      }
592
    }
593
    // Only display the fieldset if there are any personalizable blocks.
594
    if ($blocks) {
595
      $form['block'] = array(
596
        '#type' => 'fieldset',
597
        '#title' => t('Personalize blocks'),
598
        '#description' => t('Blocks consist of content or information that complements the main content of the page. Enable or disable optional blocks using the checkboxes below.'),
599
        '#weight' => 3,
600
        '#collapsible' => TRUE,
601
        '#tree' => TRUE,
602
      );
603
      $form['block'] += $blocks;
604
    }
605
  }
606
}
607

    
608
/**
609
 * Implements hook_user_presave().
610
 */
611
function block_user_presave(&$edit, $account, $category) {
612
  if (isset($edit['block'])) {
613
    $edit['data']['block'] = $edit['block'];
614
  }
615
}
616

    
617
/**
618
 * Initializes blocks for enabled themes.
619
 *
620
 * @param $theme_list
621
 *   An array of theme names.
622
 */
623
function block_themes_enabled($theme_list) {
624
  foreach ($theme_list as $theme) {
625
    block_theme_initialize($theme);
626
  }
627
}
628

    
629
/**
630
 * Assigns an initial, default set of blocks for a theme.
631
 *
632
 * This function is called the first time a new theme is enabled. The new theme
633
 * gets a copy of the default theme's blocks, with the difference that if a
634
 * particular region isn't available in the new theme, the block is assigned
635
 * to the new theme's default region.
636
 *
637
 * @param $theme
638
 *   The name of a theme.
639
 */
640
function block_theme_initialize($theme) {
641
  // Initialize theme's blocks if none already registered.
642
  $has_blocks = (bool) db_query_range('SELECT 1 FROM {block} WHERE theme = :theme', 0, 1, array(':theme' => $theme))->fetchField();
643
  if (!$has_blocks) {
644
    $default_theme = variable_get('theme_default', 'bartik');
645
    // Apply only to new theme's visible regions.
646
    $regions = system_region_list($theme, REGIONS_VISIBLE);
647
    $result = db_query("SELECT * FROM {block} WHERE theme = :theme", array(':theme' => $default_theme), array('fetch' => PDO::FETCH_ASSOC));
648
    foreach ($result as $block) {
649
      // If the region isn't supported by the theme, assign the block to the
650
      // theme's default region.
651
      if ($block['status'] && !isset($regions[$block['region']])) {
652
        $block['region'] = system_default_region($theme);
653
      }
654
      $block['theme'] = $theme;
655
      unset($block['bid']);
656
      drupal_write_record('block', $block);
657
    }
658
  }
659
}
660

    
661
/**
662
 * Returns all blocks in the specified region for the current user.
663
 *
664
 * @param $region
665
 *   The name of a region.
666
 *
667
 * @return
668
 *   An array of block objects, indexed with the module name and block delta
669
 *   concatenated with an underscore, thus: MODULE_DELTA. If you are displaying
670
 *   your blocks in one or two sidebars, you may check whether this array is
671
 *   empty to see how many columns are going to be displayed.
672
 *
673
 * @todo
674
 *   Now that the block table has a primary key, we should use that as the
675
 *   array key instead of MODULE_DELTA.
676
 */
677
function block_list($region) {
678
  $blocks = &drupal_static(__FUNCTION__);
679

    
680
  if (!isset($blocks)) {
681
    $blocks = _block_load_blocks();
682
  }
683

    
684
  // Create an empty array if there are no entries.
685
  if (!isset($blocks[$region])) {
686
    $blocks[$region] = array();
687
  }
688
  else {
689
    $blocks[$region] = _block_render_blocks($blocks[$region]);
690
  }
691

    
692
  return $blocks[$region];
693
}
694

    
695
/**
696
 * Loads a block object from the database.
697
 *
698
 * This function returns the first block matching the module and delta
699
 * parameters, so it should not be used for theme-specific functionality.
700
 *
701
 * @param $module
702
 *   Name of the module that implements the block to load.
703
 * @param $delta
704
 *   Unique ID of the block within the context of $module. Pass NULL to return
705
 *   an empty block object for $module.
706
 *
707
 * @return
708
 *   A block object.
709
 */
710
function block_load($module, $delta) {
711
  if (isset($delta)) {
712
    $block = db_query('SELECT * FROM {block} WHERE module = :module AND delta = :delta', array(':module' => $module, ':delta' => $delta))->fetchObject();
713
  }
714

    
715
  // If the block does not exist in the database yet return a stub block
716
  // object.
717
  if (empty($block)) {
718
    $block = new stdClass();
719
    $block->module = $module;
720
    $block->delta = $delta;
721
  }
722

    
723
  return $block;
724
}
725

    
726
/**
727
 * Loads blocks' information from the database.
728
 *
729
 * @return
730
 *   An array of blocks grouped by region.
731
 */
732
function _block_load_blocks() {
733
  global $theme_key;
734

    
735
  $query = db_select('block', 'b');
736
  $result = $query
737
    ->fields('b')
738
    ->condition('b.theme', $theme_key)
739
    ->condition('b.status', 1)
740
    ->orderBy('b.region')
741
    ->orderBy('b.weight')
742
    ->orderBy('b.module')
743
    ->addTag('block_load')
744
    ->addTag('translatable')
745
    ->execute();
746

    
747
  $block_info = $result->fetchAllAssoc('bid');
748
  // Allow modules to modify the block list.
749
  drupal_alter('block_list', $block_info);
750

    
751
  $blocks = array();
752
  foreach ($block_info as $block) {
753
    $blocks[$block->region]["{$block->module}_{$block->delta}"] = $block;
754
  }
755
  return $blocks;
756
}
757

    
758
/**
759
 * Implements hook_block_list_alter().
760
 *
761
 * Checks the page, user role, and user-specific visibility settings.
762
 * Removes the block if the visibility conditions are not met.
763
 */
764
function block_block_list_alter(&$blocks) {
765
  global $user, $theme_key;
766

    
767
  // Build an array of roles for each block.
768
  $block_roles = array();
769
  $result = db_query('SELECT module, delta, rid FROM {block_role}');
770
  foreach ($result as $record) {
771
    $block_roles[$record->module][$record->delta][] = $record->rid;
772
  }
773

    
774
  foreach ($blocks as $key => $block) {
775
    if (!isset($block->theme) || !isset($block->status) || $block->theme != $theme_key || $block->status != 1) {
776
      // This block was added by a contrib module, leave it in the list.
777
      continue;
778
    }
779

    
780
    // If a block has no roles associated, it is displayed for every role.
781
    // For blocks with roles associated, if none of the user's roles matches
782
    // the settings from this block, remove it from the block list.
783
    if (isset($block_roles[$block->module][$block->delta]) && !array_intersect($block_roles[$block->module][$block->delta], array_keys($user->roles))) {
784
      // No match.
785
      unset($blocks[$key]);
786
      continue;
787
    }
788

    
789
    // Use the user's block visibility setting, if necessary.
790
    if ($block->custom != BLOCK_CUSTOM_FIXED) {
791
      if ($user->uid && isset($user->data['block'][$block->module][$block->delta])) {
792
        $enabled = $user->data['block'][$block->module][$block->delta];
793
      }
794
      else {
795
        $enabled = ($block->custom == BLOCK_CUSTOM_ENABLED);
796
      }
797
    }
798
    else {
799
      $enabled = TRUE;
800
    }
801

    
802
    // Limited visibility blocks must list at least one page.
803
    if ($block->visibility == BLOCK_VISIBILITY_LISTED && empty($block->pages)) {
804
      $enabled = FALSE;
805
    }
806

    
807
    if (!$enabled) {
808
      unset($blocks[$key]);
809
      continue;
810
    }
811

    
812
    // Match path if necessary.
813
    if ($block->pages) {
814
      // Convert path to lowercase. This allows comparison of the same path
815
      // with different case. Ex: /Page, /page, /PAGE.
816
      $pages = drupal_strtolower($block->pages);
817
      if ($block->visibility < BLOCK_VISIBILITY_PHP) {
818
        // Convert the Drupal path to lowercase.
819
        $path = drupal_strtolower(drupal_get_path_alias($_GET['q']));
820
        // Compare the lowercase internal and lowercase path alias (if any).
821
        $page_match = drupal_match_path($path, $pages);
822
        if ($path != $_GET['q']) {
823
          $page_match = $page_match || drupal_match_path($_GET['q'], $pages);
824
        }
825
        // When $block->visibility has a value of 0
826
        // (BLOCK_VISIBILITY_NOTLISTED), the block is displayed on all pages
827
        // except those listed in $block->pages. When set to 1
828
        // (BLOCK_VISIBILITY_LISTED), it is displayed only on those pages
829
        // listed in $block->pages.
830
        $page_match = !($block->visibility xor $page_match);
831
      }
832
      elseif (module_exists('php')) {
833
        $page_match = php_eval($block->pages);
834
      }
835
      else {
836
        $page_match = FALSE;
837
      }
838
    }
839
    else {
840
      $page_match = TRUE;
841
    }
842
    if (!$page_match) {
843
      unset($blocks[$key]);
844
    }
845
  }
846
}
847

    
848
/**
849
 * Render the content and subject for a set of blocks.
850
 *
851
 * @param $region_blocks
852
 *   An array of block objects such as returned for one region by
853
 *   _block_load_blocks().
854
 *
855
 * @return
856
 *   An array of visible blocks as expected by drupal_render().
857
 */
858
function _block_render_blocks($region_blocks) {
859
  $cacheable = TRUE;
860

    
861
  // We preserve the submission of forms in blocks, by fetching from cache only
862
  // if the request method is 'GET' (or 'HEAD').
863
  if ($_SERVER['REQUEST_METHOD'] != 'GET' && $_SERVER['REQUEST_METHOD'] != 'HEAD') {
864
    $cacheable = FALSE;
865
  }
866
  // Block caching is not usually compatible with node access modules, so by
867
  // default it is disabled when node access modules exist. However, it can be
868
  // allowed by using the variable 'block_cache_bypass_node_grants'.
869
  elseif (!variable_get('block_cache_bypass_node_grants', FALSE) && count(module_implements('node_grants'))) {
870
    $cacheable = FALSE;
871
  }
872

    
873
  // Proceed to loop over all blocks in order to compute their respective cache
874
  // identifiers; this allows us to do one single cache_get_multiple() call
875
  // instead of doing one cache_get() call per block.
876
  $cached_blocks = array();
877
  $cids = array();
878

    
879
  if ($cacheable) {
880
    foreach ($region_blocks as $key => $block) {
881
      if (!isset($block->content)) {
882
        if (($cid = _block_get_cache_id($block))) {
883
          $cids[$key] = $cid;
884
        }
885
      }
886
    }
887

    
888
    if ($cids) {
889
      // We cannot pass $cids in directly because cache_get_multiple() will
890
      // modify it, and we need to use it later on in this function.
891
      $cid_values = array_values($cids);
892
      $cached_blocks = cache_get_multiple($cid_values, 'cache_block');
893
    }
894
  }
895

    
896
  foreach ($region_blocks as $key => $block) {
897
    // Render the block content if it has not been created already.
898
    if (!isset($block->content)) {
899
      // Erase the block from the static array - we'll put it back if it has
900
      // content.
901
      unset($region_blocks[$key]);
902

    
903
      $cid = empty($cids[$key]) ? NULL : $cids[$key];
904

    
905
      // Try fetching the block from the previously loaded cache entries.
906
      if (isset($cached_blocks[$cid])) {
907
        $array = $cached_blocks[$cid]->data;
908
      }
909
      else {
910
        $array = module_invoke($block->module, 'block_view', $block->delta);
911

    
912
        // Valid PHP function names cannot contain hyphens.
913
        $delta = str_replace('-', '_', $block->delta);
914
        // Allow modules to modify the block before it is viewed, via either
915
        // hook_block_view_alter() or hook_block_view_MODULE_DELTA_alter().
916
        drupal_alter(array('block_view', "block_view_{$block->module}_{$delta}"), $array, $block);
917

    
918
        if (isset($cid)) {
919
          cache_set($cid, $array, 'cache_block', CACHE_TEMPORARY);
920
        }
921
      }
922

    
923
      if (isset($array) && is_array($array)) {
924
        foreach ($array as $k => $v) {
925
          $block->$k = $v;
926
        }
927
      }
928
      if (isset($block->content) && $block->content) {
929
        // Normalize to the drupal_render() structure.
930
        if (is_string($block->content)) {
931
          $block->content = array('#markup' => $block->content);
932
        }
933
        // Override default block title if a custom display title is present.
934
        if ($block->title) {
935
          // Check plain here to allow module generated titles to keep any
936
          // markup.
937
          $block->subject = $block->title == '<none>' ? '' : check_plain($block->title);
938
        }
939
        if (!isset($block->subject)) {
940
          $block->subject = '';
941
        }
942
        $region_blocks["{$block->module}_{$block->delta}"] = $block;
943
      }
944
    }
945
  }
946
  return $region_blocks;
947
}
948

    
949
/**
950
 * Assemble the cache_id to use for a given block.
951
 *
952
 * The cache_id string reflects the viewing context for the current block
953
 * instance, obtained by concatenating the relevant context information
954
 * (user, page, ...) according to the block's cache settings (BLOCK_CACHE_*
955
 * constants). Two block instances can use the same cached content when
956
 * they share the same cache_id.
957
 *
958
 * Theme and language contexts are automatically differentiated.
959
 *
960
 * @param $block
961
 *   The block to get the cache_id from.
962
 *
963
 * @return
964
 *   The string used as cache_id for the block.
965
 */
966
function _block_get_cache_id($block) {
967
  global $user;
968

    
969
  // User 1 being out of the regular 'roles define permissions' schema,
970
  // it brings too many chances of having unwanted output get in the cache
971
  // and later be served to other users. We therefore exclude user 1 from
972
  // block caching.
973
  if (variable_get('block_cache', FALSE) && !in_array($block->cache, array(DRUPAL_NO_CACHE, DRUPAL_CACHE_CUSTOM)) && $user->uid != 1) {
974
    // Start with common sub-patterns: block identification, theme, language.
975
    $cid_parts[] = $block->module;
976
    $cid_parts[] = $block->delta;
977
    drupal_alter('block_cid_parts', $cid_parts, $block);
978
    $cid_parts = array_merge($cid_parts, drupal_render_cid_parts($block->cache));
979

    
980
    return implode(':', $cid_parts);
981
  }
982
}
983

    
984
/**
985
 * Implements hook_flush_caches().
986
 */
987
function block_flush_caches() {
988
  // Rehash blocks for active themes. We don't use list_themes() here,
989
  // because if MAINTENANCE_MODE is defined it skips reading the database,
990
  // and we can't tell which themes are active.
991
  $themes = db_query("SELECT name FROM {system} WHERE type = 'theme' AND status = 1");
992
  foreach ($themes as $theme) {
993
    _block_rehash($theme->name);
994
  }
995

    
996
  return array('cache_block');
997
}
998

    
999
/**
1000
 * Processes variables for block.tpl.php.
1001
 *
1002
 * Prepares the values passed to the theme_block function to be passed
1003
 * into a pluggable template engine. Uses block properties to generate a
1004
 * series of template file suggestions. If none are found, the default
1005
 * block.tpl.php is used.
1006
 *
1007
 * Most themes utilize their own copy of block.tpl.php. The default is located
1008
 * inside "modules/block/block.tpl.php". Look in there for the full list of
1009
 * variables.
1010
 *
1011
 * The $variables array contains the following arguments:
1012
 * - $block
1013
 *
1014
 * @see block.tpl.php
1015
 */
1016
function template_preprocess_block(&$variables) {
1017
  $block_counter = &drupal_static(__FUNCTION__, array());
1018
  $variables['block'] = $variables['elements']['#block'];
1019
  // All blocks get an independent counter for each region.
1020
  if (!isset($block_counter[$variables['block']->region])) {
1021
    $block_counter[$variables['block']->region] = 1;
1022
  }
1023
  // Same with zebra striping.
1024
  $variables['block_zebra'] = ($block_counter[$variables['block']->region] % 2) ? 'odd' : 'even';
1025
  $variables['block_id'] = $block_counter[$variables['block']->region]++;
1026

    
1027
  // Create the $content variable that templates expect.
1028
  $variables['content'] = $variables['elements']['#children'];
1029

    
1030
  $variables['classes_array'][] = drupal_html_class('block-' . $variables['block']->module);
1031

    
1032
  $variables['theme_hook_suggestions'][] = 'block__' . $variables['block']->region;
1033
  $variables['theme_hook_suggestions'][] = 'block__' . $variables['block']->module;
1034
  // Hyphens (-) and underscores (_) play a special role in theme suggestions.
1035
  // Theme suggestions should only contain underscores, because within
1036
  // drupal_find_theme_templates(), underscores are converted to hyphens to
1037
  // match template file names, and then converted back to underscores to match
1038
  // pre-processing and other function names. So if your theme suggestion
1039
  // contains a hyphen, it will end up as an underscore after this conversion,
1040
  // and your function names won't be recognized. So, we need to convert
1041
  // hyphens to underscores in block deltas for the theme suggestions.
1042
  $variables['theme_hook_suggestions'][] = 'block__' . $variables['block']->module . '__' . strtr($variables['block']->delta, '-', '_');
1043

    
1044
  // Create a valid HTML ID and make sure it is unique.
1045
  $variables['block_html_id'] = drupal_html_id('block-' . $variables['block']->module . '-' . $variables['block']->delta);
1046
}
1047

    
1048
/**
1049
 * Implements hook_user_role_delete().
1050
 *
1051
 * Removes deleted role from blocks that use it.
1052
 */
1053
function block_user_role_delete($role) {
1054
  db_delete('block_role')
1055
    ->condition('rid', $role->rid)
1056
    ->execute();
1057
}
1058

    
1059
/**
1060
 * Implements hook_menu_delete().
1061
 */
1062
function block_menu_delete($menu) {
1063
  db_delete('block')
1064
    ->condition('module', 'menu')
1065
    ->condition('delta', $menu['menu_name'])
1066
    ->execute();
1067
  db_delete('block_role')
1068
    ->condition('module', 'menu')
1069
    ->condition('delta', $menu['menu_name'])
1070
    ->execute();
1071
}
1072

    
1073
/**
1074
 * Implements hook_form_FORM_ID_alter().
1075
 */
1076
function block_form_system_performance_settings_alter(&$form, &$form_state) {
1077
  $disabled = (!variable_get('block_cache_bypass_node_grants', FALSE) && count(module_implements('node_grants')));
1078
  $form['caching']['block_cache'] = array(
1079
    '#type' => 'checkbox',
1080
    '#title' => t('Cache blocks'),
1081
    '#default_value' => variable_get('block_cache', FALSE),
1082
    '#disabled' => $disabled,
1083
    '#description' => $disabled ? t('Block caching is inactive because you have enabled modules defining content access restrictions.') : NULL,
1084
    '#weight' => -1,
1085
  );
1086
}
1087

    
1088
/**
1089
 * Implements hook_admin_paths().
1090
 */
1091
function block_admin_paths() {
1092
  $paths = array(
1093
    // Exclude the block demonstration page from admin (overlay) treatment.
1094
    // This allows us to present this page in its true form, full page.
1095
    'admin/structure/block/demo/*' => FALSE,
1096
  );
1097
  return $paths;
1098
}
1099

    
1100
/**
1101
 * Implements hook_modules_uninstalled().
1102
 *
1103
 * Cleans up {block} and {block_role} tables from modules' blocks.
1104
 */
1105
function block_modules_uninstalled($modules) {
1106
  db_delete('block')
1107
    ->condition('module', $modules, 'IN')
1108
    ->execute();
1109
  db_delete('block_role')
1110
    ->condition('module', $modules, 'IN')
1111
    ->execute();
1112
}