22 lines
400 B
PHP
22 lines
400 B
PHP
<?php
|
|
|
|
namespace Garradin;
|
|
|
|
use Garradin\Plugin\Materiels\Output;
|
|
use Garradin\Plugin\Materiels\Equipment;
|
|
use Garradin\Utils;
|
|
|
|
require_once __DIR__ . '/../_inc.php';
|
|
|
|
$output = new Output;
|
|
$eqmt = new Equipment;
|
|
|
|
$csrf_key = 'add_output';
|
|
|
|
$cancel_link = PLUGIN_URL . 'sorties/index.php';
|
|
|
|
|
|
$tpl->assign(compact('csrf_key'));
|
|
|
|
$tpl->display(PLUGIN_ROOT . '/templates/sorties/pas_proprietaire.tpl');
|