本文整理汇总了PHP中Application_Form_FrmMessage类的典型用法代码示例。如果您正苦于以下问题:PHP Application_Form_FrmMessage类的具体用法?PHP Application_Form_FrmMessage怎么用?PHP Application_Form_FrmMessage使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Application_Form_FrmMessage类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: editAction
public function editAction()
{
$_dbmodel = new Accounting_Model_DbTable_DbGeneraljurnal();
if ($this->getRequest()->isPost()) {
$_data = $this->getRequest()->getPost();
try {
$_db = new Accounting_Model_DbTable_DbJournal();
$_db->upDateJournal($_data);
Application_Form_FrmMessage::Sucessfull("INSERT_SUCCESS", "/accounting/generaljurnal");
} catch (Exception $e) {
Application_Form_FrmMessage::message("INSERT_FAIL");
Application_Model_DbTable_DbUserLog::writeMessageError($e->getMessage());
}
}
$id = $this->getRequest()->getParam('id');
$row = $_dbmodel->getjurnalEntryById($id);
$this->view->jdetail = $_dbmodel->getjurnalEntryDetail($id);
$fm = new Accounting_Form_FrmGeneraljurnal();
$frm = $fm->FrmGeneraljurnal($row);
Application_Model_Decorator::removeAllDecorator($frm);
$this->view->frm_fixedasset = $frm;
$db = new Accounting_Model_DbTable_DbJournal();
$this->view->row_parents = $db->getAllParrentAccount(1);
$this->view->row_accountname = $db->getAllParrentAccount(1, 1);
}
示例2: editAction
public function editAction()
{
$id = $this->getRequest()->getParam('id');
$db = new Other_Model_DbTable_DbCommune();
if ($this->getRequest()->isPost()) {
$_data = $this->getRequest()->getPost();
//print_r($_data);exit();
try {
$db->addCommune($_data, $id);
Application_Form_FrmMessage::Sucessfull($this->tr->translate("EDIT_SUCCESS"), self::REDIRECT_URL . '/commune/');
} catch (Exception $e) {
Application_Form_FrmMessage::message($this->tr->translate("EDIT_FAIL"));
$err = $e->getMessage();
Application_Model_DbTable_DbUserLog::writeMessageError($err);
}
}
$row = $db->getCommuneById($id);
$this->view->row = $row;
$fm = new Other_Form_FrmCommune();
$frm = $fm->FrmAddCommune($row);
Application_Model_Decorator::removeAllDecorator($frm);
$this->view->frm_commune = $frm;
$db = new Application_Model_DbTable_DbGlobal();
$this->view->district = $db->getAllDistricts();
}
示例3: indexAction
public function indexAction()
{
try {
$db = new Tellerandexchange_Model_DbTable_DbSpread();
if ($this->getRequest()->isPost()) {
$search = $this->getRequest()->getPost();
} else {
$search = array('client_id' => -1, 'status' => -1, 'from_date' => date('Y-m-d'), 'to_date' => date('Y-m-d'));
}
$rs_rows = $db->getAllSpreadList($search);
$glClass = new Application_Model_GlobalClass();
$rs_rows = $glClass->getImgActive($rs_rows, BASE_URL, true);
$list = new Application_Form_Frmtable();
$collumns = array("ពីប្រាក់", "ទៅប្រាក់", "ទិញចូល", "លក់ចេញ", "អត្រាកណ្តាល", "កាលបរិច្ឆេទ", "STATUS");
$link = array('module' => 'tellerandexchange', 'controller' => 'Spread', 'action' => 'edit');
$this->view->list = $list->getCheckList(0, $collumns, $rs_rows, array('buy_type' => $link, 'sell_type' => $link, 'rate_in' => $link, 'rate_out' => $link));
} catch (Exception $e) {
Application_Form_FrmMessage::message("Application Error");
echo $e->getMessage();
Application_Model_DbTable_DbUserLog::writeMessageError($e->getMessage());
}
$frm = new Application_Form_FrmAdvanceSearch();
$frm = $frm->AdvanceSearch();
Application_Model_Decorator::removeAllDecorator($frm);
$this->view->frm_search = $frm;
}
示例4: editAction
function editAction()
{
$db = new Global_Model_DbTable_DbGroup();
if ($this->getRequest()->isPost()) {
try {
$data = $this->getRequest()->getPost();
$db->AddNewGroup($data);
if (!empty($data['save_close'])) {
Application_Form_FrmMessage::Sucessfull("ការបញ្ចូលជោគជ័យ !", '/global/group');
}
Application_Form_FrmMessage::message("ការបញ្ចូលជោគជ័យ !");
} catch (Exception $e) {
Application_Form_FrmMessage::message("ការបញ្ចូលមិនជោគជ័យ");
$err = $e->getMessage();
Application_Model_DbTable_DbUserLog::writeMessageError($err);
}
}
$id = $this->getRequest()->getParam("id");
$this->view->row = $db->getGroupById($id);
$db = new Application_Model_DbTable_DbGlobal();
$this->view->degree = $db->getAllDegree();
$faculty = $db->getAllMajor();
array_unshift($faculty, array('id' => -1, 'name' => 'Add New'));
$this->view->faculty = $faculty;
$room = $db->getAllRoom();
array_unshift($room, array('id' => -1, 'name' => 'Add New'));
$this->view->room = $room;
$db = new Application_Model_GlobalClass();
$this->view->subject_opt = $db->getTeachersunjectOption();
$tsub = new Global_Form_FrmTeacher();
$frm_techer = $tsub->FrmTecher();
Application_Model_Decorator::removeAllDecorator($frm_techer);
$this->view->frm_techer = $frm_techer;
}
示例5: editAction
function editAction()
{
$db_deposite = new Capital_Model_DbTable_DbCapital();
if ($this->getRequest()->isPost()) {
$_data = $this->getRequest()->getPost();
try {
if (isset($_data["save"])) {
$db_deposite->updateCapital($_data);
Application_Form_FrmMessage::Sucessfull("ការបញ្ចូលជោគជ័យ !", '/capital/capital/add');
} elseif (isset($_data["save_close"])) {
$db_deposite->updateCapital($_data);
Application_Form_FrmMessage::Sucessfull("ការបញ្ចូលជោគជ័យ !", '/capital/capital');
} else {
Application_Form_FrmMessage::redirectUrl("/capital/capital");
}
} catch (Exception $e) {
Application_Form_FrmMessage::message("ការបញ្ចូលមិនជោគជ័យ");
$err = $e->getMessage();
Application_Model_DbTable_DbUserLog::writeMessageError($err);
}
}
$id = $this->getRequest()->getParam("id");
$row = $db_deposite->getpartnerById($id);
$deposite = new Capital_Form_FrmCapitale();
$frm = $deposite->frmCapital($row);
Application_Model_Decorator::removeAllDecorator($frm);
$this->view->frm = $frm;
}
示例6: editAction
public function editAction()
{
$db_model = new Driverguide_Model_DbTable_Dbvehicleprice();
$id = $this->getRequest()->getParam('id');
if ($this->getRequest()->isPost()) {
$data = $this->getRequest()->getPost();
$db = new Driverguide_Model_DbTable_DbTaxiprice();
try {
if (!empty($data['save_close'])) {
$db->updateVehicletaxi($data);
Application_Form_FrmMessage::Sucessfull("INSERT_SUCCESSS", "/driverguide/taxiprice");
}
} catch (Exception $e) {
//echo $e->getMessage();exit();
Application_Form_FrmMessage::message("Application Error");
Application_Model_DbTable_DbUserLog::writeMessageError($e->getMessage());
}
}
$db = new Application_Model_GlobalClass();
$this->view->pro_option = $db->getAllLocationOption();
$db = new Application_Model_DbTable_DbGlobal();
$this->view->rs_tax = $db->getAllTax();
$this->view->vehicle = $db_model->getVehecleName();
$db = new Driverguide_Model_DbTable_DbTaxiprice();
$row = $this->view->row_taxi = $db->getVehicleTaxiById($id);
//print_r($row);exit();
}
示例7: addAction
function addAction()
{
if($this->getRequest()->isPost()){
$_data = $this->getRequest()->getPost();
try {
$_dbmodel = new Loan_Model_DbTable_DbLoanIL();
$_dbmodel->addNewLoanIL($_data);
// Application_Form_FrmMessage::Sucessfull("INSERT_SUCCESS","/loan/index/index");
}catch (Exception $e) {
echo $err =$e->getMessage();exit();
Application_Form_FrmMessage::message("INSERT_FAIL");
$err =$e->getMessage();
Application_Model_DbTable_DbUserLog::writeMessageError($err);
}
}
$frm = new Loan_Form_FrmLoan();
$frm_loan=$frm->FrmAddLoan();
Application_Model_Decorator::removeAllDecorator($frm_loan);
$this->view->frm_loan = $frm_loan;
$frmpopup = new Application_Form_FrmPopupGlobal();
$this->view->frmpupopclient = $frmpopup->frmPopupClient();
$this->view->frmPopupCO = $frmpopup->frmPopupCO();
$this->view->frmPopupZone = $frmpopup->frmPopupZone();
$this->view->frmPopupCommune = $frmpopup->frmPopupCommune();
$this->view->frmPopupDistrict = $frmpopup->frmPopupDistrict();
$this->view->frmPopupVillage = $frmpopup->frmPopupVillage();
}
示例8: editAction
public function editAction()
{
if ($this->getRequest()->isPost()) {
$_data = $this->getRequest()->getPost();
$db = new Menu_Model_DbTable_DbCombo();
try {
$db->updateMenuCombo($_data);
if (!empty($_data['btnsaveclose'])) {
Application_Form_FrmMessage::message('កាកែរប្រែបានជោគជ័យ');
} else {
Application_Form_FrmMessage::Sucessfull('កាកែរប្រែបានជោគជ័យ', self::REDIRECT_URL . '/index');
}
} catch (Exception $e) {
Application_Form_FrmMessage::message("កាកែរប្រែមិនបានជោគជ័យ");
$err = $e->getMessage();
Application_Model_DbTable_DbUserLog::writeMessageError($err);
}
}
$id = $this->getRequest()->getParam("id");
$db_combo_type = new Menu_Model_DbTable_DbCombo();
$row = $db_combo_type->editAllRowCombo($id);
$this->view->rows = $row;
$frm = new Menu_Form_FrmMenuCombo();
$this->view->form = $frm->FrmMenu($row);
}
示例9: editAction
public function editAction()
{
$db = new Group_Model_DbTable_DbReturnCollteral();
if($this->getRequest()->isPost()){
$data=$this->getRequest()->getPost();
try {
$db->updateReturnCollteral($data);
Application_Form_FrmMessage::Sucessfull('ការបញ្ចូលជោគជ័យ', self::REDIRECT_URL . '/Returncollteral/index');
} catch (Exception $e) {
$this->view->msg = 'ការបញ្ចូលមិនជោគជ័យ';
}
}
$id = $this->getRequest()->getParam('id');
if(empty($id)){
Application_Form_FrmMessage::Sucessfull($this->tr->translate('EDIT_SUCCESS'), self::REDIRECT_URL);
}
$row = $db->getReturnCollteralbyid($id);
$this->view->row = $row;
$this->view->rows = $db->getAllReturnCollateralDetail($id);
$fm = new Group_Form_Frmchangecollteral();
$frm = $fm->FrmChangeCollteral($row);
Application_Model_Decorator::removeAllDecorator($frm);
$this->view->frm_changeCollteral = $frm;
$db = new Application_Model_DbTable_DbGlobal();
$this->view->allclient = $db->getAllClient();
$this->view->allclient_number = $db->getAllClientNumber();
$db = new Application_Model_GlobalClass();
$this->view->collect_option = $db->getCollecteralOption();
$this->view->owner_type = $db->getCollecteralTypeOption();
}
示例10: updateCustomerAction
public function updateCustomerAction()
{
if ($this->getRequest()->isPost()) {
try {
$post = $this->getRequest()->getPost();
$customer = new sales_Model_DbTable_DbCustomer();
$customer->updateCustomer($post);
$this->_redirect('/sales/customer/index');
} catch (Exception $e) {
Application_Form_FrmMessage::message("Update customer failed !");
}
}
$id = $this->getRequest()->getParam('id') ? $this->getRequest()->getParam('id') : '0';
$sql = "SELECT c.customer_id,c.type_price,c.cust_name, c.add_remark, c.contact_name,c.add_name, c.phone, \n\t\t\t\t\tc.fax,c.email, c.website,c.customer_remark,c.is_active\n\t\t\t\t\tFROM tb_customer AS c,tb_price_type as tp\n\t\t\t\t\tWHERE tp.type_id=c.type_price\n\t\t\t\t\tAND c.customer_id = " . $id . " LIMIT 1";
$db = new Application_Model_DbTable_DbGlobal();
$row = $db->getGlobalDbRow($sql);
// lost item info
$formStock = new sales_Form_FrmVendor($row);
$formStockEdit = $formStock->AddCustomerForm($row);
Application_Model_Decorator::removeAllDecorator($formStockEdit);
// omit default zend html tag
$this->view->customer_frm = $formStockEdit;
//control action
$formControl = new Application_Form_FrmAction(null);
$formViewControl = $formControl->AllAction(null);
Application_Model_Decorator::removeAllDecorator($formViewControl);
$this->view->control = $formViewControl;
}
示例11: editAction
public function editAction()
{
$db_model = new Driverguide_Model_DbTable_Dbvehicleprice();
if ($this->getRequest()->isPost()) {
$data = $this->getRequest()->getPost();
try {
$id = $db_model->updateVehicleRental($data);
Application_Form_FrmMessage::Sucessfull("Edit Success", "/driverguide/vehicleprice");
} catch (Exception $e) {
Application_Form_FrmMessage::message("Application Error");
Application_Model_DbTable_DbUserLog::writeMessageError($e->getMessage());
}
}
$db = new Application_Model_GlobalClass();
$this->view->package_option = $db->getAllPackageDayOption();
$db = new Application_Model_DbTable_DbGlobal();
$this->view->rs_tax = $db->getAllTax();
$this->view->vehicle = $db_model->getVehecleName();
$id = $this->getRequest()->getParam("id");
$this->view->rows = $db_model->getVehiclePriceById($id);
// print_r($db_model->getVehiclePriceById($id));
$this->view->vehicle_id = $id;
// $db=new Vehicle_Model_DbTable_DbVehicle();
// $this->view->vehicle=$db->getVehicleById($id);
}
示例12: editAction
public function editAction()
{
$db_model = new Driverguide_Model_DbTable_DbDriver();
if ($this->getRequest()->isPost()) {
$data = $this->getRequest()->getPost();
try {
$id = $db_model->updateDriver($data);
Application_Form_FrmMessage::Sucessfull("EDIT_SUCCESSS", "/driverguide");
} catch (Exception $e) {
Application_Form_FrmMessage::message("Application Error");
Application_Model_DbTable_DbUserLog::writeMessageError($e->getMessage());
}
}
$db = new Application_Model_DbTable_DbGlobal();
$client_type = $db->getclientdtype();
array_unshift($client_type, array('id' => -1, 'name' => '---Add New ---'));
$this->view->clienttype = $client_type;
$dbpop = new Application_Form_FrmPopupGlobal();
$this->view->frm_popup_clienttype = $dbpop->frmPopupclienttype();
$id = $this->getRequest()->getParam("id");
$row = $db_model->getDriverById($id);
$this->view->rs = $row;
$fm = new Group_Form_FrmClient();
$frm = $fm->FrmaddGuide($row);
Application_Model_Decorator::removeAllDecorator($frm);
$this->view->frm_client = $frm;
}
示例13: editAction
public function editAction()
{
if ($this->getRequest()->isPost()) {
try {
$_data = $this->getRequest()->getPost();
$_dbmodel = new Application_Model_DbTable_DbDept();
$_dbmodel->UpdateDepartment($_data);
Application_Form_FrmMessage::Sucessfull("ការកៃប្រែដោយជោគជ័យ !", "/global/faculty/index");
//$this->_redirect("");
} catch (Exception $e) {
$err = $e->getMessage();
Application_Form_FrmMessage::message("Application Error!");
Application_Model_DbTable_DbUserLog::writeMessageError($err);
echo $e->getMessage();
exit;
}
}
$id = $this->getRequest()->getParam("id");
$_db = new Application_Model_DbTable_DbGlobal();
$_row = $_db->getDeptById($id);
$frm = new Application_Form_FrmOther();
$frm->FrmAddDept($_row);
Application_Model_Decorator::removeAllDecorator($frm);
$this->view->frm_dept = $frm;
}
示例14: addSaleAgentAction
public function addSaleAgentAction()
{
if ($this->getRequest()->isPost()) {
$post = $this->getRequest()->getPost();
if (@$post['submit_add']) {
$add_agent = new sales_Model_DbTable_DbSalesAgent();
$add_agent->addSalesAgent($post);
Application_Form_FrmMessage::message("Agent Has Been Inserted !");
} elseif (@$post['submit_add_close']) {
$add_agent = new sales_Model_DbTable_DbSalesAgent();
$add_agent->addSalesAgent($post);
$this->_redirect("sales/sale-agent/index");
} else {
$this->_redirect("sales/sale-agent/index");
}
}
$formAgent = new sales_Form_FrmStock(null);
$formShowAgent = $formAgent->showSaleAgentForm(null);
Application_Model_Decorator::removeAllDecorator($formShowAgent);
$this->view->form_agent = $formShowAgent;
$formpopup = new Application_Form_FrmPopup(null);
//for add location
$formAdd = $formpopup->popuLocation(null);
Application_Model_Decorator::removeAllDecorator($formAdd);
$this->view->form_addstock = $formAdd;
}
示例15: indexAction
public function indexAction()
{
try {
$db = new Accounting_Model_DbTable_DbIndex();
if ($this->getRequest()->isPost()) {
$search = $this->getRequest()->getPost();
} else {
$search = array('adv_search' => '', 'status_search' => -1);
}
$rs_rows = $db->getAllIncomeAndExpense($search = null);
//call frome model
$this->view->tran_list = $rs_rows;
$total_r = $db->getTotalRiel();
foreach ($total_r as $reil) {
$this->view->total_reil = $reil['total_amount'];
}
$total_d = $db->getTotalDollar();
foreach ($total_d as $dollar) {
$this->view->total_dollar = $dollar['total_amount'];
}
$total_b = $db->getTotalBat();
foreach ($total_b as $bat) {
$this->view->total_bat = $bat['total_amount'];
}
} catch (Exception $e) {
Application_Form_FrmMessage::message("Application Error");
echo $e->getMessage();
Application_Model_DbTable_DbUserLog::writeMessageError($e->getMessage());
}
// $pructis=new Accounting_Form_Frmindex();
// $frm = $pructis->FrmAddIndex();
// Application_Model_Decorator::removeAllDecorator($frm);
// $this->view->frm_info=$frm;
}