equal
deleted
inserted
replaced
122 <?php print $translate->_("Anglais"); ?> |
122 <?php print $translate->_("Anglais"); ?> |
123 </a> |
123 </a> |
124 </li> |
124 </li> |
125 </ul> |
125 </ul> |
126 </div> |
126 </div> |
127 <?php display_archives_list($config['event_list'], "archive_box_3", URL_ROOT, dirname(__FILE__)."/", $translate); ?> |
127 <?php |
|
128 $basepath = dirname(__FILE__)."/"; |
|
129 foreach ($config['event_list'] as $i => $rep) { |
|
130 |
|
131 include("$basepath$rep/config.php"); |
|
132 |
|
133 set_config_translations($config, $translate); |
|
134 |
|
135 $tail_img = $translate->_('config__archive_img'); |
|
136 if(is_array($tail_img)) { |
|
137 $tail_img = $tail_img[0]; |
|
138 } |
|
139 $archive_title = $translate->_('config__archive_title'); |
|
140 if(is_array($archive_title)) { |
|
141 $archive_title = $archive_title[0]; |
|
142 } |
|
143 $archive_description = $translate->_('config__archive_description'); |
|
144 if(is_array($archive_description)) { |
|
145 $archive_description = $archive_description[0]; |
|
146 } |
|
147 |
|
148 ?> |
|
149 <div class="archivesVideoBox"> |
|
150 <a href="<?php echo URL_ROOT . $rep ?>"> |
|
151 <img src="<?php echo URL_ROOT . "$rep/$tail_img" ?>" width="270" height="150"/> |
|
152 </a> |
|
153 <h3 class="AVBtitle"><?php echo $archive_title ?></h3> |
|
154 <p class="AVBtext"><?php echo $archive_description; ?></p> |
|
155 </div> |
|
156 <?php |
|
157 |
|
158 } |
|
159 |
|
160 ?> |
128 </div> |
161 </div> |
129 <div class="footer"> |
162 <div class="footer"> |
130 <hr /> |
163 <hr /> |
131 <?php |
164 <?php |
132 include dirname(__FILE__).'/'.$rep.'/config.php'; |
165 include dirname(__FILE__).'/'.$rep.'/config.php'; |