AlkantarClanX12

Your IP : 216.73.216.176


Current Path : /var/www/clients/client1/web1/web/sites/all/modules/context/plugins/
Upload File :
Current File : /var/www/clients/client1/web1/web/sites/all/modules/context/plugins/context_condition_bookroot.inc

<?php

/**
 * Set the context on the basis of the node type of page's book root.
 */
class context_condition_bookroot extends context_condition_node {
  function execute($node, $op) {
    if ($this->condition_used() && !empty($node->book['bid'])) {
      $type = db_select('node')
        ->fields('node', array('type'))
        ->condition('nid', $node->book['bid'])
        ->execute()
        ->fetchField();
      $book = new stdClass();
      $book->type = $type;
      parent::execute($book, $op);
    }
  }
}