This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Model; | |
class Mapper extends \LeanMapper\DefaultMapper implements ITranslatingMapper | |
{ | |
/** | |
* @return string | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Vykreslení přehledu produktů v e-shopu | |
* | |
* @var Filter $filter Filtr, který omezuje množinu produktů podle nastavení uživatele | |
* @var int|null $limit Počet produktů zobrazených na stránce | |
* @var VisualPaginatorHelper $visualPaginatorHelper Jednoduchý helper, který pomáhá inicialzovat Paginator (Nette) | |
* @var VisualPaginator $visualPaginator VisualPaginator (Nette) | |
* @var Template $template Šablona view |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Nette\Neon\Neon; | |
use Schematic\Entries; | |
use Schematic\Entry; | |
// composer.json | |
// { | |
// "require": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var constants = require('./constants'); | |
var Applicant = function (type) { | |
this.type = type; | |
this.laboratoryId = null; | |
this.institution = null; |