Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #706 add two param for \Phalcon\Forms\Form::add #1386

Merged
merged 2 commits into from
Oct 17, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 79 additions & 7 deletions ext/forms/form.c
Original file line number Diff line number Diff line change
Expand Up @@ -639,15 +639,21 @@ PHP_METHOD(Phalcon_Forms_Form, hasMessagesFor){
* Adds an element to the form
*
* @param Phalcon\Forms\ElementInterface $element
* @param string $postion
* @param bool $type If $type is TRUE, the element wile add before $postion, else is after
* @return Phalcon\Forms\Form
*/
PHP_METHOD(Phalcon_Forms_Form, add){

zval *element, *name;
zval *element, *pos = NULL, *type = NULL, *name, *values, *elements, *key = NULL, *tmp0, *tmp1, *length, *offset, *preserve_keys;
HashTable *ah0;
HashPosition hp0;
zval **hd;
int found = 0, i = 0;

PHALCON_MM_GROW();

phalcon_fetch_params(1, 1, 0, &element);
phalcon_fetch_params(1, 1, 2, &element, &pos, &type);

if (Z_TYPE_P(element) != IS_OBJECT) {
PHALCON_THROW_EXCEPTION_STR(phalcon_forms_exception_ce, "The element is not valid");
Expand All @@ -664,11 +670,77 @@ PHP_METHOD(Phalcon_Forms_Form, add){
* Link the element to the form
*/
phalcon_call_method_p1_noret(element, "setform", this_ptr);

/**
* Append the element by its name
*/
phalcon_update_property_array(this_ptr, SL("_elements"), name, element TSRMLS_CC);

if (!pos) {
/**
* Append the element by its name
*/
phalcon_update_property_array(this_ptr, SL("_elements"), name, element TSRMLS_CC);
} else {
if (!type) {
type = PHALCON_GLOBAL(z_false);
}

if (zend_is_true(type)) {
i = -1;
}

PHALCON_INIT_VAR(values);
array_init_size(values, 1);

phalcon_array_update_zval(&values, name, &element, PH_COPY);

PHALCON_OBS_VAR(elements);
phalcon_read_property_this(&elements, this_ptr, SL("_elements"), PH_NOISY_CC);

if (Z_TYPE_P(elements) != IS_ARRAY) {
convert_to_array(elements);
}

phalcon_is_iterable(elements, &ah0, &hp0, 0, 0);
while (zend_hash_get_current_data_ex(ah0, (void**) &hd, &hp0) == SUCCESS) {
PHALCON_GET_HKEY(key, ah0, hp0);

i++;

if (PHALCON_IS_EQUAL(key, pos)) {
found = 1;
break;
}

zend_hash_move_forward_ex(ah0, &hp0);
}

if (!found) {
PHALCON_THROW_EXCEPTION_STR(phalcon_forms_exception_ce, "Array position does not exist");
return;
}

PHALCON_INIT_VAR(offset);
ZVAL_LONG(offset, i);

PHALCON_INIT_VAR(length);
ZVAL_LONG(length, 0);

preserve_keys = PHALCON_GLOBAL(z_true);

PHALCON_INIT_VAR(tmp0);
phalcon_call_func_p4(tmp0, "array_slice", elements, length, offset, preserve_keys);

PHALCON_INIT_NVAR(length);

PHALCON_INIT_VAR(tmp1);
phalcon_call_func_p4(tmp1, "array_slice", elements, offset, length, preserve_keys);

PHALCON_INIT_NVAR(elements);
array_init(elements);

phalcon_array_merge_recursive_n(&elements, tmp0);
phalcon_array_merge_recursive_n(&elements, values);
phalcon_array_merge_recursive_n(&elements, tmp1);

phalcon_update_property_this(this_ptr, SL("_elements"), elements TSRMLS_CC);
}

RETURN_THIS();
}
Expand Down
2 changes: 2 additions & 0 deletions ext/forms/form.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ ZEND_END_ARG_INFO()

ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_add, 0, 0, 1)
ZEND_ARG_INFO(0, element)
ZEND_ARG_INFO(0, postion)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()

ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_render, 0, 0, 1)
Expand Down
18 changes: 18 additions & 0 deletions unit-tests/FormsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -485,4 +485,22 @@ public function testIssue1210()
$expected = '<label for="test">Test</label>';
$this->assertEquals($actual, $expected);
}

public function testIssue706()
{
$form = new \Phalcon\Forms\Form();
$form->add(new \Phalcon\Forms\Element\Text('name'));

$form->add(new \Phalcon\Forms\Element\Text('before'), 'name', true);
$form->add(new \Phalcon\Forms\Element\Text('after'), 'name');

$data = array('before', 'name', 'after');
$result = array();

foreach ($form as $element) {
$result[] = $element->getName();
}

$this->assertEquals($result, $data);
}
}