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


PHP access::csrf_form_field方法代碼示例

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


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

示例1: defined

<?php

defined("SYSPATH") or die("No direct script access.");
?>
<form method="post" action="<?php 
echo url::site("admin/identity/change");
?>
">
  <?php 
echo access::csrf_form_field();
?>
  <?php 
echo form::hidden("provider", $new_provider);
?>

  <p><span class="ui-icon ui-icon-alert" style="float: left; margin:0 7px 20px 0;"></span>
  <?php 
echo t("Are you sure you want to change your Identity Provider? Continuing will delete all existing users.");
?>
  </p>
</form>

開發者ID:ChrisRut,項目名稱:gallery3,代碼行數:21,代碼來源:admin_identity_confirm.html.php

示例2:

        <?= $string["source"] ?>
        <? endif; ?>
      </li>
      <? endforeach; ?>
    </ul>

    <?= $l10n_search_form ?>
  </div>
  <div id="l10n-client-string-editor">
    <div class="source">
      <p class="source-text"></p>
      <p id="source-text-tmp-space" style="display:none"></p>
    </div>
    <div class="translation">
      <form method="post" action="<?= url::site("l10n_client/save") ?>" id="gL10nClientSaveForm">
        <?= access::csrf_form_field() ?>
        <?= form::hidden("l10n-message-key") ?>
        <?= form::textarea("l10n-edit-translation", "", ' rows="5" class="translationField"') ?>
        <div id="plural-zero" class="translationField hidden">
          <label for="l10n-edit-plural-translation-zero">[zero]</label>
          <?= form::textarea("l10n-edit-plural-translation-zero", "", ' rows="2"') ?>
        </div>
        <div id="plural-one" class="translationField hidden">
          <label for="l10n-edit-plural-translation-one">[one]</label>
          <?= form::textarea("l10n-edit-plural-translation-one", "", ' rows="2"') ?>
        </div>
        <div id="plural-two" class="translationField hidden">
          <label for="l10n-edit-plural-translation-two">[two]</label>
          <?= form::textarea("l10n-edit-plural-translation-two", "", ' rows="2"') ?>
        </div>
        <div id="plural-few" class="translationField hidden">
開發者ID:HelixiR,項目名稱:gallery3,代碼行數:31,代碼來源:l10n_client.html.php


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