From 33a0f786bdd794c09878f37359850134fd3bbe63 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Hans-J=C3=BCrgen=20Tappe?= A developers tutorial how to write an application with the new eTemplates.eTemplate - Templates and Dialog-Editor for eGroupWare
by Ralf Becker RalfBecker
AT outdoor-training DOT de
-Updated by Raphael Alla >raphael AT olineopensolutions
+
Updated by Raphael Alla raphael AT olineopensolutions
DOT com
It is also an introduction how to write a eGW- and setup(3)-compatible app.
they encapsulate differnt UI (User Interface) types from the app: at the moment only a HTML one is ready, +
they encapsulate different UI (User Interface) types from the app: at the moment only a HTML one is ready,
but a GTK one (using php-gtk, running
- as native app under linux and win32) and XUL is under development.
Here is a first screenshot of the DB-Tools as native
+ as native app under Linux and win32) and XUL is under development.
Here is a first screenshot of the DB-Tools as native
Linux Application:
Out media database should have the usual fields: name, author, description, type: BOOK, CD, VIDEO and should be able to edit records and search for them.
-As a preaquistion you need to get / checkout the etemplate app, +
As a pre-acquistion you need to get / checkout the etemplate app, install the app via setup/manage applications and enable your account for using the app (Admin/User account: check eTemplates).
Each app need a name, eg. 'et_media'. We now need to create the -following directory structur above the eGroupWare dir: +following directory structure above the eGroupWare dir:
-et_media that has to be identical to our app-name - + setup files necessary for the setup Programm, give the webserver write-permission to that dir +et_media that has to be identical to our app-name + + setup files necessary for the setup program, give the webserver write-permission to that dir + inc class-files - + templates templates, still needed to store the images and get around a lot of complains from the api + + templates templates, still needed to store the images and get around a lot of complains from the API + default + images here goes our images / icons-2. creating et_media/setup/setup.inc.php
+2. Creating et_media/setup/setup.inc.phpThat files contains the necessary information for setup to install the app.
@@ -92,7 +92,7 @@ the app. 'appname' => 'etemplate', 'versions' => Array('1.2','1.3','1.4') );
To enable setup to create a db-table for us and to supply the so_sql-class with the necessary information, we need to define the type and size of the fields / columns in our db-table.
@@ -106,23 +106,23 @@ file for us:you can now log out from setup, the db-table is now created
In order to be able to use your eT-Media application, do not forget to give yourself access to it (Admin/User account: check eT-Media)
Now we need a nice edit dialog and use the eTemplate editor to set it up:
Complete the template as follows. The widget used for “type” is a - Selectbox, the one used for “description” is a textarea. Note - that the name of the input is “descr” and not description, as +
Complete the template as follows. The widget used for "type" is a + Selectbox, the one used for "description" is a textarea. Note + that the name of the input is "descr" and not description, as this is the name of the column in the table. Finally on the last row - we have two widgets of type “Submitbutton” of names “read” - and “save” and of corresponding label.
+ we have two widgets of type "Submitbutton" of names "read" + and "save" and of corresponding label.Then before moving to the next stage save the template as an XML -file by clicking on “Export XML”. Once again the server must have +file by clicking on "Export XML". Once again the server must have write permissions on the directory.
The index page is only used if someone clicks on the navbar icon @@ -164,30 +164,30 @@ the file /et_media/index.php with the following content:
include('../header.inc.php'); $GLOBALS['egw']->redirect_link('/index.php', 'menuaction=et_media.ui_et_media.edit'); -An eGroupWare application is organised around 3 application +
An eGroupWare application is organized around 3 application layers:
For this, we create 2 files in the “inc” directory, called +
For this, we create 2 files in the "inc" directory, called class.bo_et_media.inc.php and class.ui_et_media.inc.php. In this simple application, the bo layer will be fairly minimal, this said it is a good idea to create the application using the @@ -214,7 +214,7 @@ include_once(EGW_INCLUDE_ROOT . '/etemplate/inc/class.so_sql.inc.php'); class bo_et_media extends so_sql { /** - * Availible media types + * Available media types * * @var array */ @@ -226,7 +226,7 @@ class bo_et_media extends so_sql 'video' => 'Video Tape' ); /** - * Constructor initialising so_sql + * Constructor initializing so_sql * * @return so_et_media */ @@ -273,7 +273,7 @@ class ui_et_media extends bo_et_media { $this->bo_et_media(); // calling the constructor of the extended bo object - $this->tmpl =& CreateObject('etemplate.etemplate','et_media.edit'); + $this->tmpl =& CreateObject('etemplate.etemplate','et_media.edit'); } /** @@ -300,7 +300,7 @@ class ui_et_media extends bo_et_media } } - // now we filling the content array for the next call to etemplate.exec + // now we fill in the content array for the next call to etemplate.exec $content = $this->data + array( 'msg' => $msg @@ -317,7 +317,7 @@ class ui_et_media extends bo_et_media The edit function is called from our index.php file or as callback for this form / dialog. In that case $content is an array with the content the user put into the fields of the dialog.
-Let first have a look what happend if we called the first time (or +
Let first have a look what happened if we called the first time (or what we do to show the dialog again with the changed data):
after that the content array is filled again as discriped above.
after that the content array is filled again as described above.
Now we are able to store entries in the db and retrive them by +
Now we are able to store entries in the db and retrieve them by searching the database for patterns in the different fields. You can try your new application now. You can create new records and save them. By just entering the name or author, the database will find the corresponding match and populate the form for you.
We are only lacking some way to show if we get more than one
match on a search, that's what we are going to implement next:
First we need to create an other eTemplate to show the list: 'et_media.show' as follows. This is made of a label of name -“msg” (to display messages), an HorizontalRule widget, and a -Template widget: we will use a “sub template” called +"msg" (to display messages), an HorizontalRule widget, and a +Template widget: we will use a "sub template" called et_media.show.rows to display the rows of the search function. I have -set the option of the template widget to “entry” as this is the +set the option of the template widget to "entry" as this is the name we will use to access to the data in the sub-template.
The 'et_media.show.rows' template is -created as a 3x2 table. On the header row, two labels “Name” and -“Author” and one empty cell.
+created as a 3x2 table. On the header row, two labels "Name" and +"Author" and one empty cell.ond row, two labels of name ${row}[name] and ${row}[author]. In the last cell a -submitButton of label “Edit” and of name “edit[$row_cont[id]]” +submitButton of label "Edit" and of name "edit[$row_cont[id]]"
The class of the header row is “th” and the class of the -content row is “row”. eTemplate will automatically vary the -colors of the “row” class to provide a nice visual effect.
+The class of the header row is "th" and the class of the +content row is "row". eTemplate will automatically vary the +colors of the "row" class to provide a nice visual effect.
Here is a view of the et_media.show template once the two templates have been created:
@@ -436,17 +436,17 @@ This function is called by edit with the matches of a search:
To call the show function, we need to make some changes to the @@ -454,7 +454,7 @@ edit-function too:
elseif (isset($content['read'])) { - unset($content['id']); // not set by user, so dont use for seach + unset($content['id']); // not set by user, so don't use for search unset($content['read']); $found = $this->search($content,False,'name,author'); // searches by using the no-empty fields @@ -489,10 +489,10 @@ edit-function too: is pressed $content['entry']['edit'] is set to the id of the entry of that row. We use that id to read the whole entry. -This is what the new “show” template looks like:
+This is what the new "show" template looks like:
-
While makeing this changes we can add a [Cancel] and [Delete] +
While making these changes we can add a [Cancel] and [Delete] button too:
elseif (isset($content['cancel'])) @@ -511,39 +511,57 @@ button too:
- on cancel we just clear the internal data-array with so_sql's init function.
-- on delete we have to call so_sql's delete before (it deletes the db-row coresponding +
- on delete we have to call so_sql's delete before (it deletes the db-row corresponding with our internal data-array)
the last block checks if the id field is set (it can only be set by a read or save) and disables the [Delete] button if not ($this->db_key_cols[$this->autoinc_id] == 'id').
Of course we have to add this buttons to the template -'et_media.edit'. I trust you can add 2 Submitbuttons with the names -'cancel' and 'delete', a Label and a nice helpmessages by now without +'et_media.edit'. I trust you can add 2 submit buttons with the names +'cancel' and 'delete', a Label and a nice help messages by now without looking at a screenshot ;-).
-8. creating the english lang-file
+The eTemplate is saved in the eGroupware database. If changes done to the +eTemplate should be reverted, a eTemplate setup file is +required, see section Dumping the eTemplate to a File for Distribution. +Note that reverting only works if +a valid version has previously been dumped to a distribution file or if a new +revision identifier of the template has been used to save the changes.
+8. Creating the English lang-file
To get rid of the stars '*' behind each Label and to be able to translate the app in other languages we need to create a -lang-file
+lang-file
There are 2 possibilties to create it automaticaly:
There are 2 possibilities to create it automatically:-
- Use the [Write Langfile] button in the eTemplate editor (put the app-name 'et_media' in the name-field first)
That will NOT write the messages in the classes!!!- We can use the TranslationTools to scans our sources for lang('...') calls ([search new phrases] button).
- Other phrases like the media types can be added manually via [Add] button in the Translation Tools.
9. dumping the eTemplate to a file for distribution
+9. Dumping the eTemplate to a File for Distribution
To be able to put the eTemplates in CVS and to ship them with your app, you need to dump them in a file first.
This is done in the eTemplate editor by putting the app-name or an template-name in the Name field and clicking on the button [Dump4Setup]. This creates the file -et_media/setup/etemplates.inc.php. The etemplate-class loads -this file whenever it finds a new version automaticaly.
-10. further information
-Please note: all files of the et_media example can be found in the et_media sub-direcotry of +et_media/setup/etemplates.inc.php. The eTemplate-class loads +this file whenever it finds a new version automatically.
+To recover a changed eTemplate to the state saved in the distribution file, the following +steps need to be performed:
+
In case the modification was done in a sub-template, e.g. the +definition of the rows in a list view, the correct (sub-) template name and +version needs to be chosen for deletion. It is visible in the edit window of the +elements modified.
+Please note: All files of the et_media example can be found in the et_media sub-directory of etemplate's doc directory. Symlinking or coping to the eGroupWare install directory, allows to -immediatly install it via setup.
+immediately install it via setup.for setup, the necessary files of an app or the format of - tables_current.inc.php look at the exelent docu + tables_current.inc.php look at the excellent docu of setup3 in the doc-dir of the setup app.