本文整理汇总了PHP中BxTemplStudioFormView类的典型用法代码示例。如果您正苦于以下问题:PHP BxTemplStudioFormView类的具体用法?PHP BxTemplStudioFormView怎么用?PHP BxTemplStudioFormView使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了BxTemplStudioFormView类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getSearchInput
public function getSearchInput()
{
bx_import('BxTemplStudioFormView');
$oForm = new BxTemplStudioFormView(array());
$aInputSearch = array('type' => 'text', 'name' => 'keyword', 'attrs' => array('id' => 'bx-grid-search-' . $this->_sObject, 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()'));
return $oForm->genRow($aInputSearch);
}
示例2: getModulesSelectOne
public function getModulesSelectOne($sGetItemsMethod, $bShowCustom = true, $bShowSystem = true)
{
if (empty($sGetItemsMethod)) {
return '';
}
$oForm = new BxTemplStudioFormView(array());
$aInputModules = array('type' => 'select', 'name' => 'module', 'attrs' => array('id' => 'bx-grid-module-' . $this->_sObject, 'onChange' => 'javascript:' . $this->getJsObject() . '.onChangeModule()'), 'value' => $this->sModule, 'values' => $this->getModules($bShowCustom, $bShowSystem));
$aCounter = array();
$this->oDb->{$sGetItemsMethod}(array('type' => 'counter_by_modules'), $aCounter, false);
foreach ($aInputModules['values'] as $sKey => $sValue) {
$aInputModules['values'][$sKey] = $aInputModules['values'][$sKey] . " (" . (isset($aCounter[$sKey]) ? $aCounter[$sKey] : "0") . ")";
}
$aInputModules['values'] = array_merge(array('' => _t('_adm_txt_select_module')), $aInputModules['values']);
return $oForm->genRow($aInputModules);
}
示例3: _getFilterControls
protected function _getFilterControls()
{
parent::_getFilterControls();
$sContent = "";
$oForm = new BxTemplStudioFormView(array());
$aInputModules = array('type' => 'select', 'name' => 'module', 'attrs' => array('id' => 'bx-grid-module-' . $this->_sObject, 'onChange' => 'javascript:' . $this->getJsObject() . '.onChangeFilter()'), 'value' => '', 'values' => $this->getModules(false));
$aCounter = array();
$this->oDb->getEtemplates(array('type' => 'counter_by_modules'), $aCounter, false);
foreach ($aInputModules['values'] as $sKey => $sValue) {
$aInputModules['values'][$sKey] = $aInputModules['values'][$sKey] . " (" . (isset($aCounter[$sKey]) ? $aCounter[$sKey] : "0") . ")";
}
$aInputModules['values'] = array_merge(array('' => _t('_adm_pgt_txt_all_modules')), $aInputModules['values']);
$sContent .= $oForm->genRow($aInputModules);
$aInputSearch = array('type' => 'text', 'name' => 'keyword', 'attrs' => array('id' => 'bx-grid-search-' . $this->_sObject, 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()'));
$sContent .= $oForm->genRow($aInputSearch);
return $sContent;
}
示例4: getCodeEdit
protected function getCodeEdit($sAction, $sObject)
{
$aForm = $this->getFormEdit($sAction, $sObject);
$oForm = new BxTemplStudioFormView($aForm);
if ($oForm->isSubmitted() && isset($oForm->aInputs['required'])) {
$this->updateCheckerFields($oForm);
}
$oForm->initChecker();
if ($oForm->isSubmittedAndValid()) {
$sInputObject = $oForm->getCleanValue('object');
$sInputName = $oForm->getCleanValue('name');
$this->onSubmitField($oForm);
if ($oForm->update((int) $this->aField['id']) === false) {
return false;
}
return true;
} else {
return BxTemplStudioFunctions::getInstance()->popupBox('adm-form-field-edit-' . $this->aField['type'] . '-popup', _t('_adm_form_txt_field_edit_popup', _t($this->aField['caption'])), BxDolStudioTemplate::getInstance()->parseHtmlByName('form_add_field.html', array('form_id' => $aForm['form_attrs']['id'], 'form' => $oForm->getCode(true), 'object' => $sObject, 'action' => $sAction)));
}
}
示例5: getPageCode
public function getPageCode($sCategorySelected = '')
{
$oTemplate = BxDolStudioTemplate::getInstance();
$aCategories = array();
$iCategories = $this->oDb->getCategories(array('type' => 'by_type_name_key_name', 'type_name' => $this->sType, 'category_name' => $this->sCategory, 'hidden' => 0), $aCategories);
if ($iCategories > 0) {
$aCategories = array_keys($aCategories);
}
$bWrap = count($aCategories) > 1;
$aForm = array('form_attrs' => array('id' => 'adm-settings-form', 'name' => 'adm-settings-form', 'action' => BX_DOL_URL_STUDIO . 'settings.php?page=' . $this->sType, 'method' => 'post', 'enctype' => 'multipart/form-data', 'target' => 'adm-settings-iframe'), 'params' => array('db' => array('table' => 'sys_options', 'key' => 'id', 'uri' => '', 'uri_title' => '', 'submit_name' => 'save')), 'inputs' => array());
foreach ($aCategories as $sCategory) {
$aFields = array();
if (empty($sCategory)) {
continue;
}
$aCategory = array();
$iCategory = $this->oDb->getCategories(array('type' => 'by_name', 'value' => $sCategory), $aCategory);
if ($iCategory != 1) {
continue;
}
$aOptions = array();
$iOptions = $this->oDb->getOptions(array('type' => 'by_category_id', 'value' => $aCategory['id']), $aOptions);
foreach ($aOptions as $aOption) {
$aFields[$aOption['name']] = $this->field($aOption);
}
if ($bWrap) {
$aCategory['selected'] = $aCategory['name'] == $sCategorySelected;
$aFields = $this->header($aCategory, $aFields);
}
$aForm['inputs'] = array_merge($aForm['inputs'], $aFields);
}
$aForm['inputs'] = array_merge($aForm['inputs'], !$bWrap ? array() : array('header_save' => array('type' => 'block_header')), array('categories' => array('type' => 'hidden', 'name' => 'categories', 'value' => implode(',', $aCategories), 'db' => array('pass' => 'Xss')), 'save' => array('type' => 'submit', 'name' => 'save', 'value' => _t("_adm_btn_settings_save"))));
$oForm = new BxTemplStudioFormView($aForm);
$oForm->initChecker();
if ($oForm->isSubmittedAndValid()) {
echo $this->saveChanges($oForm);
exit;
}
return $oTemplate->parseHtmlByName('settings.html', array('js_object' => $this->getPageJsObject(), 'form' => $oForm->getCode()));
}
示例6: _getFilterControls
protected function _getFilterControls()
{
bx_import('BxTemplStudioFormView');
$oForm = new BxTemplStudioFormView(array());
$aInput = array('type' => 'text', 'name' => 'keyword', 'attrs' => array('id' => 'bx-grid-search-' . $this->_sObject));
$this->_oTemplate->addCss('forms.css');
return $oForm->genRow($aInput);
}
示例7: _getFilterControls
protected function _getFilterControls()
{
parent::_getFilterControls();
$sContent = "";
bx_import('BxTemplStudioFormView');
$oForm = new BxTemplStudioFormView(array());
$aInputLevels = array('type' => 'select', 'name' => 'level', 'attrs' => array('id' => 'bx-grid-level-' . $this->_sObject, 'onChange' => 'javascript:' . $this->getJsObject() . '.onChangeLevel()'), 'value' => 'id-' . $this->iLevel, 'values' => array());
$aLevels = $aCounter = array();
$this->oDb->getLevels(array('type' => 'all'), $aLevels, false);
$this->oDb->getPrices(array('type' => 'counter_by_levels'), $aCounter, false);
foreach ($aLevels as $aLevel) {
$aInputLevels['values']['id-' . $aLevel['id']] = _t($aLevel['name']) . " (" . (isset($aCounter[$aLevel['id']]) ? $aCounter[$aLevel['id']] : "0") . ")";
}
asort($aInputLevels['values']);
$aInputLevels['values'] = array_merge(array('id-0' => _t('_adm_prm_txt_select_level')), $aInputLevels['values']);
$sContent .= $oForm->genRow($aInputLevels);
if ($this->iLevel == 0) {
return $sContent;
}
$aInputSearch = array('type' => 'text', 'name' => 'keyword', 'attrs' => array('id' => 'bx-grid-search-' . $this->_sObject));
$sContent .= $oForm->genRow($aInputSearch);
return $sContent;
}
示例8: _getFilterControls
protected function _getFilterControls()
{
parent::_getFilterControls();
$sContent = $this->getModulesSelectOne('getValues') . $this->getListsSelector($this->sModule);
$oForm = new BxTemplStudioFormView(array());
$aInputSearch = array('type' => 'text', 'name' => 'keyword', 'attrs' => array('id' => 'bx-grid-search-' . $this->_sObject), 'tr_attrs' => array('style' => 'display:none;'));
$sContent .= $oForm->genRow($aInputSearch);
return $sContent;
}
示例9: getSettingsCache
protected function getSettingsCache($aPage, $bCreate = true, $bInputsOnly = false)
{
$aForm = array('form_attrs' => array('id' => 'adm-bp-settings-cache'), 'params' => array('remove_form' => '1', 'csrf' => array('disable' => true)), 'inputs' => parent::getSettingsCache($aPage, $bCreate, true));
unset($aForm['inputs']['cache_lifetime']['attrs']);
$aForm['inputs']['cache_editable'] = array('type' => 'switcher', 'name' => 'cache_editable', 'caption' => _t('_bx_dev_bp_txt_page_cache_editable'), 'info' => '', 'value' => '1', 'checked' => (int) $this->aPageRebuild['cache_editable'] == 1, 'required' => '', 'db' => array('pass' => 'Int'));
if ($bInputsOnly) {
return $aForm['inputs'];
}
$oForm = new BxTemplStudioFormView($aForm);
return $oForm->getCode();
}
示例10: getCover
protected function getCover()
{
$oTemplate = BxDolStudioTemplate::getInstance();
$aForm = array('form_attrs' => array('id' => $this->sCoverFormId, 'name' => $this->sCoverFormId, 'action' => BX_DOL_URL_STUDIO . 'designer.php', 'method' => 'post', 'enctype' => 'multipart/form-data', 'target' => $this->sCoverIframeId), 'params' => array('db' => array('table' => '', 'key' => '', 'uri' => '', 'uri_title' => '', 'submit_name' => 'save')), 'inputs' => array('page' => array('type' => 'hidden', 'name' => 'page', 'value' => $this->sPage), 'enabled' => array('type' => 'checkbox', 'name' => 'enabled', 'caption' => _t('_adm_dsg_txt_cover_enabled'), 'value' => 'on', 'checked' => getParam('sys_site_cover_enabled') == 'on', 'db' => array('pass' => 'Xss')), 'code' => array('type' => 'textarea', 'name' => 'code', 'caption' => '', 'value' => getParam('sys_site_cover_code'), 'db' => array('pass' => 'XssHtml')), 'save' => array('type' => 'submit', 'name' => 'save', 'value' => _t('_adm_btn_designer_submit'))));
$oForm = new BxTemplStudioFormView($aForm, $oTemplate);
$oForm->initChecker();
if ($oForm->isSubmittedAndValid()) {
echo $this->submitCover($oForm);
exit;
}
$oTemplate->addJs(array('codemirror/lib/codemirror.js', 'codemirror/mode/xml/xml.js', 'codemirror/mode/javascript/javascript.js', 'codemirror/mode/css/css.js', 'codemirror/mode/htmlmixed/htmlmixed.js'));
$oTemplate->addCss(BX_DIRECTORY_PATH_PLUGINS_PUBLIC . 'codemirror/lib/|codemirror.css');
return $oTemplate->parseHtmlByName('designer.html', array('js_object' => $this->getPageJsObject(), 'content' => $this->getBlockCode(array('items' => $oTemplate->parseHtmlByName('dsr_cover.html', array('warning' => MsgBox(_t('_adm_dsg_dsc_cover_warning')), 'cover_iframe_id' => $this->sCoverIframeId, 'form' => $oForm->getCode()))))));
}
示例11: _getFilterControls
protected function _getFilterControls()
{
parent::_getFilterControls();
$sContent = "";
$oForm = new BxTemplStudioFormView(array());
$aInputLevels = array('type' => 'select', 'name' => 'level', 'attrs' => array('id' => 'bx-grid-level-' . $this->_sObject, 'onChange' => 'javascript:' . $this->getJsObject() . '.onChangeLevel()'), 'value' => 'id-' . $this->iLevel, 'values' => array());
$aLevels = $aCounter = array();
$this->oDb->getLevels(array('type' => 'all'), $aLevels, false);
$this->oDb->getActions(array('type' => 'counter_by_levels'), $aCounter, false);
foreach ($aLevels as $aLevel) {
$aInputLevels['values']['id-' . $aLevel['id']] = _t($aLevel['name']) . " (" . (isset($aCounter[$aLevel['id']]) ? $aCounter[$aLevel['id']] : "0") . ")";
}
asort($aInputLevels['values']);
$aInputLevels['values'] = array_merge(array('id-0' => _t('_adm_prm_txt_select_level')), $aInputLevels['values']);
$sContent .= $oForm->genRow($aInputLevels);
if ($this->iLevel == 0) {
return $sContent;
}
$aInputModules = array('type' => 'select', 'name' => 'module', 'attrs' => array('id' => 'bx-grid-module-' . $this->_sObject, 'onChange' => 'javascript:' . $this->getJsObject() . '.onChangeFilter()'), 'value' => '', 'values' => $this->getModules(false));
$aInputModules['values'] = array_merge(array('' => _t('_adm_prm_txt_all_modules')), $aInputModules['values']);
$aCounter = array();
$this->oDb->getActions(array('type' => 'counter_by_modules'), $aCounter, false);
foreach ($aInputModules['values'] as $sKey => $sValue) {
if (isset($aCounter[$sKey])) {
$aInputModules['values'][$sKey] = $aInputModules['values'][$sKey] . " (" . $aCounter[$sKey] . ")";
}
}
$sContent .= $oForm->genRow($aInputModules);
$aInputSearch = array('type' => 'text', 'name' => 'keyword', 'attrs' => array('id' => 'bx-grid-search-' . $this->_sObject, 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()'));
$sContent .= $oForm->genRow($aInputSearch);
return $sContent;
}
示例12: _addJsCss
protected function _addJsCss()
{
parent::_addJsCss();
$this->_oTemplate->addJs(array('jquery.form.min.js', 'navigation_menus.js'));
bx_import('BxTemplStudioFormView');
$oForm = new BxTemplStudioFormView(array());
$oForm->addCssJs();
}
示例13: performActionExport
public function performActionExport()
{
$sContentInsert = $sContentDelete = "";
$aIds = bx_get('ids');
if (!$aIds || !is_array($aIds)) {
$iId = (int) bx_get('id');
if (!$iId) {
$this->_echoResultJson(array());
exit;
}
$aIds = array($iId);
}
$iId = $aIds[0];
$aList = array();
$this->oDb->getLists(array('type' => 'by_id', 'value' => $iId), $aList, false);
if (!is_array($aList) || empty($aList)) {
$this->_echoResultJson(array());
exit;
}
$sContentInsert .= $this->oModule->_oDb->getQueryInsert('sys_form_pre_lists', array($aList), "Dumping data for '" . $aList['key'] . "' data list");
$sContentDelete .= $this->oModule->_oDb->getQueryDelete('sys_form_pre_lists', 'key', array($aList), "Deleting data for '" . $aList['key'] . "' data list");
$aValues = array();
$this->oDb->getValues(array('type' => 'by_key', 'value' => $aList['key']), $aValues, false);
$sContentInsert .= $this->oModule->_oDb->getQueryInsert('sys_form_pre_values', $aValues, false, array('id', 'key', 'value', 'lkey', 'lkey2', 'order'));
$sContentDelete .= $this->oModule->_oDb->getQueryDelete('sys_form_pre_values', 'Key', array(array('Key' => $aList['key'])), false);
$aFormStructure = array('form_attrs' => array(), 'inputs' => array('insert' => array('type' => 'textarea', 'name' => 'insert', 'caption' => _t('_bx_dev_frm_txt_prelists_export_insert'), 'value' => $sContentInsert), 'delete' => array('type' => 'textarea', 'name' => 'delete', 'caption' => _t('_bx_dev_frm_txt_prelists_export_delete'), 'value' => $sContentDelete), 'done' => array('type' => 'button', 'name' => 'done', 'value' => _t('_bx_dev_frm_btn_prelists_done'), 'attrs' => array('onclick' => "\$('.bx-popup-applied:visible').dolPopupHide()"))));
$oForm = new BxTemplStudioFormView($aFormStructure);
bx_import('BxTemplStudioFunctions');
$sContent = BxTemplStudioFunctions::getInstance()->popupBox('bx-dev-frm-prelist-export-popup', _t('_bx_dev_frm_txt_prelists_export_popup', _t($aList['title'])), $this->oModule->_oTemplate->parseHtmlByName('form_export.html', array('content' => $oForm->getCode())));
$this->_echoResultJson(array('popup' => $sContent), true);
}
示例14: _getFilterControls
protected function _getFilterControls()
{
parent::_getFilterControls();
$sContent = "";
$oForm = new BxTemplStudioFormView(array());
$aInputModules = array('type' => 'select', 'name' => 'module', 'attrs' => array('id' => 'bx-grid-module-' . $this->_sObject, 'onChange' => 'javascript:' . $this->getJsObject() . '.onChangeFilter()'), 'values' => array('id-' . BX_DOL_LANGUAGE_CATEGORY_SYSTEM => '', 'id-' . BX_DOL_LANGUAGE_CATEGORY_CUSTOM => ''));
$aCategories = $aCounter = array();
$this->oDb->getCategoriesBy(array('type' => 'all'), $aCategories, false);
$this->oDb->getKeysBy(array('type' => 'counter_by_category'), $aCounter, false);
foreach ($aCategories as $aCategory) {
$aInputModules['values']['id-' . $aCategory['id']] = $aCategory['name'] . " (" . (isset($aCounter[$aCategory['id']]) ? $aCounter[$aCategory['id']] : "0") . ")";
}
$aInputModules['values'] = array_merge(array('id-0' => _t('_adm_pgt_txt_all_modules')), $aInputModules['values']);
$sContent .= $oForm->genRow($aInputModules);
$aInputSearch = array('type' => 'text', 'name' => 'keyword', 'attrs' => array('id' => 'bx-grid-search-' . $this->_sObject, 'onKeyup' => 'javascript:$(this).off(); ' . $this->getJsObject() . '.onChangeFilter()'));
$sContent .= $oForm->genRow($aInputSearch);
return $sContent;
}
示例15: _getTmplVarsBlockPanelTop
protected function _getTmplVarsBlockPanelTop()
{
$sJsObject = $this->getPageJsObject();
$oForm = new BxTemplStudioFormView(array());
$aInputPages = array('type' => 'select', 'name' => 'page', 'attrs' => array('onChange' => 'javascript:' . $this->getPageJsObject() . '.onChangePage(this)'), 'value' => $this->sPage, 'values' => array(array('key' => '', 'value' => _t('_adm_bp_txt_select_page'))));
$aPages = $aCounter = array();
$this->oDb->getPages(array('type' => 'by_module', 'value' => $this->sType), $aPages, false);
$this->oDb->getBlocks(array('type' => 'counter_by_pages'), $aCounter, false);
foreach ($aPages as $aPage) {
$aInputPages['values'][] = array('key' => $aPage['object'], 'value' => _t($aPage['title_system']) . " (" . (isset($aCounter[$aPage['object']]) ? $aCounter[$aPage['object']] : "0") . ")");
}
$aTmplVarsActions = array();
if (($this->sPage != '' && !empty($this->aPageRebuild)) !== false) {
$aTmplVarsActions = $this->_getTmplVarsBlockPanelTopActions();
}
return array('js_object' => $this->getPageJsObject(), 'selector' => $oForm->genRow($aInputPages), 'action_page_create' => $this->sActionPageCreate, 'bx_if:show_actions' => array('condition' => $this->sPage != '', 'content' => $aTmplVarsActions));
}