Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
page_rest_resource_oauth_two_legged_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 require_once SQ_ATTRIBUTES_PATH.'/oauth/oauth.inc';
19 
31 {
36  function __construct(&$pm)
37  {
38  $this->Asset_Management($pm);
39  $this->vars = Array(
40  'oauth' => Array(
41  'added' => '0.1',
42  'type' => 'oauth',
43  'default' => Array(
44  'type' => 'TWO_LEGGED',
45  ),
46  ),
47  'allow_global_replace' => Array(
48  'added' => '0.1',
49  'type' => 'boolean',
50  'default' => FALSE,
51  'parameters' => Array(
52  'allow_empty' => FALSE
53  ),
54  ),
55  );
56 
57  }//end constructor
58 
59 }//end class
60 ?>