This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(!Array.prototype.indexOf) | |
{ | |
Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) { | |
"use strict"; | |
if (this == null) { | |
throw new TypeError(); | |
} | |
var t = Object(this); | |
var len = t.length >>> 0; | |
if (len === 0) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(typeof jQuery !== 'undefined') | |
{ | |
function FlipRotation(args) | |
{ | |
if($(args.selector.wrap).length) | |
{ | |
this.initialize(args); | |
} | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var GenericFader = function(args) | |
{ | |
if($(args.selector.wrap).length) | |
{ | |
this.initialize(args); | |
} | |
}; | |
GenericFader.prototype = { | |
initialize: function(args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) | |
{ | |
var SemanticInputTextReplacer = function(args) | |
{ | |
if($(args.inputs).length > 0) | |
this.init(args); | |
}; | |
SemanticInputTextReplacer.prototype = { | |
placeholderSupport: false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Slider = function(args) | |
{ | |
this.initialize(args); | |
} | |
Slider.prototype = { | |
initialize: function(args) | |
{ | |
this.setSliderWidth(args); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(typeof jQuery !== 'undefined') | |
{ | |
function Tabs(args) | |
{ | |
if($(args.selector.wrap).length) | |
{ | |
this.init(args); | |
} | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once(CLASSES_ROOT.'/mediabase/api/kmcontroller.php'); | |
require_once(CLASSES_ROOT.'/mediabase/keymedia.php'); | |
require_once(CLASSES_ROOT.'/system/mediabase/kpmediabase.php'); | |
class CustomerImageGalleryGUI | |
{ | |
protected $mb; | |
protected $tpl; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends noLayout ? viewbaseLayout : 'KTQProductSitesBundle::pagelayout.html.twig' %} | |
{% block content %} | |
{% set pricesOrderContentId = content.getField('link_prices_order').value.destinationContentId %} | |
{% set freeTrialContentId = content.getField('link_free_trial').value.destinationContentId %} | |
<div class="product landing span12"> | |
<div class="row"> | |
<div class="header span12"> | |
<div class="row"> | |
<div class="span5"> | |
<h1>{{ ez_render_field(content, 'name') }}</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in kernel.root_dir/cache/dev/classes.php at line 6047 | |
at Twig_Template ->displayWithErrorHandling (array('noLayout' => true, 'content' => object(Content), 'viewbaseLayout' => 'EzPublishCoreBundle::viewbase_layout.html.twig', 'assetic' => array('debug' => true, 'vars' => object(ValueContainer), 'use_controller' => true), 'ezpublish' => object(GlobalHelper), 'app' => object(GlobalVariables)), array()) | |
in kernel.root_dir/cache/dev/classes.php at line 6017 | |
at Twig_Template ->display (array('noLayout' => true, 'content' => object(Content), 'viewbaseLayout' => 'EzPublishCoreBundle::viewbase_layout.html.twig')) | |
in kernel.root_dir/cache/dev/classes.php at line 6024 | |
at Twig_Template ->render (array('noLayout' => true, 'content' => object(Content), 'viewbaseLayout' => 'EzPublishCoreBundle::viewbase_layout.html.twig')) | |
in /Users/hhb/www/ez5-projects/product-sites/vendor/symfony/symfony/src/Symfony/Bridge/Twig/TwigEngine.php at line 53 | |
at TwigEngine ->render ('KTQProductSitesBundle:particles:link.html. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected $serviceContainer; | |
protected $pageService; | |
public function __construct($serviceContainer) | |
{ | |
$this->serviceContainer = $serviceContainer; | |
$this->pageService = $this->serviceContainer->getPageService(); | |
} |