本文整理汇总了PHP中Nette\Application\UI\Form::extensionMethod方法的典型用法代码示例。如果您正苦于以下问题:PHP Form::extensionMethod方法的具体用法?PHP Form::extensionMethod怎么用?PHP Form::extensionMethod使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Nette\Application\UI\Form
的用法示例。
在下文中一共展示了Form::extensionMethod方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: register
public static function register()
{
if (!self::$registered) {
Form::extensionMethod('addIntegerPicker', __NAMESPACE__ . '\\IntegerPicker::addIntegerPicker');
self::$registered = true;
}
}
示例2: function
<?php
namespace App\Presenters;
use Nette, Nette\Application\Application, Nette\Utils\Arrays, Nette\Utils\Finder, Nette\Http\Request, Nette\Utils\Image, Nette\Utils\Strings, Nette\Application\UI\Form, Nette\Forms\Controls, Nette\Caching\Cache;
Nette\Application\UI\Form::extensionMethod('addMultiUpload', function (\Nette\Application\UI\Form $form, $name, $label = NULL) {
$form[$name] = new \Nette\Forms\Controls\MultiUploadControl($label);
return $form[$name];
});
class FotogaleriePresenter extends Nette\Application\UI\Presenter
{
/** @var Nette\Database\Context */
private $database;
public $images;
public $fileUrl;
public $imgStranka;
public $totalPosts;
const GAL_PATH = 'gallery/';
const PO = 6;
//pocet oobrazku na stranku
public function __construct(Nette\Database\Context $database)
{
$this->database = $database;
}
public function checkDir($fileUrl)
{
if (file_exists($fileUrl)) {
$this->flashMessage('Toto Album již existuje.', 'alert-danger');
return false;
} else {
$this->flashMessage('Album bylo úspěšně vytvořeno.', 'alert-success');
示例3: __construct
public function __construct($parent = null, $name = null)
{
parent::__construct($parent, $name);
Form::extensionMethod('addIntegerPicker', function (Form $form) {
});
}