View source
<?php
include_once drupal_get_path('module', 'spaces') . '/spaces_views.inc';
define('SPACES_ARCHIVE_TIMESTAMP', 60 * 60 * 24 * 14);
define('SPACES_FEATURE_DISABLED', 0);
function spaces_init() {
if (strpos($_GET['q'], 'admin/build/spaces') === 0) {
include_once drupal_get_path('module', 'spaces') . '/spaces_admin.inc';
}
}
function spaces_perm() {
return array(
'administer spaces',
);
}
function spaces_context_prefix_provider() {
$items = array();
foreach (spaces_types() as $type => $info) {
$items['spaces_' . $type] = array(
'name' => $info['title'],
'description' => t('Sets a spaces context.'),
'callback' => 'spaces_init_context',
'callback arguments' => array(
$type,
),
'example' => 'my-space',
);
}
return $items;
}
function spaces_init_context($type, $sid) {
static $once;
if (!isset($once)) {
$once = FALSE;
}
if (!$once) {
context_set('spaces', 'sid', $sid);
$space = spaces_load($type, $sid, TRUE);
spaces_set_space($space);
$once = TRUE;
}
}
function spaces_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array(
'path' => 'admin/build/spaces',
'title' => t('Spaces presets'),
'description' => t('Create and configure spaces for your site.'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'spaces_preset_default_form',
),
'access' => user_access('administer spaces'),
'type' => MENU_NORMAL_ITEM,
);
$items[] = array(
'path' => 'admin/build/spaces/presets',
'title' => t('Presets'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'spaces_preset_default_form',
),
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -1,
);
$items[] = array(
'path' => 'admin/build/spaces/presets/add',
'title' => t('Add'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'spaces_preset_form',
'add',
),
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'admin/build/spaces/presets/edit',
'callback' => 'drupal_get_form',
'callback arguments' => array(
'spaces_preset_form',
'edit',
),
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'admin/build/spaces/presets/delete',
'callback' => 'drupal_get_form',
'callback arguments' => array(
'spaces_preset_delete_form',
),
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'admin/build/spaces/presets/disable',
'callback' => '_spaces_preset_disable_page',
'type' => PAGE_CALLBACK,
);
$items[] = array(
'path' => 'admin/build/spaces/presets/enable',
'callback' => '_spaces_preset_enable_page',
'type' => PAGE_CALLBACK,
);
}
else {
spaces_router('menu');
}
return $items;
}
function spaces_user($op, &$edit, &$account, $category = NULL) {
if (in_array($op, array(
'view',
'form',
))) {
spaces_router('user view', $account);
}
}
function spaces_nodeapi(&$node, $op, $teaser = NULL, $page = NULL) {
switch ($op) {
case 'view':
if ($page && !$teaser && arg(0) == 'node' && arg(1) == $node->nid) {
spaces_router('node view', $node);
}
break;
}
}
function spaces_form_alter($form_id, &$form) {
if ($form['#id'] == 'node-form' && arg(0) . '/' . arg(1) != 'admin/content') {
spaces_router('node form', $form['#node']);
}
}
function spaces_block($op = 'list', $delta = 0) {
if ($op == 'list') {
$blocks[1]['info'] = t('Spaces: Contextual Tools');
$blocks[2]['info'] = t('Spaces: Navigation');
$blocks[3]['info'] = t('Spaces: Utility links');
return $blocks;
}
else {
if ($op == 'view') {
switch ($delta) {
case 1:
return _spaces_block_tools();
case 2:
return _spaces_block_nav();
case 3:
return _spaces_block_utility_links();
}
}
}
}
function spaces_context_define() {
$items = array();
return $items;
}
function spaces_spaces_settings() {
return array(
'home' => new space_setting_home(),
);
}
function spaces_spaces_customizers() {
return array(
'menu' => new space_customizer_menu(),
'views' => new space_customizer_views(),
);
}
function spaces_views_pre_query(&$view) {
foreach ($view->filter as $filter) {
if ($filter['field'] == 'spaces.type') {
$view->is_cacheable = false;
}
}
if ($view->build_type == 'page' && ($space = spaces_get_space())) {
if ($feature = context_get('spaces', 'feature')) {
$view = space_customizer_views::customize($space, $feature, $view);
}
}
}
interface space {
function __construct($type, $sid = NULL, $is_active = FALSE);
function save();
function delete();
function feature_options();
function links(&$links);
function feature_access($feature = NULL);
function admin_access();
function router($op, $object = NULL, $is_active = TRUE);
function redirect($op = 'home');
function form();
function validate($values);
function submit($values);
function views_filter($is_active, &$query);
function preset_enforce($preset);
}
interface space_setting {
function form($space, $value = array());
function validate($space, $value);
function submit($space, $value);
}
interface space_customizer {
function form($space, $feature);
function validate($space, $feature, $value);
function submit($space, $feature, $value);
function customize($space, $feature, $object = NULL);
}
class space_setting_home implements space_setting {
var $id = 'home';
function form($space, $value = array()) {
$options = array(
0 => '---',
);
foreach (spaces_features($space->type) as $f => $feature) {
if ($feature->spaces['menu'] && $space->features[$f] != SPACES_FEATURE_DISABLED) {
$options[$f] = $feature->spaces['label'];
}
}
$form = array(
'#title' => t('Homepage'),
'#description' => t('The default page for this space.'),
'#type' => 'select',
'#options' => $options,
'#validate' => array(
'spaces_setting_validate' => array(
$this->id,
),
),
'#default_value' => $value ? $value : 0,
);
return $form;
}
function validate($space, $value) {
if ($space->sid) {
if (!$value && is_array($space->features) && array_sum($space->features) != 0) {
form_set_error('settings][' . $this->id, t('You must select a homepage for this space.'));
}
}
}
function submit($space, $value) {
return $value;
}
}
class space_customizer_menu implements space_customizer {
var $name = 'Menu';
function form($space, $feature) {
$features = spaces_features();
$f = $features[$feature];
if (isset($f->spaces['menu']) && count($f->spaces['menu'])) {
$feature_menu = $f->spaces['menu'];
$feature_menu = $this
->customize($space, $feature, $feature_menu);
$form = array();
foreach ($feature_menu as $path => $item) {
$form[$path] = array(
'#title' => $path,
'#type' => 'fieldset',
'#tree' => TRUE,
);
$form[$path]['title'] = array(
'#title' => t('Title'),
'#type' => 'textfield',
'#size' => 40,
'#maxlength' => 255,
'#default_value' => $item['title'],
);
}
}
return $form;
}
function validate($space, $feature, $value) {
return;
}
function submit($space, $feature, $value) {
$features = spaces_features();
$feature_menu = $features[$feature]->spaces['menu'];
foreach ($value as $path => $item) {
if ($item == $feature_menu[$path]) {
unset($value[$path]);
}
}
return $value;
}
function customize($space, $feature, $menu = NULL) {
if (isset($space->customizer[$feature]['menu'])) {
$custom_menu = array();
$customizer = $space->customizer[$feature]['menu'];
foreach ($menu as $path => $item) {
if (isset($customizer[$path])) {
$menu[$path] = $customizer[$path];
}
}
}
return $menu;
}
}
class space_customizer_views implements space_customizer {
var $name = 'Views';
function form($space, $feature) {
$features = spaces_features();
$f = $features[$feature];
$form = array();
foreach ($f->views as $view_name) {
$view = views_get_view($view_name);
$view = $this
->customize($space, $feature, $view);
if ($view && $view->page == TRUE) {
$form[$view_name] = array(
'#title' => $view_name,
'#type' => 'fieldset',
'#tree' => TRUE,
);
$form[$view_name]['page_title'] = array(
'#title' => t('Page title'),
'#type' => 'textfield',
'#size' => 40,
'#default_value' => $view->page_title,
);
$form[$view_name]['page_header'] = array(
'#title' => t('Page header'),
'#type' => 'textarea',
'#rows' => 2,
'#cols' => 40,
'#default_value' => $view->page_header,
);
}
}
return $form;
}
function validate($space, $feature, $value) {
return;
}
function submit($space, $feature, $value) {
return $value;
}
function customize($space, $feature, $view = NULL) {
if (isset($space->customizer[$feature]['views'][$view->name])) {
$customizer = $space->customizer[$feature]['views'][$view->name];
foreach ($customizer as $property => $value) {
$view->{$property} = $value;
}
}
return $view;
}
}
function spaces_load($type, $sid = NULL, $is_active = FALSE) {
$types = spaces_types();
if (isset($types[$type])) {
$class = $types[$type]['class'];
$space = new $class($type, $sid, $is_active);
$space->type = $type;
$space->features = array();
$space->settings = array();
$space->customizer = array();
if ($sid) {
$space->sid = $sid;
if ($prefix = context_prefix_api('load', array(
'provider' => 'spaces_' . $type,
'id' => $sid,
))) {
$space->prefix = $prefix['prefix'];
}
$result = db_query('SELECT id, value FROM {spaces_features} WHERE sid = %d AND type = "%s"', $sid, $type);
while ($row = db_fetch_object($result)) {
$space->features[$row->id] = $row->value;
}
$result = db_query('SELECT id, value FROM {spaces_settings} WHERE sid = %d AND type = "%s"', $sid, $type);
while ($row = db_fetch_object($result)) {
$space->settings[$row->id] = unserialize($row->value);
}
$row = db_fetch_object(db_query("SELECT customizer, preset FROM {spaces} WHERE sid = %d AND type = '%s'", $space->sid, $space->type));
$space->customizer = $row->customizer ? unserialize($row->customizer) : array();
$default_presets = variable_get('spaces_default_presets', array());
if ($row->preset) {
$space->preset = $row->preset;
}
else {
if ($space->preset == NULL && isset($default_presets[$type])) {
$space->preset = $default_presets[$type];
spaces_preset_enforce($space);
}
}
}
return $space;
}
return false;
}
function spaces_save($space) {
if ($space->sid) {
spaces_preset_enforce($space);
db_query("DELETE FROM {spaces_features} WHERE sid = %d AND type = '%s'", $space->sid, $space->type);
$valid = spaces_features($space->type);
foreach ($space->features as $feature => $value) {
if (isset($valid[$feature])) {
$values = array(
$space->sid,
$space->type,
$feature,
$value,
);
db_query('INSERT INTO {spaces_features} (sid, type, id, value) VALUES (%d, "%s", "%s", "%s")', $values);
}
}
db_query("DELETE FROM {spaces_settings} WHERE sid = %d AND type = '%s'", $space->sid, $space->type);
$valid = spaces_settings();
foreach ($space->settings as $setting => $value) {
if (isset($valid[$setting])) {
$value = serialize($value);
$values = array(
$space->sid,
$space->type,
$setting,
$value,
);
db_query('INSERT INTO {spaces_settings} (sid, type, id, value) VALUES (%d, "%s", "%s", "%s")', $values);
}
}
$exists = db_result(db_query("SELECT count(sid) FROM {spaces} WHERE sid = %d AND type = '%s'", $space->sid, $space->type));
if ($exists) {
db_query("UPDATE {spaces} SET preset = '%s', customizer = '%s' WHERE sid = %d AND type = '%s'", $space->preset, serialize($space->customizer), $space->sid, $space->type);
}
else {
db_query("INSERT INTO {spaces} (sid, type, preset, customizer) VALUES(%d, '%s', '%s', '%s')", $space->sid, $space->type, $space->preset, serialize($space->customizer));
}
$types = spaces_types();
$save_prefix = isset($types[$space->type]['custom prefixes']) && $types[$space->type]['custom prefixes'];
if ($space->prefix && $save_prefix) {
$prefix = array(
'provider' => 'spaces_' . $space->type,
'id' => $space->sid,
);
context_prefix_api('delete', $prefix);
$prefix['prefix'] = $space->prefix;
context_prefix_api('insert', $prefix);
}
$space
->save();
return true;
}
return false;
}
function spaces_delete($space) {
db_query("DELETE FROM {spaces} WHERE sid = %d AND type = '%s'", $space->sid, $space->type);
db_query("DELETE FROM {spaces_features} WHERE sid = %d AND type = '%s'", $space->sid, $space->type);
db_query("DELETE FROM {spaces_settings} WHERE sid = %d AND type = '%s'", $space->sid, $space->type);
$prefix = array(
'provider' => 'spaces_' . $space->type,
'id' => $space->sid,
);
context_prefix_api('delete', $prefix);
$space
->delete();
return true;
}
function spaces_preset_enforce(&$space) {
$presets = spaces_presets($space->type);
if (isset($space->preset) && isset($presets[$space->preset])) {
$preset = $presets[$space->preset]['preset'];
if (is_array($preset['features'])) {
foreach ($preset['features'] as $feature => $value) {
if ($preset['locked']['features'][$feature] || !isset($space->features[$feature])) {
$space->features[$feature] = $value;
}
}
}
if (is_array($preset['settings'])) {
foreach ($preset['settings'] as $setting => $value) {
if ($preset['locked']['settings'][$setting] || !isset($space->features[$setting])) {
$space->settings[$setting] = $value;
}
}
}
$space
->preset_enforce($preset);
}
}
function spaces_types($reset = false) {
static $spaces_types;
if (!isset($spaces_types) || $reset) {
$spaces_types = module_invoke_all('spaces_types');
}
return $spaces_types;
}
function spaces_presets($type = NULL, $include_disabled = FALSE, $reset = FALSE) {
static $presets;
if (!isset($presets)) {
$presets = array();
$result = db_query("SELECT * FROM {spaces_presets}");
$disabled = variable_get('spaces_disabled_presets', array());
while ($row = db_fetch_object($result)) {
$presets[$row->type][$row->id] = array(
'name' => $row->name,
'description' => $row->description,
'preset' => unserialize($row->value),
'disabled' => isset($disabled[$row->type][$row->id]),
);
}
foreach (module_implements('spaces_presets') as $module) {
$items = call_user_func($module . '_spaces_presets');
foreach ($items as $id => $preset) {
$presets[$preset['type']][$id] = array(
'name' => $preset['name'],
'description' => $preset['description'],
'preset' => $preset['preset'],
'disabled' => isset($disabled[$preset['type']][$id]),
'module' => $module,
);
}
}
}
$return = $presets;
if (!$include_disabled) {
foreach (array_keys($return) as $preset_type) {
foreach ($return[$preset_type] as $id => $preset) {
if ($preset['disabled']) {
unset($return[$preset_type][$id]);
}
}
}
}
if ($type) {
return isset($return[$type]) ? $return[$type] : array();
}
return $return;
}
function spaces_get_space() {
return spaces_set_space();
}
function spaces_set_space($space = NULL, $reset = FALSE) {
static $current_space;
if (!isset($current_space) || $reset) {
$current_space = $space;
}
return $current_space ? $current_space : FALSE;
}
function spaces_router($op, $object = NULL) {
if (spaces_router_get()) {
$access = true;
$types = spaces_types();
if ($space = spaces_get_space()) {
$access = $access && $space
->router($op, $object);
unset($types[$space->type]);
}
foreach ($types as $type => $info) {
$access = $access && call_user_func(array(
$info['class'],
'router',
), $op, $object, FALSE);
}
if (!$access && !user_access('administer spaces')) {
drupal_access_denied();
exit;
}
}
}
function spaces_router_set($status) {
return spaces_router_get($status, TRUE);
}
function spaces_router_get($enabled = 1, $reset = FALSE) {
static $status;
if (!isset($status) || $reset) {
$status = $enabled;
}
return $status;
}
function spaces_features($type = NULL, $reset = FALSE) {
static $spaces_features;
if (!isset($spaces_features) || $reset) {
$spaces_features = array();
foreach (context_ui_defaults('spaces') as $feature) {
if ($feature->spaces) {
if ($type) {
if (isset($feature->spaces['types']) && in_array($type, $feature->spaces['types'])) {
$spaces_features[$feature->value] = $feature;
}
else {
if (!isset($feature->spaces['types']) || !$feature->spaces['types']) {
$spaces_features[$feature->value] = $feature;
}
}
}
else {
$spaces_features[$feature->value] = $feature;
}
}
}
}
return $spaces_features;
}
function spaces_settings($reset = FALSE) {
static $settings;
if (!isset($settings) || $reset) {
$settings = array();
foreach (module_implements('spaces_settings') as $module) {
$function = $module . '_spaces_settings';
$settings = array_merge($settings, $function());
}
}
return $settings;
}
function spaces_customizers($reset = FALSE) {
static $customizers;
if (!isset($customizers) || $reset) {
$customizers = array();
$customizers = module_invoke_all('spaces_customizers');
}
return $customizers;
}
function spaces_content_types($reset = FALSE) {
static $map;
if (!isset($map) || $reset) {
$map = array();
$features = spaces_features();
foreach ($features as $id => $feature) {
if (is_array($feature->node)) {
foreach ($feature->node as $type) {
$map[$type] = $id;
}
}
}
}
return $map;
}
function spaces_features_menu() {
static $menu;
if (!isset($menu)) {
$menu = array();
$space = spaces_get_space();
if ($space) {
$features = spaces_features($space->type);
$active_feature = context_get('spaces', 'feature');
$depth = 1;
foreach ($space->features as $feature => $value) {
if ($value != SPACES_FEATURE_DISABLED && $space
->feature_access($feature) && isset($features[$feature]->spaces['menu'])) {
$feature_menu = $features[$feature]->spaces['menu'];
$feature_menu = space_customizer_menu::customize($space, $feature, $feature_menu);
foreach ($feature_menu as $path => $item) {
$args = explode('/', $path);
$item['href'] = $path;
$item['children'] = array();
$item['depth'] = count($args);
$item['args'] = $args;
if ($item['depth'] == 1 && $feature == $active_feature) {
$item['attributes'] = array(
'class' => 'active',
);
}
else {
if ($item['depth'] > $depth) {
$depth = $item['depth'];
}
}
$menu[$path] = $item;
}
}
}
while ($depth >= 1) {
foreach ($menu as $path => $item) {
if ($item['depth'] == $depth) {
$args = implode('/', array_slice($item['args'], 0, $depth - 1));
if ($depth > 1) {
if (isset($menu[$args])) {
unset($item['depth']);
unset($item['args']);
$menu[$args]['children'][$path] = $item;
}
unset($menu[$path]);
}
else {
unset($menu[$path]['args']);
unset($menu[$path]['depth']);
}
}
}
$depth--;
}
}
}
return $menu;
}
function spaces_form_presets($space) {
$default_presets = variable_get('spaces_default_presets', array());
if (isset($space->preset)) {
$default_preset = $space->preset;
}
else {
if (isset($default_presets[$space->type])) {
$default_preset = $default_presets[$space->type];
}
else {
$default_preset = NULL;
}
}
$form = array(
'#tree' => false,
'#theme' => 'spaces_form_presets',
);
$form['preset'] = array(
'#title' => t('Preset'),
'#type' => 'radios',
'#required' => true,
'#options' => array(),
'#default_value' => $default_preset,
);
$form['info'] = array();
foreach (spaces_presets($space->type) as $id => $preset) {
$form['preset']['#options'][$id] = $preset['name'];
$form['info'][$id] = array(
'#type' => 'item',
'#title' => $preset['name'],
'#description' => $preset['description'],
);
}
return $form;
}
function spaces_active_space_menu($space, $local_tasks = FALSE, $path_prefix = '') {
include_once drupal_get_path('module', 'spaces') . '/spaces_admin.inc';
$types = spaces_types();
$path_prefix = !empty($path_prefix) ? $path_prefix . '/' : '';
if ($local_tasks == FALSE) {
$items['spaces'] = array(
'path' => $path_prefix . 'spaces',
'title' => t('!space_type settings', array(
'!space_type' => $types[$space->type]['title'],
)),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'spaces_basic_form',
$space,
),
'access' => $space
->admin_access(),
'type' => MENU_NORMAL_ITEM,
);
}
else {
$items['spaces'] = array(
'path' => $path_prefix . 'spaces',
'title' => t('Spaces'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'spaces_basic_form',
$space,
),
'access' => $space
->admin_access(),
'type' => MENU_LOCAL_TASK,
'weight' => 1,
);
}
$items['spaces/setup'] = array(
'path' => $path_prefix . 'spaces/setup',
'title' => t('Basic setup'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'spaces_basic_form',
$space,
),
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => 0,
);
$items['spaces/features'] = array(
'path' => $path_prefix . 'spaces/features',
'title' => t('Features'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'spaces_features_form',
$space,
),
'type' => MENU_LOCAL_TASK,
'weight' => 1,
);
$items['spaces/customize'] = array(
'path' => $path_prefix . 'spaces/customize',
'title' => t('Customize'),
'callback' => 'spaces_customize',
'callback arguments' => array(
$space,
),
'access' => $space
->admin_access(),
'type' => MENU_LOCAL_TASK,
'weight' => 2,
);
return $items;
}
function spaces_space_links() {
$links = array();
if ($space = spaces_get_space()) {
$links = array();
$space
->links($links);
}
return $links;
}
function spaces_node_links() {
$output = '';
$links = _context_ui_node_links();
if ($feature = context_get('spaces', 'feature')) {
$space = spaces_get_space();
if ($space && !$space
->feature_access($feature)) {
$features = spaces_features($space->type);
if (isset($features[$feature]->node)) {
foreach ($features[$feature]->node as $type) {
unset($links[$type]);
}
}
}
}
foreach (module_implements('spaces_node_links_alter') as $module) {
$function = $module . '_spaces_node_links_alter';
$function($links);
}
return theme('spaces_node_links', $links);
}
function theme_spaces_node_links($links) {
$output = '';
foreach ($links as $link) {
if ($link['custom']) {
$output .= l($link['title'], $link['href'], array(
'class' => 'button',
), isset($link['query']) ? $link['query'] : NULL);
}
else {
if (!empty($link)) {
$output .= l('+ ' . t('Add !type', array(
'!type' => $link['title'],
)), $link['href'], array(
'class' => 'button',
), isset($link['query']) ? $link['query'] : NULL);
}
}
}
return $output;
}
function theme_spaces_form_presets($form) {
$output = '';
$rows = array();
foreach (element_children($form['info']) as $id) {
unset($form['preset'][$id]['#title']);
$row = array(
drupal_render($form['preset'][$id]),
drupal_render($form['info'][$id]),
);
$rows[] = $row;
}
$output .= theme('table', array(
array(
'data' => $form['preset']['#title'],
'colspan' => 2,
),
), $rows);
drupal_render($form['preset']);
$output .= drupal_render($form);
return $output;
}
function _spaces_block_tools() {
$block['content'] = spaces_node_links();
return $block;
}
function _spaces_block_nav() {
$block = array();
if ($space = spaces_get_space()) {
$links = spaces_features_menu();
$block['subject'] = $space->title;
$block['content'] = theme('links', $links);
}
return $block;
}
function _spaces_block_utility_links() {
$block = array();
if ($space = spaces_get_space()) {
}
return $block;
}