Verified Commit 0d4a9b51 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(sinaps) Put some text in the Sinaps tab to avoid having an empty tab

issue #5892
Showing with 14 additions and 2 deletions
+14 -2
......@@ -33,13 +33,25 @@ class sinapsUser extends simplePlugin
//~ 'plIcon' => '',
//~ 'plSmallIcon' => '',
'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
'plProvidedAcls' => array()
);
}
static function getAttributesInfo ()
{
return array();
return array(
'main' => array(
'name' => _('Sinaps'),
'class' => array('fullwidth'),
'attrs' => array(
new DisplayAttribute (
'', '',
'sinaps_explanation', FALSE,
_('This tab takes care of sending Acquisition event to Sinaps whenever a user is modified.')
),
)
)
);
}
function codeEntiteToldapUuidCallback($codeEntite)
......
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