class spaces_plugin_access_spaces_feature in Spaces 7
Same name and namespace in other branches
- 6.3 includes/spaces_plugin_access_spaces_feature.inc \spaces_plugin_access_spaces_feature
- 6 includes/spaces_plugin_access_spaces_feature.inc \spaces_plugin_access_spaces_feature
- 6.2 includes/spaces_plugin_access_spaces_feature.inc \spaces_plugin_access_spaces_feature
- 7.3 includes/spaces_plugin_access_spaces_feature.inc \spaces_plugin_access_spaces_feature
Provides access control for views by checking against the current space's feature settings. Optionally allows a permission to be checked in addition to the first feature access control check.
This access plugin delegates access control first to spaces_feature_access() which will check whether the user can first access content, then the active space type's 'feature_access' method will be called. If implementing your own space type you have the ability to define your own access control. See 'space_og' class in Spaces OG module for an example implementation.
Hierarchy
- class \views_object- class \views_plugin- class \views_plugin_access
 
 
- class \views_plugin
Expanded class hierarchy of spaces_plugin_access_spaces_feature
1 string reference to 'spaces_plugin_access_spaces_feature'
- spaces_views_plugins in includes/spaces.views.inc 
- Implements hook_views_plugins().
File
- includes/spaces_plugin_access_spaces_feature.inc, line 14 
View source
class spaces_plugin_access_spaces_feature extends views_plugin_access {
  /**
   * Check access directly.
   */
  function access($account) {
    $feature = $this->options['spaces_feature'] == 0 ? $this
      ->get_my_feature() : $this->options['spaces_feature'];
    if (!empty($this->options['perm'])) {
      return spaces_access_feature_perms('view', $feature, NULL, NULL, array(
        $this->options['perm'],
      ));
    }
    return spaces_access_feature('view', $feature, NULL);
  }
  /**
   * Provide the access check as a callback.
   */
  function get_access_callback() {
    $feature = $this->options['spaces_feature'] == 0 ? $this
      ->get_my_feature() : $this->options['spaces_feature'];
    if (!empty($this->options['perm'])) {
      return array(
        'spaces_access_feature_perms',
        array(
          'view',
          $feature,
          NULL,
          NULL,
          array(
            $this->options['perm'],
          ),
        ),
      );
    }
    return array(
      'spaces_access_feature',
      array(
        'view',
        $feature,
        NULL,
      ),
    );
  }
  /**
   * Display for Views UI.
   */
  function summary_title() {
    $features = spaces_features();
    if (isset($features[$this->options['spaces_feature']])) {
      return t('Feature: @feature', array(
        '@feature' => $features[$this->options['spaces_feature']]->info['name'],
      ));
    }
    return $this->options['spaces_feature'] == 0 ? t('Autodetect') : t('Broken');
  }
  /**
   * Override of option_definition().
   */
  function option_definition() {
    $options = parent::option_definition();
    $options['spaces_feature'] = array(
      'default' => 0,
    );
    $options['perm'] = array(
      'default' => 'access content',
    );
    return $options;
  }
  /**
   * Override of options_form().
   */
  function options_form(&$form, &$form_state) {
    // Generate feature options.
    $options = array(
      0 => t('Autodetect'),
    );
    foreach (spaces_features() as $feature) {
      $options[$feature->name] = check_plain($feature->info['name']);
    }
    $form['spaces_feature'] = array(
      '#type' => 'select',
      '#title' => t('Feature'),
      '#default_value' => $this->options['spaces_feature'],
      '#options' => $options,
      '#description' => t('Only allow access to this view if the user has access to the selected feature.'),
    );
    // Get list of permissions.
    $perms = array(
      '' => '<' . t('No permission check') . '>',
    );
    foreach (module_implements('permission') as $module) {
      if ($permissions = module_invoke($module, 'permission')) {
        $module_perms = array();
        foreach ($permissions as $key => $data) {
          $module_perms[$key] = check_plain($data['title']);
        }
        $perms[$module] = $module_perms;
      }
    }
    $form['perm'] = array(
      '#type' => 'select',
      '#options' => $perms,
      '#title' => t('Permission'),
      '#default_value' => $this->options['perm'],
      '#description' => t('Only users with the selected permission flag will be able to access this display. Note that users with "access all views" can see any view, regardless of other permissions.'),
    );
  }
  /**
   * Attempt to detect the feature that this view belongs to.
   */
  protected function get_my_feature() {
    $map = features_get_component_map('views');
    return !empty($map[$this->view->name]) ? reset($map[$this->view->name]) : FALSE;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| spaces_plugin_access_spaces_feature:: | function | Check access directly. Overrides views_plugin_access:: | ||
| spaces_plugin_access_spaces_feature:: | function | Provide the access check as a callback. Overrides views_plugin_access:: | ||
| spaces_plugin_access_spaces_feature:: | protected | function | Attempt to detect the feature that this view belongs to. | |
| spaces_plugin_access_spaces_feature:: | function | Override of options_form(). Overrides views_plugin_access:: | ||
| spaces_plugin_access_spaces_feature:: | function | Override of option_definition(). Overrides views_plugin_access:: | ||
| spaces_plugin_access_spaces_feature:: | function | Display for Views UI. Overrides views_plugin_access:: | ||
| views_object:: | public | property | Handler's definition. | |
| views_object:: | public | property | Except for displays, options for the object will be held here. | 1 | 
| views_object:: | function | Collect this handler's option definition and alter them, ready for use. | ||
| views_object:: | public | function | Views handlers use a special construct function. | 4 | 
| views_object:: | public | function | Destructor. | 2 | 
| views_object:: | public | function | 1 | |
| views_object:: | public | function | ||
| views_object:: | public | function | Always exports the option, regardless of the default value. | |
| views_object:: | public | function | Set default options on this object. | 1 | 
| views_object:: | public | function | Set default options. | |
| views_object:: | public | function | Let the handler know what its full definition is. | |
| views_object:: | public | function | Unpack options over our existing defaults, drilling down into arrays so that defaults don't get totally blown away. | |
| views_object:: | public | function | Unpack a single option definition. | |
| views_object:: | public | function | Unpacks each handler to store translatable texts. | |
| views_object:: | public | function | ||
| views_plugin:: | public | property | The current used views display. | |
| views_plugin:: | public | property | The plugin name of this plugin, for example table or full. | |
| views_plugin:: | public | property | The plugin type of this plugin, for example style or query. | |
| views_plugin:: | public | property | The top object of a view. Overrides views_object:: | 1 | 
| views_plugin:: | public | function | Provide a list of additional theme functions for the theme info page. | |
| views_plugin:: | public | function | Return the human readable name of the display. | |
| views_plugin:: | public | function | Add anything to the query that we might need to. | 7 | 
| views_plugin:: | public | function | Provide a full list of possible theme templates used by this style. | |
| views_plugin:: | public | function | Validate that the plugin is correct and can be saved. | 3 | 
| views_plugin_access:: | public | function | Initialize the plugin. | |
| views_plugin_access:: | public | function | Provide the default form form for submitting options. Overrides views_plugin:: | 1 | 
| views_plugin_access:: | public | function | Provide the default form form for validating options. Overrides views_plugin:: | 1 | 
