function _zopim_visibility_pages in Zopim Live Chat 6.2
Same name and namespace in other branches
- 6 zopim.module \_zopim_visibility_pages()
- 7 zopim.module \_zopim_visibility_pages()
Based on visibility setting this function returns TRUE if Zopim code should be added to the current page and otherwise FALSE.
2 calls to _zopim_visibility_pages()
- zopim_footer in ./
zopim.module - zopim_init in ./
zopim.module
File
- ./
zopim.module, line 197
Code
function _zopim_visibility_pages() {
$settings = zopim_get_settings();
static $page_match;
// Cache visibility setting in hook_init for hook_footer.
if (!isset($page_match)) {
$visibility = $settings['visibility']['page']['mode'];
$pages = $settings['visibility']['page']['pages'];
// Match path if necessary.
if (!empty($pages)) {
if ($visibility < 2) {
$path = drupal_get_path_alias($_GET['q']);
// Compare with the internal and path alias (if any).
$page_match = drupal_match_path($path, $pages);
if ($path != $_GET['q']) {
$page_match = $page_match || drupal_match_path($_GET['q'], $pages);
}
// When $visibility has a value of 0, the block is displayed on
// all pages except those listed in $pages. When set to 1, it
// is displayed only on those pages listed in $pages.
$page_match = !($visibility xor $page_match);
}
else {
$page_match = drupal_eval($pages);
}
}
else {
$page_match = TRUE;
}
}
return $page_match;
}