You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1000 B
42 lines
1000 B
6 years ago
|
<?php
|
||
|
|
||
|
namespace common\modules\forms\urls;
|
||
|
|
||
|
use common\modules\forms\repositories\FormRepository;
|
||
|
use core\helpers\LanguageHelper;
|
||
|
use yii\base\BaseObject;
|
||
|
use yii\web\UrlRuleInterface;
|
||
|
use yii;
|
||
|
|
||
|
class FormsUrlRule extends BaseObject implements UrlRuleInterface
|
||
|
{
|
||
|
public $prefix = 'forms/form/send';
|
||
|
|
||
|
private $_repository;
|
||
|
|
||
|
public function __construct(FormRepository $repository, array $config = [])
|
||
|
{
|
||
|
parent::__construct($config);
|
||
|
$this->_repository = $repository;
|
||
|
}
|
||
|
|
||
|
public function parseRequest($manager, $request)
|
||
|
{
|
||
|
$uri = ltrim(LanguageHelper::processLangInUrl($request->pathInfo), '/');
|
||
|
if ($uri == $this->prefix) {
|
||
|
$id = Yii::$app->request->get('id');
|
||
|
$form = $this->_repository->get($id);
|
||
|
|
||
|
if ($form) {
|
||
|
return [$uri, ['id' => $id]];
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function createUrl($manager, $route, $params)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|