config( 'client/html/account/history/url/target' ); /** client/html/account/history/url/controller * Name of the controller whose action should be called * * In Model-View-Controller (MVC) applications, the controller contains the methods * that create parts of the output displayed in the generated HTML page. Controller * names are usually alpha-numeric. * * @param string Name of the controller * @since 2014.03 * @category Developer * @see client/html/account/history/url/target * @see client/html/account/history/url/action * @see client/html/account/history/url/config */ $accountController = $this->config( 'client/html/account/history/url/controller', 'account' ); /** client/html/account/history/url/action * Name of the action that should create the output * * In Model-View-Controller (MVC) applications, actions are the methods of a * controller that create parts of the output displayed in the generated HTML page. * Action names are usually alpha-numeric. * * @param string Name of the action * @since 2014.03 * @category Developer * @see client/html/account/history/url/target * @see client/html/account/history/url/controller * @see client/html/account/history/url/config */ $accountAction = $this->config( 'client/html/account/history/url/action', 'history' ); /** client/html/account/history/url/config * Associative list of configuration options used for generating the URL * * You can specify additional options as key/value pairs used when generating * the URLs, like * * client/html//url/config = array( 'absoluteUri' => true ) * * The available key/value pairs depend on the application that embeds the e-commerce * framework. This is because the infrastructure of the application is used for * generating the URLs. The full list of available config options is referenced * in the "see also" section of this page. * * @param string Associative list of configuration options * @since 2014.03 * @category Developer * @see client/html/account/history/url/target * @see client/html/account/history/url/controller * @see client/html/account/history/url/action * @see client/html/url/config */ $accountConfig = $this->config( 'client/html/account/history/url/config', array() ); $orderItems = $this->get( 'listOrderItems', array() ); $dateformat = $this->translate( 'client/html', 'Y-m-d' ); $attrformat = $this->translate( 'client/html', '%1$s at %2$s' ); $enc = $this->encoder(); ?>

html( $this->translate( 'client/html', 'Order history' ), $enc::TRUST ); ?>

get( 'listBody' ); ?>