Code

Updated registration dialog
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 5 Nov 2010 09:27:03 +0000 (09:27 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 5 Nov 2010 09:27:03 +0000 (09:27 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20188 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/plugins/generic/dashBoard/Register/class_RegisterGOsa.inc
gosa-core/plugins/generic/dashBoard/Register/register.tpl

index 045603e2865c5c48350181918cd70dd2839fb1f0..a0eebe39cd3ee28b3330665adb32486b4d87984f 100644 (file)
@@ -8,7 +8,7 @@
 
 class GOsaRegistration extends plugin
 {
-
+    protected $defaultRegistrationType = "registered";
     protected $isRegistered = FALSE; 
 
     function __construct(&$config)
@@ -22,20 +22,24 @@ class GOsaRegistration extends plugin
     function execute()
     {
         $smarty = get_smarty();
-
+        $smarty->assign("default", $this->defaultRegistrationType);
         return($smarty->fetch(get_template_path("Register/register.tpl", TRUE))); 
     } 
 
 
     static function registerGOsa($config, $uuid, $type, $userData = array())
     {
-
         echo "<br>Register GOsa.";
         print_a(func_get_args());
-        
     }
 
 
+    static function getRegistrationType($config)
+    {
+        return($config->configRegistry->getPropertyValue('GOsaRegistration','registerStatus'));
+    }    
+
+
     static function isRegistered($config, $uuid = NULL)
     {
         $status = $config->configRegistry->getPropertyValue('GOsaRegistration','registerStatus');
index 8bd6648ed130ac9ece0f89cd9a8fbbfd2608427a..5d67160fe32db87ebf64b64ff2cd6ced6ddbbdd7 100644 (file)
@@ -1 +1,55 @@
-asdf
+<h3>{t}GOsa registration{/t}</h3>
+
+{t}Do you want to register GOsa and benefit from the features it brings?{/t}
+
+<p>
+ <input type='radio' name='registrationType' value=''
+        {if $default == ""} checked {/if}><b>{t}I do not want to register{/t}</b>
+    <p style='padding-left:20px;'>
+        <!-- Add a descritive text later -->
+    </p>
+
+    <input type='radio' name='registrationType' value='annonym'
+        {if $default == "annonym"} checked {/if}><b>{t}Annonym access{/t}</b>
+    <p style='padding-left:20px;'>
+    <ul>
+        <li>{t}Access to the 'Open-Channels' to easily install or remove plugins within the GOsa user interface{/t}</li>
+        <li>{t}Use the inbuild bugtracker and keep track of their status on the dash-board.{/t}</li>
+    </ul>
+    </p>
+
+    <p style='padding-left:20px;'>
+    {t}What information will be transmitted to the backend and maybe stored:{/t}
+    <ul>
+        <li>{t}Information about the installed plugins and their version.{/t}</li>
+        <li>{t}The GOsa-UUID (will be generated during the registration) and a password, to authenticate.{/t}</li>
+        <li>{t}The bugs you will report and the corresponding trace. You can select what information you want to send in.{/t}</li>
+    </ul>
+    </p>
+    
+    <input type='radio' name='registrationType' value='registered'
+        {if $default == "registered"} checked {/if}><b>{t}Register{/t}</b>
+    <p style='padding-left:20px;'>
+    {t}Additionally to the 'Annonomous' account you can:{/t}
+    <ul>
+        <li>{t}Access to 'Premium-Channels'.{/t}</li>
+        <li>{t}Watch the status of current plugin updates/patches and the availability of new plugins.{/t}</li>
+        <li>{t}Receive newsletter, if wanted.{/t}</li>
+        <li>{t}View several usefull statistics about your GOsa installation{/t}.</li>
+    </ul>
+    </p>
+       
+    <p style='padding-left:20px;'>
+    {t}What information will be transmitted to the backend and maybe stored:{/t}
+    <ul>
+        <li>{t}All personal information filled in the registration form.{/t}</li>
+        <li>{t}Information about the installed plugins and their version.{/t}</li>
+        <li>{t}The GOsa-UUID (will be generated during the registration) and a password, to authenticate.{/t}</li>
+        <li>{t}The bugs you will report and the corresponding trace. You can select what information you want to send in.{/t}</li>
+        <li>{t}When the statistics extension is used. GOsa will transmit information about plugins, their usage and the amount of objects present in your ldap database. No sensitive data is transmitted here, just the object type, the action performed, cpu usage, memory usage, elapsed time...{/t}</li>
+    </ul>
+        
+    </p>
+</p>
+