fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [16406] more on eventplanner


From: sigurdne
Subject: [Fmsystem-commits] [16406] more on eventplanner
Date: Tue, 7 Mar 2017 09:05:00 -0500 (EST)

Revision: 16406
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=16406
Author:   sigurdne
Date:     2017-03-07 09:04:59 -0500 (Tue, 07 Mar 2017)
Log Message:
-----------
more on eventplanner

Modified Paths:
--------------
    trunk/eventplanner/inc/class.uiapplication.inc.php
    trunk/eventplanner/inc/class.uivendor.inc.php
    trunk/eventplanner/templates/base/vendor.xsl
    trunk/eventplannerfrontend/logout.php
    trunk/eventplannerfrontend/templates/base/vendor.xsl
    trunk/phpgwapi/templates/frontend/head.inc.php

Modified: trunk/eventplanner/inc/class.uiapplication.inc.php
===================================================================
--- trunk/eventplanner/inc/class.uiapplication.inc.php  2017-03-07 10:03:03 UTC 
(rev 16405)
+++ trunk/eventplanner/inc/class.uiapplication.inc.php  2017-03-07 14:04:59 UTC 
(rev 16406)
@@ -225,6 +225,20 @@
                                $id = !empty($values['id']) ? $values['id'] : 
phpgw::get_var('id', 'int');
                                $application = $this->bo->read_single($id);
                        }
+
+
+                       $vendor_id = phpgw::get_var('vendor_id', 'int');
+
+                       if($vendor_id && !$application->vendor_id)
+                       {
+                               $vendor = 
createObject('eventplanner.bovendor')->read_single($vendor_id);
+                               $application->vendor_id = $vendor_id;
+                               $application->vendor_name = $vendor->name;
+                               $application->contact_name = 
$vendor->contact_name;
+                               $application->contact_email = 
$vendor->contact_email;
+                               $application->contact_phone = 
$vendor->contact_phone;
+                       }
+
                        $config = CreateObject('phpgwapi.config', 
'eventplanner')->read();
                        $default_category = 
!empty($config['default_application_category']) ? 
$config['default_application_category'] : null;
 

Modified: trunk/eventplanner/inc/class.uivendor.inc.php
===================================================================
--- trunk/eventplanner/inc/class.uivendor.inc.php       2017-03-07 10:03:03 UTC 
(rev 16405)
+++ trunk/eventplanner/inc/class.uivendor.inc.php       2017-03-07 14:04:59 UTC 
(rev 16406)
@@ -195,9 +195,16 @@
                        $tabs['first_tab'] = array(
                                'label' => lang('vendor'),
                                'link' => '#first_tab',
-                               'function' => "set_tab('first_tab')"
+               //              'function' => "set_tab('first_tab')"
                        );
 
+                       $tabs['application'] = array(
+                               'label' => lang('application'),
+                               'link' => '#application',
+                               'disable' => $id ? false : true,
+       //                      'function' => "set_tab('application')"
+                       );
+
                        $bocommon = CreateObject('property.bocommon');
 
                        $comments = (array)$vendor->comments;
@@ -225,6 +232,40 @@
                                )
                        );
 
+                       $application_def = array(
+                               array('key' => 'id', 'label' => lang('id'), 
'sortable' => true, 'resizeable' => true,'formatter' => 
'JqueryPortico.formatLink'),
+                               array('key' => 'title', 'label' => 
lang('title'), 'sortable' => false, 'resizeable' => true),
+                               array('key' => 'date_start', 'label' => 
lang('date start'), 'sortable' => false, 'resizeable' => true),
+                               array('key' => 'date_end', 'label' => 
lang('date end'), 'sortable' => false, 'resizeable' => true),
+                               array('key' => 'number_of_units', 'label' => 
lang('number of units'), 'sortable' => true, 'resizeable' => true),
+                               array('key' => 'timespan', 'label' => 
lang('event timespan'), 'sortable' => false, 'resizeable' => true),
+                       );
+
+                       $tabletools = array(
+                               array(
+                                       'my_name' => 'add',
+                                       'text' => lang('add'),
+                                       'type' => 'custom',
+                                       'className' => 'add',
+                                       'custom_code' => "
+                                                               
add_application({$id}, '{$this->currentapp}.uiapplication.edit' );"
+                               )
+                       );
+
+                       $datatable_def[] = array(
+                               'container' => 'datatable-container_1',
+                               'requestUrl' => 
json_encode(self::link(array('menuaction' => 
"{$this->currentapp}.uiapplication.query",
+                                       'filter_vendor_id' => $id,
+                                       'phpgw_return_as' => 'json'))),
+                               'tabletools' => $tabletools,
+                               'ColumnDefs' => $application_def,
+                               'data' => json_encode(array()),
+                               'config' => array(
+                                       array('disableFilter' => true),
+                                       array('disablePagination' => true)
+                               )
+                       );
+
                        $data = array(
                                'datatable_def' => $datatable_def,
                                'form_action' => self::link(array('menuaction' 
=> "{$this->currentapp}.uivendor.save")),
@@ -237,6 +278,7 @@
                        );
                        phpgwapi_jquery::formvalidator_generate(array());
                        self::add_javascript('eventplannerfrontend', 'portico', 
'validate.js');
+                       self::add_javascript('eventplannerfrontend', 'portico', 
'vendor.edit.js');
                        self::render_template_xsl(array('vendor', 
'datatable_inline'), array($mode => $data));
                }
                

Modified: trunk/eventplanner/templates/base/vendor.xsl
===================================================================
--- trunk/eventplanner/templates/base/vendor.xsl        2017-03-07 10:03:03 UTC 
(rev 16405)
+++ trunk/eventplanner/templates/base/vendor.xsl        2017-03-07 14:04:59 UTC 
(rev 16406)
@@ -204,6 +204,9 @@
                                                                <xsl:value-of 
select="php:function('lang', 'vendor description')"/>
                                                        </label>
                                                        <textarea cols="47" 
rows="7" name="description">
+                                                               <xsl:attribute 
name="data-validation">
+                                                                       
<xsl:text>required</xsl:text>
+                                                               </xsl:attribute>
                                                                <xsl:value-of 
select="vendor/description"/>
                                                        </textarea>
                                                </div>
@@ -212,9 +215,6 @@
                                                                <xsl:value-of 
select="php:function('lang', 'remark')"/>
                                                        </label>
                                                        <textarea cols="47" 
rows="7" name="remark">
-                                                               <xsl:attribute 
name="data-validation">
-                                                                       
<xsl:text>required</xsl:text>
-                                                               </xsl:attribute>
                                                                <xsl:value-of 
select="vendor/remark"/>
                                                        </textarea>
                                                </div>
@@ -246,8 +246,32 @@
                                                </div>
                                        </fieldset>
                                </div>
+                               <div id="application">
+                                       <fieldset>
+
+                                               <div class="pure-control-group">
+                                                       <label>
+                                                               <xsl:value-of 
select="php:function('lang', 'application')"/>
+                                                       </label>
+                                                       <div 
class="pure-custom">
+                                                               <xsl:for-each 
select="datatable_def">
+                                                                       <xsl:if 
test="container = 'datatable-container_1'">
+                                                                               
<xsl:call-template name="table_setup">
+                                                                               
        <xsl:with-param name="container" select ='container'/>
+                                                                               
        <xsl:with-param name="requestUrl" select ='requestUrl'/>
+                                                                               
        <xsl:with-param name="ColumnDefs" select ='ColumnDefs'/>
+                                                                               
        <xsl:with-param name="tabletools" select ='tabletools'/>
+                                                                               
        <xsl:with-param name="data" select ='data'/>
+                                                                               
        <xsl:with-param name="config" select ='config'/>
+                                                                               
</xsl:call-template>
+                                                                       
</xsl:if>
+                                                               </xsl:for-each>
+                                                       </div>
+                                               </div>
+                                       </fieldset>
+                               </div>
                        </div>
-                       <div class="proplist-col">
+                       <div id="submit_group_bottom" class="proplist-col">
                                <input type="submit" class="pure-button 
pure-button-primary" name="save">
                                        <xsl:attribute name="value">
                                                <xsl:value-of 
select="php:function('lang', 'save')"/>

Modified: trunk/eventplannerfrontend/logout.php
===================================================================
--- trunk/eventplannerfrontend/logout.php       2017-03-07 10:03:03 UTC (rev 
16405)
+++ trunk/eventplannerfrontend/logout.php       2017-03-07 14:04:59 UTC (rev 
16406)
@@ -68,4 +68,12 @@
                $GLOBALS['phpgw']->session->phpgw_setcookie('domain');
        }
 
+       $login = phpgw::get_var('login', 'bool');
+
+       if($login)
+       {
+               
$GLOBALS['phpgw']->redirect_link('/eventplannerfrontend/login.php', 
array('after' => phpgw::get_var('after', 'raw')));
+
+       }
+
        $GLOBALS['phpgw']->redirect_link('/eventplannerfrontend/', array('cd' 
=> 1, 'logout' => true));

Modified: trunk/eventplannerfrontend/templates/base/vendor.xsl
===================================================================
--- trunk/eventplannerfrontend/templates/base/vendor.xsl        2017-03-07 
10:03:03 UTC (rev 16405)
+++ trunk/eventplannerfrontend/templates/base/vendor.xsl        2017-03-07 
14:04:59 UTC (rev 16406)
@@ -194,6 +194,9 @@
                                                                <xsl:value-of 
select="php:function('lang', 'vendor description')"/>
                                                        </label>
                                                        <textarea cols="47" 
rows="7" name="description">
+                                                               <xsl:attribute 
name="data-validation">
+                                                                       
<xsl:text>required</xsl:text>
+                                                               </xsl:attribute>
                                                                <xsl:value-of 
select="vendor/description"/>
                                                        </textarea>
                                                </div>
@@ -202,16 +205,37 @@
                                                                <xsl:value-of 
select="php:function('lang', 'remark')"/>
                                                        </label>
                                                        <textarea cols="47" 
rows="7" name="remark">
-                                                               <xsl:attribute 
name="data-validation">
-                                                                       
<xsl:text>required</xsl:text>
-                                                               </xsl:attribute>
                                                                <xsl:value-of 
select="vendor/remark"/>
                                                        </textarea>
                                                </div>
                                        </fieldset>
                                </div>
+                               <div id="application">
+                                       <fieldset>
+
+                                               <div class="pure-control-group">
+                                                       <label>
+                                                               <xsl:value-of 
select="php:function('lang', 'application')"/>
+                                                       </label>
+                                                       <div 
class="pure-custom">
+                                                               <xsl:for-each 
select="datatable_def">
+                                                                       <xsl:if 
test="container = 'datatable-container_1'">
+                                                                               
<xsl:call-template name="table_setup">
+                                                                               
        <xsl:with-param name="container" select ='container'/>
+                                                                               
        <xsl:with-param name="requestUrl" select ='requestUrl'/>
+                                                                               
        <xsl:with-param name="ColumnDefs" select ='ColumnDefs'/>
+                                                                               
        <xsl:with-param name="tabletools" select ='tabletools'/>
+                                                                               
        <xsl:with-param name="data" select ='data'/>
+                                                                               
        <xsl:with-param name="config" select ='config'/>
+                                                                               
</xsl:call-template>
+                                                                       
</xsl:if>
+                                                               </xsl:for-each>
+                                                       </div>
+                                               </div>
+                                       </fieldset>
+                               </div>
                        </div>
-                       <div class="proplist-col">
+                       <div id="submit_group_bottom" class="proplist-col">
                                <input type="submit" class="pure-button 
pure-button-primary" name="save">
                                        <xsl:attribute name="value">
                                                <xsl:value-of 
select="php:function('lang', 'save')"/>

Modified: trunk/phpgwapi/templates/frontend/head.inc.php
===================================================================
--- trunk/phpgwapi/templates/frontend/head.inc.php      2017-03-07 10:03:03 UTC 
(rev 16405)
+++ trunk/phpgwapi/templates/frontend/head.inc.php      2017-03-07 14:04:59 UTC 
(rev 16406)
@@ -205,7 +205,7 @@
        {
                $tpl_vars['login_text_org'] = '';
                $tpl_vars['login_text'] = lang('Login');
-               $tpl_vars['login_url'] = 'login.php?after='. 
urlencode(json_encode($_GET));
+               $tpl_vars['login_url'] = 'logout.php?login=1&after='. 
urlencode(json_encode($_GET));
                $login_parameter = !empty($config_frontend['login_parameter']) 
? $config_frontend['login_parameter'] : '';
                $custom_login_url = 
!empty($config_frontend['custom_login_url']) ? 
$config_frontend['custom_login_url'] : '';
                if($login_parameter)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]