You are here

uc_addresses_views_plugin_argument_user_address_access.inc in Ubercart Addresses 7

Same filename and directory in other branches
  1. 6.2 views/uc_addresses_views_plugin_argument_user_address_access.inc

Definition of uatest_views_plugin_argument_address_access.

File

views/uc_addresses_views_plugin_argument_user_address_access.inc
View source
<?php

/**
 * @file
 * Definition of uatest_views_plugin_argument_address_access.
 */

/**
 * Checks if the current user has access to addresses of the given user.
 *
 * This inherits checks from views_plugin_argument_validate_user.
 */
class uc_addresses_views_plugin_argument_user_address_access extends views_plugin_argument_validate_user {

  /**
   * Implements views_plugin_argument_validate#option_definition().
   */
  public function option_definition() {
    $options = parent::option_definition();
    $options['access_type'] = array(
      'default' => 'view',
    );
    return $options;
  }

  /**
   * Implements views_plugin_argument_validate#options_form().
   */
  public function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);

    // Overwrite ID's of parent form elements.
    $form['roles']['#prefix'] = '<div id="edit-options-validate-options-uc-addresses-user-address-access-roles-wrapper">';
    $form['roles']['#dependency'] = array(
      'edit-options-validate-options-uc-addresses-user-address-access-restrict-roles' => array(
        1,
      ),
    );

    // Access type.
    $form['access_type'] = array(
      '#type' => 'select',
      '#title' => t('Address access type'),
      '#description' => t('Select for which type of operation permissions should be checked. Usually "!access_type".', array(
        '!access_type' => t('View'),
      )),
      '#options' => array(
        'view' => t('View'),
        'edit' => t('Edit'),
        'delete' => t('Delete'),
      ),
      '#default_value' => $this->options['access_type'],
    );
  }

  /**
   * Validates if argument is a valid user
   * and if the current user has access to addresses of
   * the given user.
   */
  public function validate_argument($argument) {

    // Let the parent validate the argument first.
    if (!parent::validate_argument($argument)) {

      // If the parent says the argument is invalid, then
      // there is no need to check further for address access.
      return FALSE;
    }

    // Check for address access.
    $address_user = user_load($this->argument->argument);
    switch ($this->options['access_type']) {
      case 'view':
        return UcAddressesPermissions::canViewAddress($address_user);
      case 'edit':
        return UcAddressesPermissions::canEditAddress($address_user);
      case 'delete':
        return UcAddressesPermissions::canDeleteAddress($address_user);
    }
    return FALSE;
  }

}

Classes

Namesort descending Description
uc_addresses_views_plugin_argument_user_address_access Checks if the current user has access to addresses of the given user.