Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
page_rest_resource_oauth_session_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' => 'THREE_LEGGED',
45  ),
46  ),
47  'allow_global_replace' => Array(
48  'added' => '0.1',
49  'type' => 'boolean',
50  'default' => FALSE,
51  'parameters' => Array('allow_empty' => FALSE),
52  ),
53  'redirect_authorise' => Array(
54  'added' => '0.1',
55  'type' => 'boolean',
56  'default' => FALSE,
57  'parameters' => Array('allow_empty' => FALSE),
58  ),
59  'store_token' => Array(
60  'added' => '0.1',
61  'type' => 'boolean',
62  'default' => FALSE,
63  'parameters' => Array('allow_empty' => FALSE),
64  ),
65  'access_token' => Array(
66  'added' => '0.1',
67  'type' => 'text',
68  'default' => '',
69  ),
70  'access_token_secret' => Array(
71  'added' => '0.1',
72  'type' => 'text',
73  'default' => '',
74  ),
75 
76  );
77 
78  }//end constructor
79 
80 }//end class
81 ?>