You are here

commerce_license_plugin_access_sync.inc in Commerce License 7

Contains commerce_license_plugin_access_sync.

File

includes/views/plugins/commerce_license_plugin_access_sync.inc
View source
<?php

/**
 * @file
 * Contains commerce_license_plugin_access_sync.
 */

/**
 * Access plugin for the synchronization queue view.
 */
class commerce_license_plugin_access_sync extends views_plugin_access {
  function access($account) {
    return commerce_license_sync_access($account);
  }
  function get_access_callback() {
    return array(
      'commerce_license_sync_access',
      array(),
    );
  }

}

Classes

Namesort descending Description
commerce_license_plugin_access_sync Access plugin for the synchronization queue view.