Componette

Componette

vojtech-dobes

vojtech-dobes / nette-signals-trait

Learn any of your Nette components to understand signals.

download-cloud-line composer require vojtech-dobes/nette-signals-trait

For Nette Framework

Learn any of your components to understand signals!

License

New BSD

Dependencies
  • PHP 5.4
  • Nette 2.0.0

Installation

Get the source code from Github or via Composer (vojtech-dobes/nette-signals-trait).

Usage

1.. Make your component (implementation of Nette\ComponentModel\IComponent) implement Nette\Application\UI\ISignalReceiver interface.

class AutocompleteField extends Nette\Forms\Controls\TextInput implements Nette\Application\UI\ISignalReceiver

2.. Use Nextras\Signals\Receiver trait in your component .

use Nextras\Signals\Receiver;

3.. Register signals:

public function __construct()
{
	$this->__signals()->addSignal('autocomplete', function (Nette\Application\UI\Presenter $presenter, $phrase) {
		$presenter->sendJson( ... );
	});
}

Now the component supports signal autocomplete, in same way as handleAutocomplete() method would work in your component inheriting Nette\Application\UI\Control.

You will probably also need to create link to it:

$this->__signals()->createLink('autocomplete', 'testPhrase');

No release at this moment. Try to create first one.

bar-chart-fill

Statistics

download-cloud-fill
2412
star-fill
8
bug-fill
0
flashlight-fill
10.2y
price-tag-2-line

Badges

guide-fill

Dependencies

php (>=5.4)
guide-fill

Keywords

Componette Componette felix@nette.org