当前位置: 首页>>代码示例>>PHP>>正文


PHP admin::settings_subtabs方法代码示例

本文整理汇总了PHP中admin::settings_subtabs方法的典型用法代码示例。如果您正苦于以下问题:PHP admin::settings_subtabs方法的具体用法?PHP admin::settings_subtabs怎么用?PHP admin::settings_subtabs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在admin的用法示例。


在下文中一共展示了admin::settings_subtabs方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

 *
 * PHP version 5
 * LICENSE: This source file is subject to LGPL license 
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com> 
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     API Controller
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) 
 */
?>
			<div class="bg">
				<h2>
					<?php 
admin::settings_subtabs("map");
?>
				</h2>
				<?php 
print form::open();
?>
					<div class="report-form">
						<?php 
if ($form_error) {
    ?>
							<!-- red-box -->
							<div class="red-box">
								<h3><?php 
    echo Kohana::lang('ui_main.error');
    ?>
</h3>
开发者ID:huslage,项目名称:Ushahidi_Web,代码行数:31,代码来源:settings.php

示例2: array

 *
 * PHP version 5
 * LICENSE: This source file is subject to LGPL license 
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com> 
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     API Controller
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) 
 */
?>
			<div class="bg">
				<h2>
					<?php 
admin::settings_subtabs("cleanurl");
?>
				</h2>
				<?php 
print form::open(NULL, array('id' => 'cleanurlForm', 'name' => 'cleanurlForm', 'action' => url::site() . 'admin/settings/cleanurl'));
?>
				<div class="report-form">
					<?php 
if ($form_error) {
    ?>
						<!-- red-box -->
						<div class="red-box">
							<h3><?php 
    echo Kohana::lang('ui_main.error');
    ?>
</h3>
开发者ID:Dirichi,项目名称:Ushahidi_Web,代码行数:31,代码来源:cleanurl.php

示例3:

 *
 * PHP version 5
 * LICENSE: This source file is subject to LGPL license 
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com> 
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     API Controller
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) 
 */
?>
			<div class="bg">
				<h2>
					<?php 
admin::settings_subtabs("site");
?>

				</h2>
				<?php 
print form::open();
?>
				<div class="report-form">
					<?php 
if ($form_error) {
    ?>
						<!-- red-box -->
						<div class="red-box">
							<h3><?php 
    echo Kohana::lang('ui_main.error');
    ?>
开发者ID:Bridgeborn,项目名称:Ushahidi_Web,代码行数:31,代码来源:site.php

示例4:

 * PHP version 5
 * LICENSE: This source file is subject to LGPL license 
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com> 
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     Facebook Settings View
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) 
 */
?>
			<div class="bg">

				<h2>
					<?php 
admin::settings_subtabs("facebook");
?>
				</h2>
				<?php 
print form::open();
?>
				<div class="report-form">
					<?php 
if ($form_error) {
    ?>
						<!-- red-box -->
						<div class="red-box">
							<h3><?php 
    echo Kohana::lang('ui_main.error');
    ?>
</h3>
开发者ID:huslage,项目名称:Ushahidi_Web,代码行数:31,代码来源:facebook.php

示例5:

 *
 * PHP version 5
 * LICENSE: This source file is subject to LGPL license
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com>
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     API Controller
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL)
 */
?>
<div class="bg">
	<h2>
	<?php 
admin::settings_subtabs("email");
?>
	</h2>
	<?php 
print form::open();
?>
	<div class="report-form">
	<?php 
if ($form_error) {
    ?>
		<!-- red-box -->
		<div class="red-box">
			<h3>
			<?php 
    echo Kohana::lang('ui_main.error');
    ?>
开发者ID:kjgarza,项目名称:ushahidi,代码行数:31,代码来源:email.php

示例6: array

 *
 * PHP version 5
 * LICENSE: This source file is subject to LGPL license 
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com> 
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     Settings Controller
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) 
 */
?>
			<div class="bg">
				<h2>
					<?php 
admin::settings_subtabs("https");
?>
				</h2>
				<?php 
print form::open(NULL, array('id' => 'httpsForm', 'name' => 'httpsForm', 'action' => url::site() . 'admin/settings/https'));
?>
				<div class="report-form">
					<?php 
if ($form_error) {
    ?>
						<!-- red-box -->
						<div class="red-box">
							<h3><?php 
    echo Kohana::lang('ui_main.error');
    ?>
</h3>
开发者ID:mewsop,项目名称:Ushahidi_Web,代码行数:31,代码来源:https.php

示例7: foreach

 *
 * PHP version 5
 * LICENSE: This source file is subject to LGPL license
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com>
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     External Apps View
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL)
 */
?>
			<div class="bg">
				<h2>
					<?php 
admin::settings_subtabs("externalapps");
?>
				</h2>

				<?php 
if ($form_error) {
    ?>
					<!-- red-box -->
					<div class="red-box">
						<h3><?php 
    echo Kohana::lang('ui_main.error');
    ?>
</h3>
						<ul>
						<?php 
    foreach ($errors as $error_item => $error_description) {
开发者ID:Dirichi,项目名称:Ushahidi_Web,代码行数:31,代码来源:main.php

示例8:

 * PHP version 5
 * LICENSE: This source file is subject to LGPL license
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com>
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     API Controller
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL)
 */
?>
<div
	class="bg">
	<h2>
	<?php 
admin::settings_subtabs("api");
?>
	</h2>

	<!-- tabs -->
	<div class="tabs">
		<!-- tabset -->
		<ul class="tabset">
			<li><a href="<?php 
echo url::site();
?>
admin/settings/api"><?php 
echo Kohana::lang('ui_admin.api_settings');
?>
			</a></li>
			<li><a href="<?php 
开发者ID:kjgarza,项目名称:ushahidi,代码行数:31,代码来源:api_banned.php

示例9: array

 *
 * PHP version 5
 * LICENSE: This source file is subject to LGPL license 
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com> 
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     API Controller
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) 
 */
?>
<div class="bg">
	<h2>
		<?php 
admin::settings_subtabs("flickrwijit");
?>
	</h2>
	<?php 
print form::open(NULL, array('id' => 'flickrwijitForm', 'name' => 'flickrwijitForm', 'action' => url::site() . 'admin/flickrwijit'));
?>
	<div class="report-form">
	<?php 
if ($form_error) {
    ?>
		<!-- red-box -->
		<div class="red-box">
			<h3><?php 
    echo Kohana::lang('ui_main.error');
    ?>
</h3>
开发者ID:eyedol,项目名称:flickrwijit,代码行数:31,代码来源:flickrwijit_form.php

示例10:

 * PHP version 5
 * LICENSE: This source file is subject to LGPL license
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com>
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     API Controller
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL)
 */
?>
<div class="bg">

	<h2>
	<?php 
admin::settings_subtabs("sms");
?>
	</h2>
	<?php 
print form::open();
?>
	<div class="report-form">
	<?php 
if ($form_error) {
    ?>
		<!-- red-box -->
		<div class="red-box">
			<h3>
			<?php 
    echo Kohana::lang('ui_main.error');
    ?>
开发者ID:kjgarza,项目名称:ushahidi,代码行数:31,代码来源:sms.php

示例11:

 *
 * PHP version 5
 * LICENSE: This source file is subject to LGPL license 
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author     Ushahidi Team <team@ushahidi.com> 
 * @package    Ushahidi - http://source.ushahididev.com
 * @module     Themes View
 * @copyright  Ushahidi - http://www.ushahidi.com
 * @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL) 
 */
?>
			<div class="bg">
				<h2>
					<?php 
admin::settings_subtabs("themes");
?>
				</h2>
				<?php 
print form::open();
?>
				<div class="report-form">
					<?php 
if ($form_error) {
    ?>
						<!-- red-box -->
						<div class="red-box">
							<h3><?php 
    echo Kohana::lang('ui_main.error');
    ?>
</h3>
开发者ID:jetherton,项目名称:Ushahidi_Web,代码行数:31,代码来源:themes.php

示例12: defined

defined('SYSPATH') or die('No direct script access allowed.');
/**
 * Timespan settings view
 *
 * LICENSE: This source file is subject to LGPL license
 * that is available through the world-wide-web at the following URI:
 * http://www.gnu.org/copyleft/lesser.html
 * @author	   John Etherton
 * @package	   Time Span
 * @license	   http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL)
 */
?>

<div class="bg">
	<h2><?php 
admin::settings_subtabs("timespan");
?>
</h2>
	<?php 
print form::open();
?>
	<div class="report-form">
		<?php 
if ($form_error) {
    ?>
		<!-- red-box -->
		<div class="red-box">
			<h3><?php 
    echo Kohana::lang('ui_main.error');
    ?>
</h3>
开发者ID:rjmackay,项目名称:timespan,代码行数:31,代码来源:timespan_admin.php


注:本文中的admin::settings_subtabs方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。