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 | |
| /* | |
| $Id$ | |
| osCommerce, Open Source E-Commerce Solutions | |
| http://www.oscommerce.com | |
| Copyright (c) 2010 osCommerce | |
| Released under the GNU General Public License | 
  
    
      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 | |
| /** | |
| * osCommerce Website | |
| * | |
| * @copyright Copyright (c) 2012 osCommerce; http://www.oscommerce.com | |
| * @copyright Copyright (c) 2012 FoxP2; http://www.oscommerce.fr | |
| * @license BSD License; http://www.oscommerce.com/bsdlicense.txt | |
| */ | |
| namespace osCommerce\OM\Core\Site\Website\Module\Template\Widget\github_coders_sidebar_nav; | 
  
    
      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
    
  
  
    
  | <div class="container"> | |
| <div class="span8"> | |
| <div class="row"> | |
| {loop reposMember} | |
| <h3><i class="#fork#"></i> {lang}repositerie{lang} : #name#</h3> | |
| <ul class="nav nav-tabs"> | |
| <li class="active"><a href="{link}Github|Website|Member{link}" onclick="javascript:getTab('resume#id#')" data-toggle="tab">{lang}resume{lang}</a></li> | |
| <li><a href="{link}Github|Website|Member{link}" onclick="javascript:getTab('details#id#')" data-toggle="tab">{lang}details{lang}</a></li> | |
| <li><a href="{link}Github|Website|Member{link}" onclick="javascript:getTab('stats#id#')" data-toggle="tab">{lang}stats{lang}</a></li> | |
| </ul> | 
  
    
      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
    
  
  
    
  | {# file: includes/modules/templates/twig/content/base.html.twig #} | |
| <!DOCTYPE html> | |
| <html {{ constant('HTML_PARAMS') | raw}}> | |
| <head> | |
| {% block head %} | |
| <meta charset="{{ constant('CHARSET') }}" /> | |
| <title>{{ title }}</title> | |
| <base href="{{ base_href }}" /> | |
| <link rel="icon" type="image/png" href="public/images/oscommerce_icon.png" /> | |
| <meta name="generator" content="osCommerce Online Merchant" /> | 
  
    
      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 | |
| /** | |
| * osCommerce Online Merchant | |
| * | |
| * @copyright Copyright (c) 2013 osCommerce; http://www.oscommerce.com | |
| * @copyright (c) 2013, James W Burke | |
| * @copyright Copyright (c) 2013 modified by FoxP2; http://www.oscommerce.fr | |
| * @license GNU General Public License; http://www.oscommerce.com/gpllicense.txt | |
| */ | |
| class TwigModules extends Twig_Extension | 
  
    
      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 | |
| /** | |
| * osCommerce Online Merchant | |
| * | |
| * @copyright Copyright (c) 2013 osCommerce; http://www.oscommerce.com | |
| * @copyright Copyright (c) 2013 FoxP2; http://www.oscommerce.fr | |
| * @license GNU General Public License; http://www.oscommerce.com/gpllicense.txt | |
| */ | |
| class TwigTemplate | |
| { | 
  
    
      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
    
  
  
    
  | {# here we load dynamic options templates #} | |
| {% if nb_product_attribute > 0 %} | |
| {% block product_attribute %} | |
| {% import 'products_options.html.twig' as display_options %} | |
| <h4>{{ constant('TEXT_PRODUCT_OPTIONS') }}</h4> | |
| {% for option in content %} | |
| {{ attribute(display_options, option.potemplate, [option.data,option.poname,option.id,option.selected_attribute]) }} | |
| {% endfor %} | |
| {% endblock %} | |
| {% endif %} | 
  
    
      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
    
  
  
    
  | {% block columnleft %} | |
| <div id="columnTwigLeft" class="span{{ GridColumnWidth }}"> | |
| {% for boxe in boxes %} | |
| {% if boxe.boxe != null and boxe.group == 'boxes_column_left' %} | |
| {% include [boxe.boxe, TwigExtension]|join with{'data': boxe.data, 'title' : boxe.title } %} | |
| {% endif %} | |
| {% endfor %} | |
| </div> | |
| {% endblock %} | 
  
    
      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
    
  
  
    
  | {# Copyright (c) 2013 FoxP2; http://www.oscommerce.fr #} | |
| {# file: includes/apps/cart/view/template/classic/main.html.twig #} | |
| {% extends "base.html.twig" %} | |
| {% block appcontent %} | |
| <div id="bodyContent" class="span{{ GridContentWidth }}"> | |
| {% block shoppingcarttitle %} | |
| <h1 class="title-app">{{ constant('HEADING_TITLE') }}</h1> | |
| {% endblock %} | |
| {{ form('cart_quantity', link('cart', 'update'), 'post', null, true) | raw }} | |
| {% for hf in hidden_field %} | 
OlderNewer