PHP Classes

File: contents/paymentmethods/moneybookers/controller/setting.php

Recommend this page to a friend!
  Classes of Minh Tien   Noblesse CMS   contents/paymentmethods/moneybookers/controller/setting.php   Download  
File: contents/paymentmethods/moneybookers/controller/setting.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Noblesse CMS
Content management system with custom plugins
Author: By
Last change:
Date: 8 years ago
Size: 318 bytes
 

Contents

Class file image Download
<?php

if(!$match=Uri::match('\/setting\/moneybookers\/'))
{
   
Redirect::to(ROOT_URL);
}

$post=array('alert'=>'');

Model::load(PAYMENTMETHOD_PATH.'model/setting',1);

if(
Request::has('btnSend'))
$post['alert']=settingProcess();

$post['data']=settingData();

View::make(PAYMENTMETHOD_PATH.'view/setting',$post,1);

?>