當前位置: 首頁>>代碼示例>>PHP>>正文


PHP util::getStatusFieldChoices方法代碼示例

本文整理匯總了PHP中util::getStatusFieldChoices方法的典型用法代碼示例。如果您正苦於以下問題:PHP util::getStatusFieldChoices方法的具體用法?PHP util::getStatusFieldChoices怎麽用?PHP util::getStatusFieldChoices使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在util的用法示例。


在下文中一共展示了util::getStatusFieldChoices方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

        $p_public_event_url[$lang] = util::formatAppPath($url, false, false);
    }
    if ($okt->error->isEmpty()) {
        $new_conf = array('enable_metas' => (bool) $p_enable_metas, 'enable_rte' => $p_enable_rte, 'enable_filters' => (bool) $p_enable_filters, 'fields' => array('color' => (int) $p_chp_color, 'disponibility' => (int) $p_chp_disponibility), 'images' => $aImagesConfig, 'files' => array('enable' => (bool) $p_enable_files, 'number' => (int) $p_number_files, 'allowed_exts' => $p_allowed_exts), 'name' => $p_name, 'name_seo' => $p_name_seo, 'title' => $p_title, 'meta_description' => $p_meta_description, 'meta_keywords' => $p_meta_keywords, 'public_list_url' => $p_public_list_url, 'public_event_url' => $p_public_event_url);
        try {
            $okt->diary->config->write($new_conf);
            $okt->redirect('module.php?m=diary&action=config&updated=1');
        } catch (InvalidArgumentException $e) {
            $okt->error->set(__('c_c_error_writing_configuration'));
            $okt->error->set($e->getMessage());
        }
    }
}
/* Affichage
----------------------------------------------------------*/
$aFieldChoices = util::getStatusFieldChoices();
# Titre de la page
$okt->page->addGlobalTitle(__('Configuration'));
# javascript
$okt->page->tabs();
# Lang switcher
if (!$okt->languages->unique) {
    $okt->page->langSwitcher('#tabered', '.lang-switcher-buttons');
}
# Confirmations
$okt->page->messages->success('updated', __('c_c_confirm_configuration_updated'));
$okt->page->messages->success('minregenerated', __('c_c_confirm_thumb_regenerated'));
$okt->page->messages->success('watermarkdeleted', __('c_c_confirm_watermark_deleted'));
# En-tête
require OKT_ADMIN_HEADER_FILE;
?>
開發者ID:jewelhuq,項目名稱:okatea,代碼行數:31,代碼來源:config.php

示例2:

    }
}
/* Affichage
----------------------------------------------------------*/
# Titre de la page
$okt->page->addGlobalTitle(__('c_a_menu_configuration'));
# Lockable
$okt->page->lockable();
# Tabs
$okt->page->tabs();
# Lang switcher
if (!$okt->languages->unique) {
    $okt->page->langSwitcher('#tabered', '.lang-switcher-buttons');
}
$field_choice = util::getStatusFieldChoices();
$field_logo_choice = util::getStatusFieldChoices(false);
# En-tête
include OKT_ADMIN_HEADER_FILE;
?>

<form action="module.php" method="post">
	<div id="tabered">
		<ul>
			<li><a href="#tab_general"><span><?php 
_e('m_partners_general');
?>
</span></a></li>
			<li><a href="#tab_fields"><span><?php 
_e('m_partners_fields');
?>
</span></a></li>
開發者ID:jewelhuq,項目名稱:okatea,代碼行數:31,代碼來源:config.php

示例3:

    }
}
/* Affichage
----------------------------------------------------------*/
# Titre de la page
$okt->page->addGlobalTitle(__('c_a_menu_configuration'));
# Lockable
$okt->page->lockable();
# Tabs
$okt->page->tabs();
# Lang switcher
if (!$okt->languages->unique) {
    $okt->page->langSwitcher('#tabered', '.lang-switcher-buttons');
}
$aFieldChoices = util::getStatusFieldChoices();
$aLanguageFieldChoices = util::getStatusFieldChoices(false);
# En-tête
include OKT_ADMIN_HEADER_FILE;
?>

<form action="module.php" method="post">
	<div id="tabered">
		<ul>
			<li><a href="#tab-fields"><?php 
_e('c_c_fields');
?>
</a></li>
			<li><a href="#tab-advanced"><?php 
_e('c_a_menu_advanced');
?>
</a></li>
開發者ID:jewelhuq,項目名稱:okatea,代碼行數:31,代碼來源:config.php


注:本文中的util::getStatusFieldChoices方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。