Commit 182c698d authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(plugins) Adapt code to new skipSnapshots var

issue #5772
Showing with 10 additions and 5 deletions
+10 -5
......@@ -29,7 +29,8 @@ class argonautQueue extends simpleManagement
protected $autoActions = FALSE;
protected $skipCpHandler = TRUE;
protected $skipSnapHandler = TRUE;
public static $skipSnapshots = TRUE;
var $read_only = FALSE;
var $acl_base;
......
......@@ -32,7 +32,8 @@ class auditManagement extends simpleManagement
protected $autoActions = FALSE;
protected $multiSelect = FALSE;
protected $skipCpHandler = TRUE;
protected $skipSnapHandler = TRUE;
public static $skipSnapshots = TRUE;
public static function plInfo()
{
......
......@@ -22,10 +22,11 @@ class ejbcaManagement extends simpleManagement
{
protected $objectTypes = array('ejbcaCertificate');
protected $autoActions = FALSE;
protected $skipSnapHandler = TRUE;
protected $autoFilterAttributes = array('dn', 'cn', 'description', 'userCertificate');
public static $skipSnapshots = TRUE;
public static function plInfo()
{
return array(
......
......@@ -24,12 +24,13 @@ class inventoryManagement extends simpleManagement
protected $departmentRootVisible = FALSE;
protected $baseMode = FALSE;
protected $skipCpHandler = TRUE;
protected $skipSnapHandler = TRUE;
protected $autoActions = FALSE;
protected $autoFilterAttributes = array('dn', 'cn', 'macAddress');
protected $objectTypes = array('inventory');
public static $skipSnapshots = TRUE;
static function plInfo()
{
return array(
......
......@@ -39,7 +39,6 @@ class ServerService extends simpleManagement
var $skipFooter = TRUE;
var $skipHeader = TRUE;
var $skipCpHandler = TRUE;
var $skipSnapHandler = TRUE;
var $plugins = array();
var $current = "";
var $dialog = FALSE;
......@@ -51,6 +50,8 @@ class ServerService extends simpleManagement
var $acl_category = "";
var $acl_base = "";
public static $skipSnapshots = TRUE;
var $is_account;
/* Return plugin information for acl handling */
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment