1. PHP / Говнокод #21509

    −22

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    <?php
    //Контроллер
    $response = call_external_api($data['form']->getRequestParams());
    $data['response'] = $this->formatResponse($response);
    if (!empty($data['response'])) {
    	Yii::app()->user->setFlash('response', $data['response']);
    }
    
    $this->render('index', $data);
    
    //Шаблон (smarty), в самом верху
    {if $response = Yii::app()->user->getFlash('response')}
    	{$this->renderPartial('some_tpl', ['response' => $response])}
    {/if}

    Yii 1.1, перезатирание $response

    Запостил: M-A-X, 21 Октября 2016

    Комментарии (1) RSS

    Добавить комментарий