在FuelPHP中使用Fieldset类和ORM

时间:2012-06-20 12:40:42

标签: php fuelphp

首先:抱歉我的长信息。

我正在尝试学习Fuel,但我在Fieldset类和Orm方面遇到了一些问题。 我根据我的数据库创建了一个扩展ORM的模型,以获得自动生成的表单。

我的模特

class Model_Product extends \Orm\Model
{
    protected static $_table_name = 'products';

    protected static $_properties = array(
        'id' => array(
            'data_type' => 'int'
        ),
        'name' => array(
            'data_type' => 'varchar',
            'label' => 'Name',
            'validation' => array(
                'required', 'trim', 'max_length'=>array(30), 'min_length'=>array(3)
            ),
        ),
        'description' => array(
            'data_type' => 'varchar',
            'label' => 'Description',
            'validation' => array(
                'max_length' => array(290)
            ),
            'form' => array(
                'type' => 'textarea'
            ),
        ),
        'price' => array(
            'data_type' => 'integer',
            'label' => 'Price',
            'validation' => array(
                'required', 'trim', 'valid_string' => array('numeric','dots')
            ),
        ),
        'pic' => array(
            'data_type' => 'varchar',
            'label' => 'Path to the pic',
            'validation' => array(
                'required', 'trim'
            ),
        ),
        'registered' => array(
            'data_type' => 'date',
            'label' => 'Registration date',
            'validation' => array(
                'required', 'trim'
            ) //'valid_string' => array('numeric','dashes')
        ),
    );
} //end of class Model_Product

然后我创建了将验证表单的控制器。

来自控制器的我的功能

function action_add() 
{ 
    $fieldset = Fieldset::forge('add_product')->add_model('Model_Product')->repopulate();

    $form = $fieldset->form();

    $form->add('submit', '', array('type' => 'button', 'value' => 'Add item', 'class' => 'button-link' ));

    $validation = $fieldset->Validation();

    if($validation->run() === true) 
    { 
        $fields = $fieldset->validated();

        //create a new Product, with validated fields 
        $product = new Model_Product;

        $product->name = $fields['name']; 
        $product->description = $fields['description']; 
        $product->price = $fields['price'];
        $product->pic = $fields['pic']; 
        $product->registered = $fields['registered'];

        try 
        { 
            //if the product is successfully inserted in the database
            if($product->save()) 
            { 
                Session::set_flash('success', 'Product successfully added !');
                \Response::redirect('products/product_details/'.$product->id); 
            }
        } 
        catch(Exception $e) 
        { 
            Session::set_flash('error', 'Unable to save the product into the database !'.$e->getMessage()); 
        }
    } 
    //If the validation doesn't pass 
    else 
    { 
        Session::set_flash('error', $fieldset->show_errors()); 
    }

    $this->template->set('content', $form->build(), false);

} // end of method add()

我的第一个问题: 我在控制器的功能中如何以及在哪里可以添加一个带有特定类的'fieldset'标签,以“美化”我自动生成的表单? 我们说

<fieldset class="add_product">

第二个问题: 为了正确验证de'price'字段,我需要做什么,因为在MySQL中设置为十进制(5,2),但是当我尝试使用我的实际验证规则进行验证时,它不会通过(它仅适用于整数值例如:42,但不包含小数例:42.35)。我试图将类型从“整数”更改为“双精度”,但它不起作用。

如果你能指出一些关于我的问题的具体文件,我可能还没有读过,请随意。

加布里埃尔

1 个答案:

答案 0 :(得分:1)

我可以回答第一个问题要更改自动生成的表单,您需要将fuel/core/config/form.php复制到fuel/app/config目录并编辑此文件以满足您的需求。