Changeset 1491 in t29-www
- Timestamp:
- Feb 4, 2019, 1:08:16 PM (4 years ago)
- Files:
-
- 13 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
README.txt
r335 r1491 15 15 16 16 Das Verzeichnis /shared/cache muss fuer den Webserver writable sein. 17 18 Benoetigte PHP-Packete 19 ---------------------- 20 21 * SimpleXML (php-xml) 22 23 -
de/navigation.xml
r1479 r1491 25 25 </ul> 26 26 </li> 27 <li><a seiten_id="blog" href="/blog/">Blog</a></li> 27 28 <li class="has-submenu"><a href="/de/lernprojekte/">Projekte</a> 28 29 <ul class="u2"> -
en/contact.php
r1489 r1491 11 11 ?> 12 12 <h2>Contact</h2> 13 <p>Since the sudden <a href="/heribert-mueller/">pass away of Heribert Müller</a> in April 14 2018, the provisional lead of the museum is up to the community of heirs as well as 15 friends and volunteers of the museum. We are reachable via: 13 16 14 17 <div class="vcard" id="address"> 15 18 <div class="org hidden">technikum29 Computer Museum</div> 16 <div class="fn">Dipl. Phys. H. Müller </div>19 <div class="fn">Dipl. Phys. H. Müller, Community of Heirs</div> 17 20 <div class="adr"> 18 21 <div class="street-address hidden">Am Flachsland 29</div> … … 20 23 <span class="country-name">Germany</span> 21 24 </div> 22 <div>e-mail: <a class="email" href="mailto:post@technikum29.de">post@technikum29.de</a></div> 25 <div>e-mail: <a class="email" href="mailto:contact@technikum29.de">contact@technikum29.de</a></div> 26 <div>phone (mail box): <a href="tel:00496195805777">0049-6195-805777</a></div> 23 27 <div>internet: <a class="url" href="http://www.technikum29.de/">www.technikum29.de</a></div> 24 28 <div class="hidden">Photo: <img class="photo" src="/shared/photos/start/museum.jpg" alt="Photography of the museum building" /></div> -
en/navigation.xml
r1483 r1491 21 21 </ul> 22 22 </li> 23 <li><a seiten_id="blog" href="/blog/">Blog</a></li> 23 24 <!--<li><a seiten_id="termine" href="/en/events.php">Events</a></li>--> 24 25 <li class="has-submenu"><a href="/en/development-projects.php">Projects</a> -
lib/menu.php
r1074 r1491 37 37 // will fetch them with libxml_get_errors later. 38 38 //libxml_use_internal_errors(true); 39 40 // load xml file 41 $this->xml = simplexml_load_file($this->conf['webroot'].$this->conf['lang_path'] . '/' . self::navigation_file); 42 if($this->xml_is_defective()) { 43 trigger_error("Kann Navigationsdatei nicht verwenden, da das XML nicht sauber ist. Bitte reparieren!"); 39 40 if(!function_exists("simplexml_load_file")) { 41 trigger_error("t29Menu: Require SimpleXML PHP extension to load menu."); 42 } else { 43 // load xml file 44 $this->xml = simplexml_load_file($this->conf['webroot'].$this->conf['lang_path'] . '/' . self::navigation_file); 45 if($this->xml_is_defective()) { 46 trigger_error("Kann Navigationsdatei nicht verwenden, da das XML nicht sauber ist. Bitte reparieren!"); 47 } 44 48 } 45 49 }
Note: See TracChangeset
for help on using the changeset viewer.