[fw-general] phpDocumentor array param

2009-05-11 Thread helderfelipe
I have an array param $args($var1=>'',$var2=>'') and i want to speficy the vars of the array in the documentation now, is this way: /** * Test * * @param array $args */ public function teste($args) { } -- View this message in context: http://www.nabble.com/ph

[fw-general] PhpDocumentor

2009-05-07 Thread helderfelipe
I can't generate de PhpDoc for my projects in zend studio for eclipse, this is de error: "Error runing phpDocumentor." what can i do ? -- View this message in context: http://www.nabble.com/PhpDocumentor-tp23438459p23438459.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Zend_db_tab relationship

2009-04-20 Thread helderfelipe
nobody knows ? -- View this message in context: http://www.nabble.com/Zend_db_tab-relationship-tp23137713p23142561.html Sent from the Zend Framework mailing list archive at Nabble.com.

[fw-general] Zend_db_tab relationship

2009-04-20 Thread helderfelipe
I want to create a method that returns a array with the main table and the references, im doing this way: public function consultaCadastro(){ # main $qry = $this->select()->from($this, array('id_cidade', 'cidade','tab_estado.sigla'));

[fw-general] input reuse

2009-04-18 Thread helderfelipe
can i create an input that i can use in multiple zend_forms ? example: a list box of country -- View this message in context: http://www.nabble.com/input-reuse-tp23113323p23113323.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] view helpers, multiple methods

2009-04-13 Thread helderfelipe
it doesn't work: Fatal error: Call to a member function foo() on a non-object -- View this message in context: http://www.nabble.com/view-helpers%2C-multiple-methods-tp23026902p23027744.html Sent from the Zend Framework mailing list archive at Nabble.com.

[fw-general] view helpers, multiple methods

2009-04-13 Thread helderfelipe
is it possible ? how i call in the view script ? -- View this message in context: http://www.nabble.com/view-helpers%2C-multiple-methods-tp23026902p23026902.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] integer null record problem

2009-04-12 Thread helderfelipe
$qry->cod_ibge = (int)$formData['cod_ibge']; thanks, it works! -- View this message in context: http://www.nabble.com/integer-null-record-problem-tp22948674p23014476.html Sent from the Zend Framework mailing list archive at Nabble.com.

[fw-general] integer null record problem

2009-04-08 Thread helderfelipe
im trying to do this $qry = $cidadeModel->createRow(); $qry->id_estado = $formData['id_estado']; $qry->cidade = $formData['cidade']; $qry->cod_ibge = $formData['cod_ibge']; $qry->save(); the field cod_ibge have null allowed in the database, but this error happens: "...Incorrect integer value...