conditional.inc.php.svn-base

来自「PHP 知识管理系统(基于树结构的知识管理系统), 英文原版的PHP源码。」· SVN-BASE 代码 · 共 660 行 · 第 1/2 页

SVN-BASE
660
字号
<?php/** * $Id$ * * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008 KnowledgeTree Inc. * Portions copyright The Jam Warehouse Software (Pty) Limited *  * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the * Free Software Foundation. *  * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more * details. *  * You should have received a copy of the GNU General Public License * along with this program.  If not, see <http://www.gnu.org/licenses/>. *  * You can contact KnowledgeTree Inc., PO Box 7775 #87847, San Francisco,  * California 94120-7775, or email info@knowledgetree.com. *  * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU General Public License version 3. *  * In accordance with Section 7(b) of the GNU General Public License version 3, * these Appropriate Legal Notices must retain the display of the "Powered by * KnowledgeTree" logo and retain the original copyright notice. If the display of the  * logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices * must display the words "Powered by KnowledgeTree" and retain the original  * copyright notice. * Contributor( s): ______________________________________ * */require_once(KT_LIB_DIR . '/dispatcher.inc.php');require_once(KT_LIB_DIR . '/metadata/fieldset.inc.php');require_once(KT_LIB_DIR . '/widgets/forms.inc.php');require_once(KT_LIB_DIR . '/plugins/pluginutil.inc.php');require_once(KT_LIB_DIR . "/documentmanagement/MDTree.inc");require_once(KT_DIR . "/plugins/ktcore/admin/fieldsets/basic.inc.php");class ConditionalFieldsetManagementDispatcher extends BasicFieldsetManagementDispatcher {    var $oMasterfield;    var $aFreeFields;    var $bIncomplete;    function predispatch() {        // do the other stuff.        parent::predispatch();            }        function statuswarnings() {            // master field            $master_field = DocumentField::get($this->oFieldset->getMasterFieldId());        if (!PEAR::isError($master_field)) {            $this->oMasterfield = $master_field;        }        // ordering                $sTable = KTUtil::getTableName('field_orders');        $aQuery = array(            "SELECT parent_field_id, child_field_id FROM $sTable WHERE fieldset_id = ?",            array($this->oFieldset->getId())        );        $aFieldOrders = DBUtil::getResultArray($aQuery);        $aFields = $this->oFieldset->getFields();        $aFreeFieldIds = array();        foreach ($aFields as $oField) {            $aFreeFieldIds[] = $oField->getId();        }        if ($oMasterField) {            $aParentFieldIds = array($oMasterField->getId());            foreach ($aFieldOrders as $aRow) {                $aParentFieldIds[] = $aRow['child_field_id'];            }            $aParentFields = array();            foreach (array_unique($aParentFieldIds) as $iId) {                $aParentFields[] =& DocumentField::get($iId);            }            $aFreeFields = array();            foreach ($aFreeFieldIds as $iId) {                if (in_array($iId, $aParentFieldIds)) {                    continue;                }                $aFreeFields[] =& DocumentField::get($iId);            }        }        $this->aFreeFields = $aFreeFields;                // general completeness.                $res = KTMetadataUtil::checkConditionalFieldsetCompleteness($this->oFieldset);        if (PEAR::isError($res)) {            $sIncomplete = $res->getMessage();            $this->bIncomplete = true;        } else {            $sIncomplete = null;            $this->bIncomplete = false;        }                    // now prep for the warnings.        if ($this->oMasterfield) {            if (!empty($this->aFreeFields)) {                $this->addErrorMessage(_kt("Al fields must be assigned to an order in the conditional system.  To correct this, please use the \"manage field ordering\" link below.  <b>This fieldset will display as a normal, non-conditional fieldset until this problem is corrected.</b>"));                $this->oPage->booleanLink = true;                            } else if ($this->bIncomplete) {                $this->addErrorMessage(sprintf(_kt("This fieldset is incomplete: %s <b>This fieldset will display as a normal, non-conditional fieldset until this problem is corrected.</b>"), $sIncomplete));                $this->oPage->booleanLink = true;            }            } else {            $this->addErrorMessage(_kt("A conditional fieldset must have a master field before it can be used. To correct this, please use the \"manage field ordering\" link below.  <b>This fieldset will display as a normal, non-conditional fieldset until this problem is corrected.</b>"));            $this->oPage->booleanLink = true;                }        }    // API:  this provides information about the fieldset, including which actions are available.    function describe_fieldset($oFieldset) {            $this->oFieldset = $oFieldset;            // don't let people think this fieldset will work when it won't.        $this->statuswarnings();                    $this->persistParams(array('fFieldsetId','action'));            $oTemplate =& $this->oValidator->validateTemplate('ktcore/metadata/conditional/conditional_admin_overview');        $oTemplate->setData(array(            'context' => $this,            'fields' => $oFieldset->getFields(),            'oFieldset' => $oFieldset,        ));        return $oTemplate->render();    }        // overrides    function getFieldTypeVocab() {        $types = array(            'lookup' => _kt("Lookup"),                                   );                return $types;    }        // overrides    function getDefaultType() {        return 'lookup';    }        /* ------------------ prime evil ------------------------------------ */        function do_editconditional() {        if ($this->oFieldset->getIsComplex()) {            return $this->do_editComplexFieldset();        } else {            return $this->do_editFieldset();                }    }        // FIXME refactor this into do_editSimple(fieldset_id);    function do_editFieldset() {        $fieldset_id = $this->oFieldset->getId();        $oTemplating =& KTTemplating::getSingleton();        $oTemplate = $oTemplating->loadTemplate("ktcore/metadata/conditional/editsimple");        /* alright:  to "do" this we need at least:         *   1. the list of all the columns (id, name) and their available values.         *   2. the fieldset_id.         *  we can then render in/out.   Everything "intelligent" happens         *  in AJAX (doing it with submits sucks arse.         *          */                $oFieldset =& $this->oFieldset;        $aFields =& $oFieldset->getFields();        $this->oPage->setBreadcrumbDetails(_kt('Manage simple conditional'));        $sTable = KTUtil::getTableName('field_orders');        $aQuery = array(            "SELECT parent_field_id, child_field_id FROM $sTable WHERE fieldset_id = ?",            array($oFieldset->getId())        );        $aFieldOrders = DBUtil::getResultArray($aQuery);                $aOrders = array();        foreach ($aFieldOrders as $row) {            $aChildren = KTUtil::arrayGet($aOrders, $row['parent_field_id'], array());            $aChildren[] = $row['child_field_id'];            $aOrders[$row['parent_field_id']] = $aChildren;        }                 // for useability, they can go in any order        // but master field should be first.  beyond that         // it can get odd anyway.                 $aKeyedFields = array();        $aOrderedFields = array();        $aStack = array($oFieldset->getMasterFieldId());                // first, key        foreach ($aFields as $oField) {            $aKeyedFields[$oField->getId()] = $oField;        }                while (!empty($aStack)) {            $iKey = array_shift($aStack);            // this shouldn't happen, but avoid it anyway.            if (!is_null($aKeyedFields[$iKey])) {                $aOrderedFields[] = $aKeyedFields[$iKey];                unset($aKeyedFields[$iKey]);            }            // add children to stack            $aStack = kt_array_merge($aStack, $aOrders[$iKey]);        }                $aTemplateData = array(            "context" => &$this,            "fieldset_id" => $fieldset_id,            "ordering" => $aOrders,            "aFields" => $aOrderedFields,            "iMasterFieldId" => $oFieldset->getMasterFieldId(),        );        return $oTemplate->render($aTemplateData);    }            // FIXME refactor this into do_editSimple(fieldset_id);    function do_editComplexFieldset() {        $fieldset_id = $this->oFieldset->getId();        $oTemplating =& KTTemplating::getSingleton();        $oTemplate = $oTemplating->loadTemplate("ktcore/metadata/conditional/editcomplex");        /* alright:  to "do" this we need at least:         *   1. the list of all the columns (id, name) and their available values.         *   2. the fieldset_id.         *  we can then render in/out.   Everything "intelligent" happens         *  in AJAX (doing it with submits sucks arse.         *          *  FIXME we fake it here with nested arrays...         */        $oFieldset =& $this->oFieldset;        $aFields =& $oFieldset->getFields();                        $sTable = KTUtil::getTableName('field_orders');        $aQuery = array(            "SELECT parent_field_id, child_field_id FROM $sTable WHERE fieldset_id = ?",            array($oFieldset->getId())        );        $aFieldOrders = DBUtil::getResultArray($aQuery);                $aOrders = array();        foreach ($aFieldOrders as $row) {            $aChildren = KTUtil::arrayGet($aOrders, $row['parent_field_id'], array());            $aChildren[] = $row['child_field_id'];            $aOrders[$row['parent_field_id']] = $aChildren;        }                 $aKeyedFields = array();        $aOrderedFields = array();        $aStack = array($oFieldset->getMasterFieldId());                // first, key        foreach ($aFields as $oField) {            $aKeyedFields[$oField->getId()] = $oField;        }                while (!empty($aStack)) {            $iKey = array_shift($aStack);            // this shouldn't happen, but avoid it anyway.            if (!is_null($aKeyedFields[$iKey])) {                $aOrderedFields[] = $aKeyedFields[$iKey];                unset($aKeyedFields[$iKey]);            }            // add children to stack            $aStack = kt_array_merge($aStack, $aOrders[$iKey]);        }                        $this->oPage->setBreadcrumbDetails(_kt('Manage complex conditional'));        $aTemplateData = array(            "context" => &$this,            "fieldset_id" => $fieldset_id,            "ordering" => $aOrders,            "aFields" => $aOrderedFields,            "iMasterFieldId" => $oFieldset->getMasterFieldId(),        );        return $oTemplate->render($aTemplateData);    }        /* ------------------ conditional behaviour code. ------------------- */    function form_setmasterfield() {        $oForm = new KTForm;        $oForm->setOptions(array(            'label' => _kt("Select Master Field"),            'action' => 'setmasterfield',            'cancel_url' => $this->sParentUrl,            'fail_action' => 'manageordering',            'submit_label' => _kt("Set Master Field"),            'context' => $this,        ));                if (!is_null($this->oFieldset->getMasterFieldId())) {            $change_warning = _kt("Changing the master field set will remove all existing fieldordering!");        }                $oForm->setWidgets(array(            array('ktcore.widgets.entityselection', array(                'name' => 'master_field',                'label' => _kt("Master Field"),                'description' => _kt('In order to have a chain of conditions, one initial field must be shown to the user. This is called the master field.'),                'important_description' => $change_warning,                'value' => $this->oFieldset->getMasterFieldId(),                'vocab' => $this->oFieldset->getFields(),                'label_method' => 'getName',                'use_simple' => false,                'required' => true,            )),        ));                $oForm->setValidators(array(            array('ktcore.validators.entity',array(                'class' => 'DocumentField',                'test' => 'master_field',                'output' => 'master_field',            )),

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?