Kdyby/Console generování odkazu
Upozornění: Tohle vlákno je hodně staré a informace nemusí být platné pro současné Nette.
- chap
- Člen | 81
Ahoj,
nedaří se mi v Kdyby/Console vygenerovat odkaz.Následující kód mi vrátí #.
namespace App\Console;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Cron extends Command
{
/** @var \Nette\Application\Application @inject */
public $app;
protected function configure()
{
$this->setName('Cron:foo')->setDescription('.....');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$presener = $this->app->getPresenter();
$output->write($presener->link("//Homepage:default"));
}
}
v Neon:
console:
url: http://www.abcd.cz
Prosím – co tam mám špatně?
Díky Chap.