Хотелось бы все в одном месте держать
if ( isset($_GET['action']) ) {
$actionName = $_GET['action'];
} else {
$actionName = 'index';
}
$actionName = $_GET['action'] ?? 'index';
(condition) ? /* value to return if condition is true */
: /* value to return if condition is false */ ;
$a = 1;
echo $a === 1 ? 'Переменная $a равна 1' : 'Переменная $a не равна 1';
/app/library/widget/
)namespace Library\Widget;
use Phalcon\Mvc\User\Component;
class Widget extends Component
{
...
public function output ($widget) { // к примеру
...
Форма:
{{ widget.output('Form') }}
{% Include('shared/form_view') %}
//или
{{ partial('shared/form_view') }}
{{ partial('shared/form_view', ['show_submit':true]) }}