encoder(); $pinParams = $this->get( 'pinnedParams', array() ); $pinList = $this->get( 'pinnedProductItems', array() ); /** client/html/account/pinned/url/target * Destination of the URL where the controller specified in the URL is known * * The destination can be a page ID like in a content management system or the * module of a software development framework. This "target" must contain or know * the controller that should be called by the generated URL. * * @param string Destination of the URL * @since 2014.09 * @category Developer * @see client/html/account/pinned/url/controller * @see client/html/account/pinned/url/action * @see client/html/account/pinned/url/config */ $pinTarget = $this->config( 'client/html/account/pinned/url/target' ); /** client/html/account/pinned/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.09 * @category Developer * @see client/html/account/pinned/url/target * @see client/html/account/pinned/url/action * @see client/html/account/pinned/url/config */ $pinController = $this->config( 'client/html/account/pinned/url/controller', 'catalog' ); /** client/html/account/pinned/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.09 * @category Developer * @see client/html/account/pinned/url/target * @see client/html/account/pinned/url/controller * @see client/html/account/pinned/url/config */ $pinAction = $this->config( 'client/html/account/pinned/url/action', 'detail' ); /** client/html/account/pinned/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.09 * @category Developer * @see client/html/account/pinned/url/target * @see client/html/account/pinned/url/controller * @see client/html/account/pinned/url/action * @see client/html/url/config */ $pinConfig = $this->config( 'client/html/account/pinned/url/config', array() ); $detailTarget = $this->config( 'client/html/catalog/detail/url/target' ); $detailController = $this->config( 'client/html/catalog/detail/url/controller', 'catalog' ); $detailAction = $this->config( 'client/html/catalog/detail/url/action', 'detail' ); $detailConfig = $this->config( 'client/html/catalog/detail/url/config', array() ); /** client/html/catalog/session/pinned/count/enable * Displays the number of pinned products in the header of the pinned list * * This configuration option enables or disables displaying the total number * of pinned products in the header of section. This increases the usability if * more than the shown products are available in the list but this depends on * the design of the site. * * @param integer Zero to disable the counter, one to enable it * @since 2014.09 * @category Developer * @see client/html/catalog/session/seen/count/enable */ $count = $this->config( 'client/html/catalog/session/pinned/count/enable', 1 ); /// Price format with price value (%1$s) and currency (%2$s) $priceFormat = $this->translate( 'client/html', '%1$s %2$s' ); /// Percent format with value (%1$s) and % sign $percentFormat = $this->translate( 'client/html', '%1$s%%' ); ?>

translate( 'client/html', 'Pinned products' ); ?>

pinnedBody; ?>