Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
cron_job_squid_cache_purge_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
30 {
31 
32 
40  {
41  Asset_Management::__construct($pm);
42 
43  $this->vars = Array(
44  'type' => Array(
45  'default' => 'one_off',
46  ),
47  'ownerid' => Array(
48  'added' => '0.1',
49  'type' => 'assetid',
50  'default' => 0,
51  'description' => 'The ID of the asset which cache to be cleared',
52  ),
53  'cascade' => Array(
54  'added' => '0.1',
55  'type' => 'boolean',
56  'default' => FALSE,
57  'description' => 'Whether the purge action should include children of the selected asset',
58  ),
59  'repopulate' => Array(
60  'added' => '0.1',
61  'type' => 'boolean',
62  'default' => FALSE,
63  'description' => 'Whether we should repopulate the cache by requesting the URLs of the asset',
64  ),
65  );
66 
67  }//end constructor
68 
69 
70 }//end class
71 
72 ?>