/* @var $this getControllerClass(); ?> */
/* @var $data getModelClass(); ?> */
?>
getAttributeLabel('{$this->tableSchema->primaryKey}')); ?>:\n";
echo "\t{$this->tableSchema->primaryKey}), array('view', 'id'=>\$data->{$this->tableSchema->primaryKey})); ?>\n\t
\n\n";
$count=0;
foreach($this->tableSchema->columns as $column)
{
if($column->isPrimaryKey)
continue;
if(++$count==7)
echo "\tgetAttributeLabel('{$column->name}')); ?>:\n";
echo "\t{$column->name}); ?>\n\t
\n\n";
}
if($count>=7)
echo "\t*/ ?>\n";
?>