Jump to content
  • 0

Edytor Podstron Cms Nie Przyjmuje Kodu


Aureliano

Question

Chcę poniższy kod galerii wmontować do jednej z podstron CMS prestashop1.6.1.1. Jak to zrobić?  Bo jak wiadomo - edytor nie przyjmuje.

 

<?php require_once 'php/searcher.php'; ?>
<link rel="stylesheet" type="text/css" href="gallerystyle.css">
<link rel="stylesheet" href="js/jquery.fancybox/jquery.fancybox.css" type="text/css" media="screen" />
         <script type="text/javascript" src="js/jquery.fancybox/jquery-1.3.2.min.js"></script>
        <script type="text/javascript" src="js/jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
        <script type="text/javascript" src="js/jquery.fancybox/jquery.easing.1.3.js"></script>
<!-- Do not edit IE conditional style below --><!--[if gte IE 5.5]>
<style type="text/css">
#motioncontainer {
width:expression(Math.min(this.offsetWidth, maxwidth)+'px');
}
</style>
<![endif]-->
<!-- End Conditional Style -->
<script type="text/javascript" src="motiongallery.js">
</script>
<center><br>
</center>
</h1>
<br>
 <script type="text/javascript">
            $(document).ready(function() {
               $("a.zoom").fancybox({
                    zoomSpeedIn: 800,
                    zoomSpeedOut: 300,
                    zoomSpeedChange: 300,
                    easingIn: 'easeOutBounce'
                });
            });
        </script>
<div id="motioncontainer" style="overflow: hidden; position: relative;">
<div id="motiongallery"
style="position: absolute; left: 0pt; top: 0pt; white-space: nowrap;">
<div id="trueContainer">
            <?php if (!empty($photos)) { ?>
            <?php foreach ($photos as $photo) { ?>
            <a href="<?php echo $photo; ?>" class="zoom" rel="group"><img src="<?php echo $photo; ?>" height="400" alt="Foto" /></a>
            <?php } ?>
            <?php } else { ?>
            <div class="info">Nie znaleziono żadnych zdjęć do wyświetlenia.</div>
            <?php } ?>

 

 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Teraz tak przejrzałem ten kod i widzę że masz tam znaczniki php to raczej nie przejdzie. Najlepiej to utworzyć do tego osobny moduł, zmienne php przekazać do smarty, nie jest to dobre rozwiązanie umieszczać znaczniki php w innych plikach niż *.php a plik odpowiadający za strony cms to cms.tpl

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...