Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
page_rest_resource_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 require_once SQ_ATTRIBUTES_PATH.'/http_request/http_request.inc';
19 
31 {
36  function __construct(&$pm)
37  {
38  $this->Asset_Management($pm);
39  $this->vars = Array(
40  'http_request' => Array(
41  'added' => '0.1',
42  'type' => 'http_request',
43  'default' => Array(),
44  ),
45  'send_headers' => Array(
46  'added' => '0.1',
47  'type' => 'boolean',
48  'default' => FALSE,
49  'parameters' => Array('allow_empty' => FALSE),
50  ),
51  'error_response' => Array(
52  'added' => '0.1',
53  'type' => 'text',
54  'default' => '',
55  ),
56  'allow_multiple_runs' => Array(
57  'added' => '0.1',
58  'type' => 'boolean',
59  'default' => FALSE,
60  'parameters' => Array('allow_empty' => FALSE),
61  ),
62  'allow_global_replace' => Array(
63  'added' => '0.1',
64  'type' => 'boolean',
65  'default' => FALSE,
66  'parameters' => Array('allow_empty' => FALSE),
67  ),
68  );
69 
70  }//end constructor
71 
72 }//end class
73 ?>