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


PHP FormBuilder::close方法代碼示例

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


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

示例1: close

 public function close()
 {
     $results = '';
     if (Generator::END == $this->gen->getCodePosition()) {
         $results .= $this->generateClientValidatorCode();
     }
     $results .= parent::close();
     return $results;
 }
開發者ID:bignerdranch,項目名稱:client-validation-generator,代碼行數:9,代碼來源:FormBuilder.php

示例2: close

 /**
  * Close the current form.
  *
  * @return string 
  * @static 
  */
 public static function close()
 {
     return \Collective\Html\FormBuilder::close();
 }
開發者ID:alvarobfdev,項目名稱:BaseCRUDproject,代碼行數:10,代碼來源:_ide_helper.php

示例3: close

 /**
  * Reset and close the form.
  *
  * @return string
  */
 public function close()
 {
     $this->type = null;
     $this->leftColumnClass = $this->rightColumnClass = null;
     return $this->form->close();
 }
開發者ID:bnbwebexpertise,項目名稱:laravel-bootstrap-form,代碼行數:11,代碼來源:BootstrapForm.php

示例4: close

 /**
  * Closes form and reset $this->rules
  *
  * @see Collective\Html\FormBuilder
  */
 public function close()
 {
     $this->resetValidation();
     return parent::close();
 }
開發者ID:laravel-ardent,項目名稱:laravalid,代碼行數:10,代碼來源:FormBuilder.php

示例5: close

 /**
  * Return the closing form tag.
  *
  * @return string
  */
 public function close()
 {
     return $this->html->close();
 }
開發者ID:jacksun101,項目名稱:streams-platform,代碼行數:9,代碼來源:FormPresenter.php

示例6: function

    $out .= '<button data-toggle="tooltip" data-placement="top" data-original-title="' . $tooltip . '" type="submit" data-id="' . $id . '" class="btn btn-danger btn-sm ' . ($icon ? 'btn-fw' : '') . '">';
    $out .= $icon ? '<i class="fa fa-times"></i> &nbsp;' . $text : $text;
    $out .= '</button>';
    $out .= Form::close();
    return $out;
});
Form::macro('undelete', function ($route, $id, $text = '', $tooltip = false) {
    $model = explode('.', $route);
    $model = ucfirst(substr($model[1], 0, -1));
    $tooltip = $tooltip ? $tooltip : 'Reativar ' . $model;
    $out = Form::open(['route' => [$route . '.undestroy', $id], 'method' => 'PUT', 'data-confirm' => $id . '-ativar', 'style' => 'display: inline-block']);
    $out .= '<button data-toggle="tooltip" data-placement="top"
        data-original-title="' . $tooltip . '" type="submit" data-confirm="' . $id . '-ativar" class="btn btn-warning btn-fw btn-sm">';
    $out .= '<i class="fa fa-undo"></i> &nbsp;' . $text;
    $out .= '</button>';
    $out .= Form::close();
    return $out;
});
Form::macro('edit', function ($route, $id, $text = '', $tooltip = false) {
    $model = explode('.', $route);
    $model = ucfirst(substr($model[1], 0, -1));
    $tooltip = $tooltip ? $tooltip : 'Editar ' . $model;
    $out = '<a data-toggle="tooltip" data-placement="top" data-original-title="' . $tooltip . '" href="' . route($route . '.edit', $id) . '" class="btn btn-fw btn-success btn-sm">';
    $out .= '<i class="fa fa-pencil"></i> &nbsp;' . $text;
    $out .= '</a>';
    return $out;
});
HTML::macro('dataBr', function ($data_from_bd) {
    return Carbon\Carbon::createFromFormat('Y-m-d', $data_from_bd)->format('d/m/Y');
});
HTML::macro('cancel', function ($route, $title = 'Cancelar', $tooltip = '') {
開發者ID:brunoti,項目名稱:html-macros,代碼行數:31,代碼來源:macros.php


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