CrudKit\Pages\BasicDataPage::handle_get_form_values PHP 메소드

handle_get_form_values() 공개 메소드

    public function handle_get_form_values()
    {
        $url = new UrlHelper();
        $item_id = $url->get("item_id", null);
        if ($item_id === "_ck_new") {
            return array('type' => 'json', 'data' => array('schema' => $this->dataProvider->getSchema(), 'values' => array()));
        }
        return array('type' => 'json', 'data' => array('schema' => $this->dataProvider->getSchema(), 'values' => $this->dataProvider->getRow($item_id)));
    }