* @copyright Copyright (C) 2002-2005 Markus Westphal, * 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli, * 2010-2012 Uwe Steinmann * @version Release: @package_version@ */ /** * Include parent class */ //require_once("class.Bootstrap.php"); /** * Class which outputs the html page for WorkspaceStatesMgr view * * @category DMS * @package SeedDMS * @author Markus Westphal, Malcolm Cowe, Uwe Steinmann * @copyright Copyright (C) 2002-2005 Markus Westphal, * 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli, * 2010-2012 Uwe Steinmann * @version Release: @package_version@ */ class SeedDMS_View_WorkflowStatesMgr extends SeedDMS_Theme_Style { function js() { /* {{{ */ header('Content-Type: application/javascript; charset=UTF-8'); parent::jsTranslations(array('js_form_error', 'js_form_errors')); ?> function runValidation() { $("#form1").validate({ rules: { name: { required: true }, }, messages: { name: "", } }); } $(document).ready(function() { $( "#selector" ).change(function() { $('div.ajax').trigger('update', {workflowstateid: $(this).val()}); }); }); params['dms']; $user = $this->params['user']; $selworkflowstate = $this->params['selworkflowstate']; if($selworkflowstate) { if($selworkflowstate->isUsed()) { $transitions = $selworkflowstate->getTransitions(); if($transitions) { echo ""; echo "\n"; echo ""; foreach($transitions as $transition) { $state = $transition->getState(); $nextstate = $transition->getNextState(); $docstatus = $nextstate->getDocumentStatus(); $workflow = $transition->getWorkflow(); echo ""; echo ""; } echo ""; echo "
".getMLText('workflow')."".getMLText('previous_state')."".getMLText('next_state')."
"; echo htmlspecialchars($workflow->getName()); echo ""; echo ' '.htmlspecialchars($state->getName()); echo ""; echo ' '.htmlspecialchars($nextstate->getName()); echo "
"; } } } } /* }}} */ function actionmenu() { /* {{{ */ $dms = $this->params['dms']; $user = $this->params['user']; $selworkflowstate = $this->params['selworkflowstate']; if($selworkflowstate && !$selworkflowstate->isUsed()) { $button = array( 'label'=>getMLText('action'), 'menuitems'=>array( ) ); $button['menuitems'][] = array('label'=>' '.getMLText("rm_workflow_state"), 'link'=>'../op/op.RemoveWorkflowState.php?workflowstateid='.$selworkflowstate->getID().'&formtoken='.createFormKey('removeworkflowstate')); self::showButtonwithMenu($button); } } /* }}} */ function showWorkflowStateForm($state) { /* {{{ */ if($state) { if($state->isUsed()) { $this->infoMsg(getMLText('workflow_state_in_use')); } } ?>
contentContainerStart(); $this->formField( getMLText("workflow_state_name"), array( 'element'=>'input', 'type'=>'text', 'id'=>'name', 'name'=>'name', 'value'=>($state ? htmlspecialchars($state->getName()) : '') ) ); $options = array(); $options[] = array("", getMLText("keep_doc_status")); $options[] = array(S_RELEASED, getMLText("released"), ($state && $state->getDocumentStatus() == S_RELEASED)); $options[] = array(S_REJECTED, getMLText("rejected"), ($state && $state->getDocumentStatus() == S_REJECTED)); $this->formField( getMLText("workflow_state_docstatus"), array( 'element'=>'select', 'name'=>'docstatus', 'options'=>$options ) ); $this->contentContainerEnd(); $this->formSubmit(' '.getMLText("save")); ?>
params['selworkflowstate']; $this->showWorkflowStateForm($selworkflowstate); } /* }}} */ function show() { /* {{{ */ $dms = $this->params['dms']; $user = $this->params['user']; $selworkflowstate = $this->params['selworkflowstate']; $workflowstates = $dms->getAllWorkflowStates(); $this->htmlAddHeader(''."\n", 'js'); $this->htmlAddHeader(''."\n", 'js'); $this->htmlStartPage(getMLText("admin_tools")); $this->globalNavigation(); $this->contentStart(); $this->pageNavigation(getMLText("admin_tools"), "admin_tools"); $this->contentHeading(getMLText("workflow_states_management")); $this->rowStart(); $this->columnStart(4); ?>
getID(), htmlspecialchars($currWorkflowState->getName()), $selworkflowstate && $currWorkflowState->getID()==$selworkflowstate->getID()); } $this->formField( null, //getMLText("selection"), array( 'element'=>'select', 'id'=>'selector', 'class'=>'chzn-select', 'options'=>$options ) ); ?>
getID()."\"" : "") ?>>
getID()."\"" : "") ?>>
columnEnd(); $this->columnStart(8); ?>
getID()."\"" : "") ?>>
columnEnd(); $this->rowEnd(); $this->contentEnd(); $this->htmlEndPage(); } /* }}} */ } ?>