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


PHP Uri::string_with_query方法代碼示例

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


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

示例1: check_auth_and_redirect

 protected function check_auth_and_redirect($is_check_not_auth_action = true)
 {
     if ($is_check_not_auth_action && $this->check_not_auth_action()) {
         return;
     }
     if (IS_AUTH) {
         return;
     }
     if (IS_API) {
         throw new ApiNotAuthorizedException();
     }
     if (!$this->acl_has_access) {
         throw new HttpForbiddenException();
     }
     Session::set_flash('destination', urlencode(Uri::string_with_query()));
     Response::redirect($this->get_login_page_uri());
 }
開發者ID:uzura8,項目名稱:flockbird,代碼行數:17,代碼來源:base.php

示例2: symbol

<?php 
        } else {
            ?>
	<td class="small"><?php 
            echo symbol('noValue');
            ?>
</td>
<?php 
        }
        ?>

<?php 
        if (check_acl($uri = 'admin/member/delete')) {
            ?>
	<td class="small"><?php 
            echo btn('form.delete', '#', 'js-simplePost', false, 'xs', null, array('data-destination' => Uri::string_with_query(), 'data-uri' => $uri . '/' . $member->id, 'data-msg' => term('common.force', 'site.left') . 'します。よろしいですか?'));
            ?>
</td>
<?php 
        } else {
            ?>
	<td class="small"><?php 
            echo symbol('noValue');
            ?>
</td>
<?php 
        }
        ?>

	<td><?php 
        echo Html::anchor('admin/member/' . $member->id, $member->name);
開發者ID:uzura8,項目名稱:flockbird,代碼行數:31,代碼來源:list.php

示例3: array

        $view = View::forge('_parts/modal', array('block_attrs' => array('id' => 'modal_notice_navbar'), 'size' => 'sm', 'title' => term('notice'), 'is_display_footer_close_btn' => true));
        $view->set_safe('header_subinfo', render('notice::_parts/link_read_all', array('tag' => 'small')));
        echo $view->render();
        ?>
<script type="text/x-handlebars-template" id="notices-template">
<?php 
        echo render('notice::_parts/handlebars_template/list');
        ?>
</script>
<?php 
    }
} else {
    ?>

<?php 
    $destination = Session::get_flash('destination') ?: urlencode(Uri::string_with_query());
    $login_form = render('auth/_parts/login', array('in_popover' => true, 'destination' => $destination));
    switch (conf('auth.headerLoginForm.type')) {
        case 'popover':
            ?>
<script type="text/x-handlebars-template" id="login-template">
<?php 
            echo $login_form;
            ?>
</script>
<script>
	var source   = $("#login-template").html();
	var template = Handlebars.compile(source);
	var content = (template());
	var inputs = new Array('#form_email', '#form_password');
	loadPopover('#insecure_user_menu', '#insecure_user_popover', content, '', inputs);
開發者ID:uzura8,項目名稱:flockbird,代碼行數:31,代碼來源:site_footer_script.php


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