Form->input('expenseData', array('type' => 'hidden', 'id' => 'expenseData', 'value' => $expenseData)); echo $this->Form->input('justCreated', array('type' => 'hidden', 'id' => 'justCreated', 'value' => $justCreated)); echo $this->Form->create(null, array('id' => 'loadForm', 'url' => array('controller' => 'Expense', 'action' => 'loadTab'))); echo $this->Form->end(); echo $this->Form->create(null, array('id' => 'permissionForm', 'url' => array('controller' => 'GroupSetting', 'action' => 'addPermission'))); echo $this->Form->end(); ?>
|
|
|
|
'Mark Settle'
Form->create(null, array('id' => 'viewLogForm', 'return' => false, 'url' => array('controller' => 'Expense', 'action' => 'displayLog'))); ?> Form->hidden('logExpenseId'); ?>
Form->input('fromDate', array('readonly' => true, 'lable' => false)); ?>
Form->input('toDate', array('readonly' => true, 'lable' => false)); ?>
Form->end('View Log'); ?>
Form->create(null, array('id' => 'sendEmailForm', 'url' => array('controller' => 'Expense', 'action' => 'sendEmail'))); echo $this->Form->hidden('emailExpenseTitle'); echo $this->Form->hidden('emailUniqueURL'); ?>
:Form->input('email', array('label' => false, 'email' => '', 'length' => '200px', 'required' => 'true', 'style' => 'width:240px; height:20px;')); ?>
Form->end('Send'); } else { echo '
'; } ?>
General Information
Form->create(null, array('id' => 'updateGroupExpenseForm', 'url' => array('controller' => 'Home', 'action' => 'updateGroupExpense'))); ?>
Form->hidden('expenseid'); echo $this->Form->hidden('version'); ?>
Form->input('title', array('label' => false, 'title' => 'Please provide title', 'length' => '200px', 'required' => 'false')); ?>
Form->input('currency', array('label' => false)); ?>
Form->textarea('description', array('rows' => '5', 'cols' => '45')); ?>
Form->end('Save'); } else { echo '
'; } ?>
:
Form->create(null, array('id' => 'expenseForm', 'url' => array('controller' => 'Expense', 'action' => 'changeGroupExpense'))); echo $this->Form->end(); echo $this->Form->create(null, array('id' => 'participantForm', 'url' => array('controller' => 'Expense', 'action' => 'changeParticipant'))); echo $this->Form->end(); ?> Form->create("Expense", array('target' => 'blank', 'id' => 'printForm', 'url' => array('controller' => 'Expense', 'action' => 'printExpense'))); echo $this->Form->input('printExpenseList', array('type' => 'hidden', 'id' => 'printExpenseList')); echo $this->Form->input('printExpense', array('type' => 'hidden', 'id' => 'printExpense')); echo $this->Form->input('printBalance', array('type' => 'hidden', 'id' => 'printBalance')); echo $this->Form->input('printNames', array('type' => 'hidden', 'id' => 'printNames')); echo $this->Form->input('printOption', array('type' => 'hidden', 'id' => 'printOption')); echo $this->Form->end(); ?>