summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 436cd40)
raw | patch | inline | side by side (parent: 436cd40)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 11 Oct 2010 14:08:41 +0000 (14:08 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 11 Oct 2010 14:08:41 +0000 (14:08 +0000) |
-Added comments
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19980 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19980 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/groupware/admin/ogroups/DistributionList/class_DistributionList.inc | patch | blob | history |
diff --git a/gosa-plugins/groupware/admin/ogroups/DistributionList/class_DistributionList.inc b/gosa-plugins/groupware/admin/ogroups/DistributionList/class_DistributionList.inc
index 847b90982137e392c09ac1531827759c8a8716ef..0fdc83c76867189b9c9cdb3e678ea65fab970cda 100644 (file)
class DistributionList extends plugin
{
+ public $view_logged = FALSE;
+ // Error hanlding related attributes.
private $initialized = FALSE;
private $rpcError = FALSE;
private $rpcErrorMessage = "";
- public $view_logged = FALSE;
+ // Attribute definition
public $attributes = array('primaryMailAddress','alternateAddresses','memberList','mailSizeLimit');
-
public $mailSizeLimit = NULL;
public $primaryMailAddress = "";
public $alternateAddresses = array();
public $memberList = array();
+ // Feature handling
+ private $featuresEnabled = array();
+
+ /*! \brief Constructs the plugin, loads required parent values
+ * and initiates the initialization.
+ */
function __construct($config, $dn, $attrs = NULL)
{
plugin::plugin($config, $dn, $attrs);
$this->init();
}
+
+ /*! \brief Try to initialize the plugin using a json-rpc connection
+ * to the gosa-ng server.
+ */
function init()
{
# // Check whether a mathing distribution-list exsits or not?
-
+ /*! \brief Get posted values and check which are interesting for us.
+ */
function save_object()
{
if(isset($_POST['DistributionList_posted'])){