1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- * @file
- * popsu_colloques.context.inc
- */
- /**
- * Implements hook_context_default_contexts().
- */
- function popsu_colloques_context_default_contexts() {
- $export = array();
- $context = new stdClass();
- $context->disabled = FALSE; /* Edit this to true to make a default context disabled initially */
- $context->api_version = 3;
- $context->name = 'popsu-colloque-node';
- $context->description = 'Contexte d\'un noeud de type Colloque (feature)';
- $context->tag = 'colloques-feature';
- $context->conditions = array(
- 'node' => array(
- 'values' => array(
- 'popsu_colloque' => 'popsu_colloque',
- ),
- 'options' => array(
- 'node_form' => '0',
- ),
- ),
- );
- $context->reactions = array(
- 'block' => array(
- 'blocks' => array(
- 'menu_block-1' => array(
- 'module' => 'menu_block',
- 'delta' => '1',
- 'region' => 'sidebar_first',
- 'weight' => '-10',
- ),
- 'menu_block-5' => array(
- 'module' => 'menu_block',
- 'delta' => '5',
- 'region' => 'sidebar_first',
- 'weight' => '-10',
- ),
- ),
- ),
- );
- $context->condition_mode = 0;
- // Translatables
- // Included for use with string extractors like potx.
- t('Contexte d\'un noeud de type Colloque (feature)');
- t('colloques-feature');
- $export['popsu-colloque-node'] = $context;
- return $export;
- }
|