openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit eead0707240b5a659b3dc994ba4106964507ea13
parent 165132cc629c55610fc10c1771f1895408d20000
Author: dankert <devnull@localhost>
Date:   Fri, 16 Nov 2007 23:56:19 +0100

Dialog-Verbesserung f?r Hinzuf?gen von Element im Template-Quellcode.

Diffstat:
actionClasses/TemplateAction.class.php | 59++++++++++++++++++++++++++++++-----------------------------
themes/default/templates/template/srcelement.tpl.src.php | 55+++++++++++++++++++++++++++++++------------------------
2 files changed, 61 insertions(+), 53 deletions(-)

diff --git a/actionClasses/TemplateAction.class.php b/actionClasses/TemplateAction.class.php @@ -20,6 +20,9 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // --------------------------------------------------------------------------- // $Log$ +// Revision 1.20 2007-11-16 22:56:19 dankert +// Dialog-Verbesserung f?r Hinzuf?gen von Element im Template-Quellcode. +// // Revision 1.19 2007-11-15 21:42:46 dankert // Beim Anlegen von Seitenvorlagen Beispiel-Vorlagen anbieten. // @@ -142,31 +145,37 @@ class TemplateAction extends Action function srcaddelement() { $text = $this->template->src; - - // Falls dieses Element hinzugef?gt werden soll - if ( $this->hasRequestVar('addelement') ) - { - $text .= "\n".'{{'.$this->getRequestVar('elementid').'}}'; - } - if ( $this->hasRequestVar('addicon') ) + switch( $this->getRequestVar('type') ) { - $text .= "\n".'{{->'.$this->getRequestVar('iconid').'}}'; - } + case 'addelement': + $text .= "\n".'{{'.$this->getRequestVar('elementid').'}}'; + break; + + case 'addicon': + $text .= "\n".'{{->'.$this->getRequestVar('writable_elementid').'}}'; + break; - if ( $this->hasRequestVar('addifempty') ) - { - $text .= "\n".'{{IFEMPTY:'.$this->getRequestVar('ifemptyid').':BEGIN}} {{IFEMPTY:'.$this->getRequestVar('ifemptyid').':END}}'; - } - if ( $this->hasRequestVar('addifnotempty') ) - { - $text .= "\n".'{{IFNOTEMPTY:'.$this->getRequestVar('ifnotemptyid').':BEGIN}} {{IFNOTEMPTY:'.$this->getRequestVar('ifnotemptyid').':END}}'; + case 'addifempty': + $text .= "\n".'{{IFEMPTY:'.$this->getRequestVar('writable_elementid').':BEGIN}} {{IFEMPTY:'.$this->getRequestVar('writable_elementid').':END}}'; + break; + + case 'addifnotempty': + $text .= "\n".'{{IFNOTEMPTY:'.$this->getRequestVar('writable_elementid').':BEGIN}} {{IFNOTEMPTY:'.$this->getRequestVar('writable_elementid').':END}}'; + break; + + default: + $this->addValidationError('type'); + $this->callSubAction('srcelement'); + return; } $this->template->src = $text; $this->template->save(); $this->template->load(); + + $this->addNotice('template',$this->template->name,'SAVED',OR_NOTICE_OK); } @@ -557,10 +566,8 @@ class TemplateAction extends Action function srcelement() { - $elements = array(); - $icon_elements = array(); - $ifempty_elements = array(); - $ifnotempty_elements = array(); + $elements = array(); + $writable_elements = array(); foreach( $this->template->getElementIds() as $elid ) { @@ -570,17 +577,11 @@ class TemplateAction extends Action $elements[$elid] = $element->name; if ( $element->isWritable() ) - { - $icon_elements [$elid] = lang('GLOBAL_icon' ).' '.$element->name; - $ifempty_elements [$elid] = lang('TEMPLATE_SRC_ifempty' ).' '.$element->name; - $ifnotempty_elements[$elid] = lang('TEMPLATE_SRC_ifnotempty').' '.$element->name; - } + $writable_elements[$elid] = $element->name; } - $this->setTemplateVar('elements' ,$elements ); - $this->setTemplateVar('icon_elements' ,$icon_elements ); - $this->setTemplateVar('ifempty_elements' ,$ifempty_elements ); - $this->setTemplateVar('ifnotempty_elements',$ifnotempty_elements ); + $this->setTemplateVar('elements' ,$elements ); + $this->setTemplateVar('writable_elements',$writable_elements); } diff --git a/themes/default/templates/template/srcelement.tpl.src.php b/themes/default/templates/template/srcelement.tpl.src.php @@ -1,35 +1,42 @@ page form - window - if present:elements + window widths:10px,150px + if present:elements row - cell class:fx - checkbox name:addelement - cell class:fx + cell + radio name:type value:addelement + cell + label for:type_addelement + text key:value + cell selectbox name:elementid list:elements - if present:icon_elements + if present:writable_elements + row + cell colspan:3 + fieldset row - cell class:fx - checkbox name:addicon - cell class:fx - selectbox name:iconid list:icon_elements - - if present:ifempty_elements - row - cell class:fx - checkbox name:addifempty - cell class:fx - selectbox name:ifemptyid list:ifempty_elements - - if present:ifnotempty_elements + cell + radio name:type value:addicon + cell + label for:type_addicon + text key:GLOBAL_ICON + cell rowspan:3 + selectbox name:writable_elementid list:writable_elements row - cell class:fx - checkbox name:addifnotempty - cell class:fx - selectbox name:ifnotemptyid list:ifnotempty_elements + cell + radio name:type value:addifempty + cell + label for:type_addifempty + text key:TEMPLATE_SRC_IFEMPTY + row + cell + radio name:type value:addifnotempty + cell + label for:type_addifnotempty + text key:TEMPLATE_SRC_IFEMPTY row - cell colspan:2 class:act + cell colspan:3 class:act button type:ok \ No newline at end of file