Projet

Général

Profil

Paste
Télécharger (24,2 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / piwik / piwik.module @ e9f59589

1
<?php
2

    
3
/**
4
 * @file
5
 * Drupal Module: Piwik
6
 *
7
 * Adds the required Javascript to all your Drupal pages to allow tracking by
8
 * the Piwik statistics package.
9
 *
10
 * @author: Alexander Hass <http://drupal.org/user/85918>
11
 */
12

    
13
/**
14
 * Define the default file extension list that should be tracked as download.
15
 */
16
define('PIWIK_TRACKFILES_EXTENSIONS', '7z|aac|arc|arj|asf|asx|avi|bin|csv|doc|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip');
17

    
18
/**
19
 * Define default path exclusion list to remove tracking from admin pages,
20
 * see http://drupal.org/node/34970 for more information.
21
 */
22
define('PIWIK_PAGES', "admin\nadmin/*\nbatch\nnode/add*\nnode/*/*\nuser/*/*");
23

    
24
/**
25
 * Implements hook_help().
26
 */
27
function piwik_help($path, $arg) {
28
  switch ($path) {
29
    case 'admin/config/system/piwik':
30
      return t('<a href="@pk_url">Piwik - Web analytics</a> is an open source (GPL license) web analytics software. It gives interesting reports on your website visitors, your popular pages, the search engines keywords they used, the language they speak... and so much more. Piwik aims to be an open source alternative to Google Analytics.', array('@pk_url' => 'http://www.piwik.org/'));
31
  }
32
}
33

    
34
/**
35
 * Implements hook_theme().
36
 */
37
function piwik_theme() {
38
  return array(
39
    'piwik_admin_custom_var_table' => array(
40
      'render element' => 'form',
41
    ),
42
  );
43
}
44

    
45
/**
46
 * Implements hook_permission().
47
 */
48
function piwik_permission() {
49
  return array(
50
    'administer piwik' => array(
51
      'title' => t('Administer Piwik'),
52
      'description' => t('Perform maintenance tasks for Piwik.'),
53
    ),
54
    'opt-in or out of tracking' => array(
55
      'title' => t('Opt-in or out of tracking'),
56
      'description' => t('Allow users to decide if tracking code will be added to pages or not.'),
57
    ),
58
    'use PHP for tracking visibility' => array(
59
      'title' => t('Use PHP for tracking visibility'),
60
      'description' => t('Enter PHP code in the field for tracking visibility settings.'),
61
      'restrict access' => TRUE,
62
    ),
63
  );
64
}
65

    
66
/**
67
 * Implements hook_menu().
68
 */
69
function piwik_menu() {
70
  $items['admin/config/system/piwik'] = array(
71
    'title' => 'Piwik',
72
    'description' => 'Configure the settings used to generate your Piwik tracking code.',
73
    'page callback' => 'drupal_get_form',
74
    'page arguments' => array('piwik_admin_settings_form'),
75
    'access arguments' => array('administer piwik'),
76
    'type' => MENU_NORMAL_ITEM,
77
    'file' => 'piwik.admin.inc',
78
  );
79

    
80
  return $items;
81
}
82

    
83
/**
84
 * Implements hook_page_alter() to insert JavaScript to the appropriate scope/region of the page.
85
 */
86
function piwik_page_alter(&$page) {
87
  global $user;
88

    
89
  $id = variable_get('piwik_site_id', '');
90

    
91
  // Get page status code for visibility filtering.
92
  $status = drupal_get_http_header('Status');
93
  $trackable_status_codes = array(
94
    '403 Forbidden',
95
    '404 Not Found',
96
  );
97

    
98
  // 1. Check if the piwik account number has a value.
99
  // 2. Track page views based on visibility value.
100
  // 3. Check if we should track the currently active user's role.
101
  if (preg_match('/^\d{1,}$/', $id) && (_piwik_visibility_pages() || in_array($status, $trackable_status_codes)) && _piwik_visibility_user($user)) {
102

    
103
    $url_http = variable_get('piwik_url_http', '');
104
    $url_https = variable_get('piwik_url_https', '');
105
    $scope = variable_get('piwik_js_scope', 'header');
106

    
107
    $set_custom_url = '';
108
    $set_document_title = '';
109
    $set_custom_data = array();
110

    
111
    // Add link tracking.
112
    $link_settings = array();
113
    $link_settings['trackMailto'] = variable_get('piwik_trackmailto', 1);
114

    
115
    drupal_add_js(array('piwik' => $link_settings), 'setting');
116
    drupal_add_js(drupal_get_path('module', 'piwik') . '/piwik.js');
117

    
118
    // Piwik can show a tree view of page titles that represents the site structure
119
    // if setDocumentTitle() provides the page titles as a "/" delimited list.
120
    // This may makes it easier to browse through the statistics of page titles
121
    // on larger sites.
122
    if (variable_get('piwik_page_title_hierarchy', FALSE) == TRUE) {
123
      $titles = _piwik_get_hierarchy_titles();
124

    
125
      if (variable_get('piwik_page_title_hierarchy_exclude_home', TRUE)) {
126
        // Remove the "Home" item from the titles to flatten the tree view.
127
        array_shift($titles);
128
      }
129

    
130
      // Remove all empty titles.
131
      $titles = array_filter($titles);
132

    
133
      if (!empty($titles)) {
134
        // Encode title, at least to keep "/" intact.
135
        $titles = array_map('urlencode', $titles);
136

    
137
        $set_document_title = drupal_json_encode(implode('/', $titles));
138
      }
139
    }
140

    
141
    // Add messages tracking.
142
    $message_events = '';
143
    if ($message_types = variable_get('piwik_trackmessages', array())) {
144
      $message_types = array_values(array_filter($message_types));
145
      $status_heading = array(
146
        'status' => t('Status message'),
147
        'warning' => t('Warning message'),
148
        'error' => t('Error message'),
149
      );
150

    
151
      foreach (drupal_get_messages(NULL, FALSE) as $type => $messages) {
152
        // Track only the selected message types.
153
        if (in_array($type, $message_types)) {
154
          foreach ($messages as $message) {
155
            $message_events .= '_paq.push(["trackEvent", ' . drupal_json_encode(t('Messages')) . ', ' . drupal_json_encode($status_heading[$type]) . ', ' . drupal_json_encode(strip_tags($message)) . ']);';
156
          }
157
        }
158
      }
159
    }
160

    
161
    // If this node is a translation of another node, pass the original
162
    // node instead.
163
    if (module_exists('translation') && variable_get('piwik_translation_set', 0)) {
164
      // Check we have a node object, it supports translation, and its
165
      // translated node ID (tnid) doesn't match its own node ID.
166
      $node = menu_get_object();
167
      if ($node && translation_supported_type($node->type) && !empty($node->tnid) && ($node->tnid != $node->nid)) {
168
        $source_node = node_load($node->tnid);
169
        $languages = language_list();
170
        $set_custom_url = drupal_json_encode(url('node/' . $source_node->nid, array('language' => $languages[$source_node->language], 'absolute' => TRUE)));
171
      }
172
    }
173

    
174
    // Track access denied (403) and file not found (404) pages.
175
    if ($status == '403 Forbidden') {
176
      $set_document_title = '"403/URL = " + encodeURIComponent(document.location.pathname+document.location.search) + "/From = " + encodeURIComponent(document.referrer)';
177
    }
178
    elseif ($status == '404 Not Found') {
179
      $set_document_title = '"404/URL = " + encodeURIComponent(document.location.pathname+document.location.search) + "/From = " + encodeURIComponent(document.referrer)';
180
    }
181

    
182
    // Add custom variables.
183
    $piwik_custom_vars = variable_get('piwik_custom_var', array());
184
    $custom_variable = '';
185
    for ($i = 1; $i < 6; $i++) {
186
      $custom_var_name = !empty($piwik_custom_vars['slots'][$i]['name']) ? $piwik_custom_vars['slots'][$i]['name'] : '';
187
      if (!empty($custom_var_name)) {
188
        $custom_var_value = !empty($piwik_custom_vars['slots'][$i]['value']) ? $piwik_custom_vars['slots'][$i]['value'] : '';
189
        $custom_var_scope = !empty($piwik_custom_vars['slots'][$i]['scope']) ? $piwik_custom_vars['slots'][$i]['scope'] : 'visit';
190

    
191
        $types = array();
192
        $node = menu_get_object();
193
        if (is_object($node)) {
194
          $types += array('node' => $node);
195
        }
196
        $custom_var_name = token_replace($custom_var_name, $types, array('clear' => TRUE));
197
        $custom_var_value = token_replace($custom_var_value, $types, array('clear' => TRUE));
198

    
199
        // Suppress empty custom names and/or variables.
200
        if (!drupal_strlen(trim($custom_var_name)) || !drupal_strlen(trim($custom_var_value))) {
201
          continue;
202
        }
203

    
204
        // Custom variables names and values are limited to 200 characters in
205
        // length. It is recommended to store values that are as small as
206
        // possible to ensure that the Piwik Tracking request URL doesn't go
207
        // over the URL limit for the webserver or browser.
208
        $custom_var_name = rtrim(substr($custom_var_name, 0, 200));
209
        $custom_var_value = rtrim(substr($custom_var_value, 0, 200));
210

    
211
        $custom_var_name = drupal_json_encode($custom_var_name);
212
        $custom_var_value = drupal_json_encode($custom_var_value);
213
        $custom_var_scope = drupal_json_encode($custom_var_scope);
214
        $custom_variable .= "_paq.push(['setCustomVariable', $i, $custom_var_name, $custom_var_value, $custom_var_scope]);";
215
      }
216
    }
217

    
218
    // Add any custom code snippets if specified.
219
    $codesnippet_before = variable_get('piwik_codesnippet_before', '');
220
    $codesnippet_after = variable_get('piwik_codesnippet_after', '');
221

    
222
    // Build tracker code. See http://piwik.org/docs/javascript-tracking/#toc-asynchronous-tracking
223
    $script = 'var _paq = _paq || [];';
224
    $script .= '(function(){';
225
    $script .= 'var u=(("https:" == document.location.protocol) ? "' . check_url($url_https) . '" : "' . check_url($url_http) . '");';
226
    $script .= '_paq.push(["setSiteId", ' . drupal_json_encode(variable_get('piwik_site_id', '')) . ']);';
227
    $script .= '_paq.push(["setTrackerUrl", u+"piwik.php"]);';
228

    
229
    // Set custom data.
230
    if (!empty($set_custom_data)) {
231
      foreach ($set_custom_data as $custom_data) {
232
        $script .= '_paq.push(["setCustomData", ' . $custom_data . ']);';
233
      }
234
    }
235
    // Set custom url.
236
    if (!empty($set_custom_url)) {
237
      $script .= '_paq.push(["setCustomUrl", ' . $set_custom_url . ']);';
238
    }
239
    // Set custom document title.
240
    if (!empty($set_document_title)) {
241
      $script .= '_paq.push(["setDocumentTitle", ' . $set_document_title . ']);';
242
    }
243

    
244
    // Custom file download extensions.
245
    if ((variable_get('piwik_track', 1)) && !(variable_get('piwik_trackfiles_extensions', PIWIK_TRACKFILES_EXTENSIONS) == PIWIK_TRACKFILES_EXTENSIONS)) {
246
      $script .= '_paq.push(["setDownloadExtensions", ' . drupal_json_encode(variable_get('piwik_trackfiles_extensions', PIWIK_TRACKFILES_EXTENSIONS)) . ']);';
247
    }
248

    
249
    // Disable tracking for visitors who have opted out from tracking via DNT (Do-Not-Track) header.
250
    if (variable_get('piwik_privacy_donottrack', 1)) {
251
      $script .= '_paq.push(["setDoNotTrack", 1]);';
252
    }
253

    
254
    // Domain tracking type.
255
    global $cookie_domain;
256
    $domain_mode = variable_get('piwik_domain_mode', 0);
257

    
258
    // Per RFC 2109, cookie domains must contain at least one dot other than the
259
    // first. For hosts such as 'localhost' or IP Addresses we don't set a cookie domain.
260
    if ($domain_mode == 1 && count(explode('.', $cookie_domain)) > 2 && !is_numeric(str_replace('.', '', $cookie_domain))) {
261
      $script .= '_paq.push(["setCookieDomain", ' . drupal_json_encode($cookie_domain) . ']);';
262
    }
263

    
264
    // Ordering $custom_variable before $codesnippet_before allows users to add
265
    // custom code snippets that may use deleteCustomVariable() and/or getCustomVariable().
266
    if (!empty($custom_variable)) {
267
      $script .= $custom_variable;
268
    }
269
    if (!empty($codesnippet_before)) {
270
      $script .= $codesnippet_before;
271
    }
272

    
273
    // Site search tracking support.
274
    // NOTE: It's recommended not to call trackPageView() on the Site Search Result page.
275
    if (module_exists('search') && variable_get('piwik_site_search', FALSE) && arg(0) == 'search' && $keys = piwik_search_get_keys()) {
276
      // Parameters:
277
      // 1. Search keyword searched for. Example: "Banana"
278
      // 2. Search category selected in your search engine. If you do not need
279
      //    this, set to false. Example: "Organic Food"
280
      // 3. Number of results on the Search results page. Zero indicates a
281
      //    'No Result Search Keyword'. Set to false if you don't know.
282
      //
283
      // hook_preprocess_search_results() is not executed if search result is
284
      // empty. Make sure the counter is set to 0 if there are no results.
285
      $script .= '_paq.push(["trackSiteSearch", ' . drupal_json_encode($keys) . ', false, (window.piwik_search_results) ? window.piwik_search_results : 0]);';
286
    }
287
    else {
288
      $script .= '_paq.push(["trackPageView"]);';
289
    }
290

    
291
    // Add link tracking.
292
    if (variable_get('piwik_track', 1)) {
293
      // Disable tracking of links with ".no-tracking" and ".colorbox" classes.
294
      $ignore_classes = array(
295
        'no-tracking',
296
        'colorbox',
297
      );
298
      // Disable the download & outlink tracking for specific CSS classes.
299
      // Custom code snippets with 'setIgnoreClasses' will override the value.
300
      // http://developer.piwik.org/api-reference/tracking-javascript#disable-the-download-amp-outlink-tracking-for-specific-css-classes
301
      $script .= '_paq.push(["setIgnoreClasses", ' . drupal_json_encode($ignore_classes) . ']);';
302

    
303
      // Enable download & outlink link tracking.
304
      $script .= '_paq.push(["enableLinkTracking"]);';
305
    }
306

    
307
    if (!empty($message_events)) {
308
      $script .= $message_events;
309
    }
310
    if (!empty($codesnippet_after)) {
311
      $script .= $codesnippet_after;
312
    }
313

    
314
    $script .= 'var d=document,';
315
    $script .= 'g=d.createElement("script"),';
316
    $script .= 's=d.getElementsByTagName("script")[0];';
317
    $script .= 'g.type="text/javascript";';
318
    $script .= 'g.defer=true;';
319
    $script .= 'g.async=true;';
320

    
321
    // Should a local cached copy of the tracking code be used?
322
    if (variable_get('piwik_cache', 0) && $url = _piwik_cache($url_http . 'piwik.js')) {
323
      // A dummy query-string is added to filenames, to gain control over
324
      // browser-caching. The string changes on every update or full cache
325
      // flush, forcing browsers to load a new copy of the files, as the
326
      // URL changed.
327
      $query_string = '?' . variable_get('css_js_query_string', '0');
328

    
329
      $script .= 'g.src="' . $url . $query_string . '";';
330
    }
331
    else {
332
      $script .= 'g.src=u+"piwik.js";';
333
    }
334

    
335
    $script .= 's.parentNode.insertBefore(g,s);';
336
    $script .= '})();';
337

    
338
    // Add tracker code to scope.
339
    drupal_add_js($script, array('scope' => $scope, 'type' => 'inline'));
340
  }
341
}
342

    
343
/**
344
 * Implements hook_field_extra_fields().
345
 */
346
function piwik_field_extra_fields() {
347
  $extra['user']['user']['form']['piwik'] = array(
348
    'label' => t('Piwik configuration'),
349
    'description' => t('Piwik module form element.'),
350
    'weight' => 3,
351
  );
352

    
353
  return $extra;
354
}
355

    
356
/**
357
 * Implement hook_form_FORM_ID_alter().
358
 *
359
 * Allow users to decide if tracking code will be added to pages or not.
360
 */
361
function piwik_form_user_profile_form_alter(&$form, &$form_state) {
362
  $account = $form['#user'];
363
  $category = $form['#user_category'];
364

    
365
  if ($category == 'account' && user_access('opt-in or out of tracking') && ($custom = variable_get('piwik_custom', 0)) != 0 && _piwik_visibility_roles($account)) {
366
    $form['piwik'] = array(
367
      '#type' => 'fieldset',
368
      '#title' => t('Piwik configuration'),
369
      '#weight' => 3,
370
      '#collapsible' => TRUE,
371
      '#tree' => TRUE
372
    );
373

    
374
    switch ($custom) {
375
      case 1:
376
        $description = t('Users are tracked by default, but you are able to opt out.');
377
        break;
378

    
379
      case 2:
380
        $description = t('Users are <em>not</em> tracked by default, but you are able to opt in.');
381
        break;
382
    }
383

    
384
    $form['piwik']['custom'] = array(
385
      '#type' => 'checkbox',
386
      '#title' => t('Enable user tracking'),
387
      '#description' => $description,
388
      '#default_value' => isset($account->data['piwik']['custom']) ? $account->data['piwik']['custom'] : ($custom == 1),
389
    );
390

    
391
    return $form;
392
  }
393
}
394

    
395
/**
396
 * Implements hook_user_presave().
397
 */
398
function piwik_user_presave(&$edit, $account, $category) {
399
  if (isset($edit['piwik']['custom'])) {
400
    $edit['data']['piwik']['custom'] = $edit['piwik']['custom'];
401
  }
402
}
403

    
404
/**
405
 * Implements hook_cron().
406
 */
407
function piwik_cron() {
408
  // Regenerate the piwik.js every day.
409
  if (REQUEST_TIME - variable_get('piwik_last_cache', 0) >= 86400 && variable_get('piwik_cache', 0)) {
410
    _piwik_cache(variable_get('piwik_url_http', '') . 'piwik.js', TRUE);
411
    variable_set('piwik_last_cache', REQUEST_TIME);
412
  }
413
}
414

    
415
/**
416
 * Implements hook_preprocess_search_results().
417
 *
418
 * Collects and adds the number of search results to the head.
419
 */
420
function piwik_preprocess_search_results(&$variables) {
421
  // There is no search result $variable available that hold the number of items
422
  // found. But the pager item mumber can tell the number of search results.
423
  global $pager_total_items;
424

    
425
  drupal_add_js('window.piwik_search_results = ' . intval($pager_total_items[0]) . ';', array('type' => 'inline', 'group' => JS_LIBRARY-1));
426
}
427

    
428
/**
429
 * Download/Synchronize/Cache tracking code file locally.
430
 *
431
 * @param $location
432
 *   The full URL to the external javascript file.
433
 * @param $sync_cached_file
434
 *   Synchronize tracking code and update if remote file have changed.
435
 * @return mixed
436
 *   The path to the local javascript file on success, boolean FALSE on failure.
437
 */
438
function _piwik_cache($location, $sync_cached_file = FALSE) {
439
  $path = 'public://piwik';
440
  $file_destination = $path . '/' . basename($location);
441

    
442
  if (!file_exists($file_destination) || $sync_cached_file) {
443
    // Download the latest tracking code.
444
    $result = drupal_http_request($location);
445

    
446
    if ($result->code == 200) {
447
      if (file_exists($file_destination)) {
448
        // Synchronize tracking code and and replace local file if outdated.
449
        $data_hash_local = drupal_hash_base64(file_get_contents($file_destination));
450
        $data_hash_remote = drupal_hash_base64($result->data);
451
        // Check that the files directory is writable.
452
        if ($data_hash_local != $data_hash_remote && file_prepare_directory($path)) {
453
          // Save updated tracking code file to disk.
454
          file_unmanaged_save_data($result->data, $file_destination, FILE_EXISTS_REPLACE);
455
          watchdog('piwik', 'Locally cached tracking code file has been updated.', array(), WATCHDOG_INFO);
456

    
457
          // Change query-strings on css/js files to enforce reload for all users.
458
          _drupal_flush_css_js();
459
        }
460
      }
461
      else {
462
        // Check that the files directory is writable.
463
        if (file_prepare_directory($path, FILE_CREATE_DIRECTORY)) {
464
          // There is no need to flush JS here as core refreshes JS caches
465
          // automatically, if new files are added.
466
          file_unmanaged_save_data($result->data, $file_destination, FILE_EXISTS_REPLACE);
467
          watchdog('piwik', 'Locally cached tracking code file has been saved.', array(), WATCHDOG_INFO);
468

    
469
          // Return the local JS file path.
470
          return file_create_url($file_destination);
471
        }
472
      }
473
    }
474
  }
475
  else {
476
    // Return the local JS file path.
477
    return file_create_url($file_destination);
478
  }
479
}
480

    
481
/**
482
 * Delete cached files and directory.
483
 */
484
function piwik_clear_js_cache() {
485
  $path = 'public://piwik';
486
  if (file_prepare_directory($path)) {
487
    file_scan_directory($path, '/.*/', array('callback' => 'file_unmanaged_delete'));
488
    drupal_rmdir($path);
489

    
490
    // Change query-strings on css/js files to enforce reload for all users.
491
    _drupal_flush_css_js();
492

    
493
    watchdog('piwik', 'Local cache has been purged.', array(), WATCHDOG_INFO);
494
  }
495
}
496

    
497
/**
498
 * Helper function for grabbing search keys. Function is missing in D7.
499
 *
500
 * http://api.drupal.org/api/function/search_get_keys/6
501
 */
502
function piwik_search_get_keys() {
503
  static $return;
504
  if (!isset($return)) {
505
    // Extract keys as remainder of path
506
    // Note: support old GET format of searches for existing links.
507
    $path = explode('/', $_GET['q'], 3);
508
    $keys = empty($_REQUEST['keys']) ? '' : $_REQUEST['keys'];
509
    $return = count($path) == 3 ? $path[2] : $keys;
510
  }
511
  return $return;
512
}
513

    
514
/**
515
 * Tracking visibility check for an user object.
516
 *
517
 * @param $account
518
 *   A user object containing an array of roles to check.
519
 * @return boolean
520
 *   A decision on if the current user is being tracked by Piwik.
521
 */
522
function _piwik_visibility_user($account) {
523

    
524
  $enabled = FALSE;
525

    
526
  // Is current user a member of a role that should be tracked?
527
  if (_piwik_visibility_roles($account)) {
528

    
529
    // Use the user's block visibility setting, if necessary.
530
    if (($custom = variable_get('piwik_custom', 0)) != 0) {
531
      if ($account->uid && isset($account->data['piwik']['custom'])) {
532
        $enabled = $account->data['piwik']['custom'];
533
      }
534
      else {
535
        $enabled = ($custom == 1);
536
      }
537
    }
538
    else {
539
      $enabled = TRUE;
540
    }
541

    
542
  }
543

    
544
  return $enabled;
545
}
546

    
547
/**
548
 * Based on visibility setting this function returns TRUE if GA code should
549
 * be added for the current role and otherwise FALSE.
550
 */
551
function _piwik_visibility_roles($account) {
552

    
553
  $visibility = variable_get('piwik_visibility_roles', 0);
554
  $enabled = $visibility;
555
  $roles = variable_get('piwik_roles', array());
556

    
557
  if (array_sum($roles) > 0) {
558
    // One or more roles are selected.
559
    foreach (array_keys($account->roles) as $rid) {
560
      // Is the current user a member of one of these roles?
561
      if (isset($roles[$rid]) && $rid == $roles[$rid]) {
562
        // Current user is a member of a role that should be tracked/excluded from tracking.
563
        $enabled = !$visibility;
564
        break;
565
      }
566
    }
567
  }
568
  else {
569
    // No role is selected for tracking, therefore all roles should be tracked.
570
    $enabled = TRUE;
571
  }
572

    
573
  return $enabled;
574
}
575

    
576
/**
577
 * Based on visibility setting this function returns TRUE if GA code should
578
 * be added to the current page and otherwise FALSE.
579
 */
580
function _piwik_visibility_pages() {
581
  static $page_match;
582

    
583
  // Cache visibility setting in hook_init for hook_footer.
584
  if (!isset($page_match)) {
585

    
586
    $visibility = variable_get('piwik_visibility_pages', 0);
587
    $setting_pages = variable_get('piwik_pages', PIWIK_PAGES);
588

    
589
    // Match path if necessary.
590
    if (!empty($setting_pages)) {
591
      // Convert path to lowercase. This allows comparison of the same path
592
      // with different case. Ex: /Page, /page, /PAGE.
593
      $pages = drupal_strtolower($setting_pages);
594
      if ($visibility < 2) {
595
        // Convert the Drupal path to lowercase
596
        $path = drupal_strtolower(drupal_get_path_alias($_GET['q']));
597
        // Compare the lowercase internal and lowercase path alias (if any).
598
        $page_match = drupal_match_path($path, $pages);
599
        if ($path != $_GET['q']) {
600
          $page_match = $page_match || drupal_match_path($_GET['q'], $pages);
601
        }
602
        // When $visibility has a value of 0, the tracking code is displayed on
603
        // all pages except those listed in $pages. When set to 1, it
604
        // is displayed only on those pages listed in $pages.
605
        $page_match = !($visibility xor $page_match);
606
      }
607
      elseif (module_exists('php')) {
608
        $page_match = php_eval($setting_pages);
609
      }
610
      else {
611
        $page_match = FALSE;
612
      }
613
    }
614
    else {
615
      $page_match = TRUE;
616
    }
617

    
618
  }
619
  return $page_match;
620
}
621

    
622
/**
623
 * Get the page titles trail for the current page.
624
 *
625
 * Based on menu_get_active_breadcrumb().
626
 *
627
 * @return array
628
 *   All page titles, including current page.
629
 */
630
function _piwik_get_hierarchy_titles() {
631
  $titles = array();
632

    
633
  // No breadcrumb for the front page.
634
  if (drupal_is_front_page()) {
635
    return $titles;
636
  }
637

    
638
  $item = menu_get_item();
639
  if (!empty($item['access'])) {
640
    $active_trail = menu_get_active_trail();
641

    
642
    // Allow modules to alter the breadcrumb, if possible, as that is much
643
    // faster than rebuilding an entirely new active trail.
644
    drupal_alter('menu_breadcrumb', $active_trail, $item);
645

    
646
    // Remove the tab root (parent) if the current path links to its parent.
647
    // Normally, the tab root link is included in the breadcrumb, as soon as we
648
    // are on a local task or any other child link. However, if we are on a
649
    // default local task (e.g., node/%/view), then we do not want the tab root
650
    // link (e.g., node/%) to appear, as it would be identical to the current
651
    // page. Since this behavior also needs to work recursively (i.e., on
652
    // default local tasks of default local tasks), and since the last non-task
653
    // link in the trail is used as page title (see menu_get_active_title()),
654
    // this condition cannot be cleanly integrated into menu_get_active_trail().
655
    // menu_get_active_trail() already skips all links that link to their parent
656
    // (commonly MENU_DEFAULT_LOCAL_TASK). In order to also hide the parent link
657
    // itself, we always remove the last link in the trail, if the current
658
    // router item links to its parent.
659
    if (($item['type'] & MENU_LINKS_TO_PARENT) == MENU_LINKS_TO_PARENT) {
660
      array_pop($active_trail);
661
    }
662

    
663
    foreach ($active_trail as $parent) {
664
      $titles[] = $parent['title'];
665
    }
666
  }
667

    
668
  return $titles;
669
}