Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
bulkmail_manager_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
19 
33 {
34 
35 
40  function __construct(&$pm)
41  {
42  parent::__construct($pm);
43 
44  $this->vars = Array(
45  'use_bm_threshold' => Array(
46  'added' => '0.1',
47  'type' => 'boolean',
48  'default' => FALSE,
49  'description' => 'Whether to override threshold settings',
50  ),
51  'chunk_size' => Array(
52  'added' => '0.1',
53  'type' => 'int',
54  'default' => 100,
55  'parameters' => Array(
56  'allow_negative' => FALSE,
57  'allow_empty' => FALSE,
58  'range_lower' => 1,
59  'range_upper' => 600,
60  ),
61  'description' => 'Allow pausing after this number of recipients',
62  ),
63  );
64 
65  }//end constructor
66 
67 
68 }//end class
69 ?>