Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
design_area_constant_button_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
39  {
40  Asset_Management::__construct($pm);
41 
42  $this->vars = Array(
43  'assetid' => Array(
44  'added' => '0.0.1',
45  'type' => 'int',
46  'default' => 0,
47  'description' => 'The asset that the button is to link to (has priority over the url attribute)',
48  ),
49  'url' => Array(
50  'added' => '0.0.1',
51  'type' => 'text',
52  'default' => '',
53  'description' => 'The URL that the button is to link to',
54  ),
55  'new_window' => Array(
56  'added' => '0.0.1',
57  'type' => 'boolean',
58  'default' => FALSE,
59  'description' => 'Whether to open in a new window or not',
60  'parameters' => Array(
61  'allow_empty' => FALSE,
62  ),
63  ),
64  'new_window_width' => Array(
65  'added' => '0.0.1',
66  'type' => 'int',
67  'default' => 0,
68  'description' => 'Width of the new window to be created',
69  ),
70  'new_window_height' => Array(
71  'added' => '0.0.1',
72  'type' => 'int',
73  'default' => 0,
74  'description' => 'Width of the new window to be created',
75  ),
76  );
77 
78  }//end constructor
79 
80 
81 }//end class
82 ?>