Skip to content

Commit

Permalink
Merge pull request #1273 from spekary/bugfix-strObjectName2
Browse files Browse the repository at this point in the history
bugfix-strObjectName
  • Loading branch information
spekary committed Jul 8, 2017
2 parents 86eb232 + 48b4b04 commit 9695e47
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions includes/codegen/templates/db_orm/forms/_qform_list.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,13 @@

*/
class <?= $objTable->ClassName ?>ListForm extends QForm {
/** @var NavPanel */
protected $pnlNav;
/** @var <?= $objTable->ClassName ?>ListPanel */
protected $pnl<?= $objTable->ClassName ?>List;
/** @var string */
protected $strObjectName;
/** @var string */
protected $strObjectNamePlural;

// Override Form Event Handlers as Needed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@
protected $btnCancel;
/** @var <?= QCodeGen::$DefaultButtonClass ?> */
protected $btnDelete;

/** @var string */
protected $strObjectName;
/** @var string */
protected $strObjectNamePlural;

0 comments on commit 9695e47

Please sign in to comment.