0

私はこれらのテクノロジーに慣れていないので、これを行うのが最も簡単な方法ではないかもしれませんが、フォームを作成して ID 値を要求したいと考えています。送信が押されたら、その ID を取得し、外部 XML 呼び出しを行い、XML データを表示します。単一の URL でこれを行うことができるかどうかに固執しています: https://plesk.local:8443/modules/example/index.php/index/form。フォームとリスト データの両方を同じページに配置したいので、ID を更新し、送信を押して、新しいデータを何度も確認できます...

Plesk に含まれる基本的な「Example1」を変更しようとしています。私はそれを変更してテストすることができますが、POST がどのように機能するかについては正確にこだわっています。理想的には、同じ $form ビューに pm_Form_Simple と pm_View_List_Simple の両方を持つ $this->view->form が必要です (これが理にかなっている場合)。

1) 同じ URL を使用して、そこから POST/GET を処理できますか? 2) 同じページにフォームと単純なリストの両方を配置できますか?

どうも!!!!!

サンプルコントローラーは次のとおりです。

<?php

class IndexController extends pm_Controller_Action
{
    public function init()
    {
        parent::init();

        // Init title for all actions
        $this->view->pageTitle = 'Example Module';

        // Init tabs for all actions
        $this->view->tabs = array(
            array(
                'title' => 'Form',
                'action' => 'form',
            ),
            array(
                'title' => 'List',
                'action' => 'list',
            ),
        );
    }

    public function indexAction()
    {
        // Default action will be formAction
        $this->_forward('form');
    }

    public function formAction()
    {
        // Init form here
        $form = new pm_Form_Simple();
        $form->addElement('text', 'exampleText', array(
            'label' => 'Example Text',
            'value' => pm_Settings::get('exampleText'),
            'required' => true,
            'validators' => array(
                array('NotEmpty', true),
            ),
        ));

        $form->addControlButtons(array(
            'cancelLink' => pm_Context::getModulesListUrl(),
        ));

        if ($this->getRequest()->isPost() && $form->isValid($this->getRequest()->getPost())) {

            // Form proccessing here
            pm_Settings::set('exampleText', $form->getValue('exampleText'));

            $this->_status->addMessage('info', 'Data was successfully saved.');
            $this->_helper->json(array('redirect' => pm_Context::getBaseUrl()));
        }

    # NEW - start
    if (0)
    {
        # I want to be back here after the POST
        # Want to show the list here after I take the POST parameter and do an external XML call...
        $list = $this->_getListRandom();
        $this->view->list = $list;
    }
    # NEW - end

        $this->view->form = $form;
    }

    public function listAction()
    {
        $list = $this->_getListRandom();

        // List object for pm_View_Helper_RenderList
        $this->view->list = $list;
    }

    public function listDataAction()
    {
        $list = $this->_getListRandom();

        // Json data from pm_View_List_Simple
        $this->_helper->json($list->fetchData());
    }

    private function _getListRandom()
    {
        $data = array();
        #$iconPath = pm_Context::getBaseUrl() . 'images/icon_16.gif';
        for ($i = 0; $i < 15; $i++) {
            $data[] = array(
                'column-1' => '<a href="#">' . (string)rand() . '</a>',
                'column-2' => (string)rand(),
            );
        }

        $list = new pm_View_List_Simple($this->view, $this->_request);
        $list->setData($data);
        $list->setColumns(array(
            'column-1' => array(
                'title' => 'Random with link',
                'noEscape' => true,
            ),
            'column-2' => array(
                'title' => 'Random with image',
                'noEscape' => true,
            ),
        ));
        // Take into account listDataAction corresponds to the URL /list-data/
        $list->setDataUrl(array('action' => 'list-data'));

        return $list;
    }
}
4

1 に答える 1