Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
defaultcontroller.php
1<?php
2
3namespace Bitrix\Main\Engine;
4
5
7{
8 public function configureActions()
9 {
10 return array(
11 'index' => array(
12 'prefilters' => array(
13 new ActionFilter\Authentication,
14 new ActionFilter\HttpMethod(array('GET')),
15 ),
16 ),
17 );
18 }
19
20 public function indexAction()
21 {
22 return "It's default behavior";
23 }
24}