Как получить гет-параметр в файле с описанием формы
То есть $_GET['{имя параметра}'] только в соответствии с правилами системы.
docs.instantcms.ru/dev/controllers/forms#загрузка-формы
В акшине — $form = $this->getForm('content', array('curent_type' => $curent_type));
form_content.php — isset($curent_type) — FALSE
// Если форма была отправлена if ($is_submitted) { // Получаем (request) и парсим (parse) данные из формы $data = $form->parse($this->request, $is_submitted); }
$curent_type = cmsCore::getInstance()->request->get('curent_type');