예제 #1
0
파일: therapies.php 프로젝트: bcneb/WebYep
<?php

include_once "../main.inc.php";
$sPageTitle = sLS("Leben in Balance", "Life in Balance");
include_once "../header.inc.php";
?>

<div id="mainContent">
<?php 
webyep_richText("Text", false, "../tinymce.css");
?>
<div style="height: 100px"></div>
</div>

<div id="sidebarRight">
    <?php 
webyep_image(sWYLS("Bild", "Image"), false, '', "", "", 192, 0, false);
?>
    <div class="imageCaption"><?php 
webyep_longText(sWYLS("Bildtext", "Caption"), false, "", true);
?>
</div>
</div>

<?php 
include_once "../footer.inc.php";
예제 #2
0
파일: text.php 프로젝트: bcneb/WebYep
<!-- Text: =============================================== -->
<div class="WebYepText"><?php 
/* check for installed WYSIWYG HTML editor */
if (file_exists("{$webyep_sIncludePath}/opt/rte") || file_exists("{$webyep_sIncludePath}/opt/tinymce") || file_exists("{$webyep_sIncludePath}/opt/fckeditor") || file_exists("{$webyep_sIncludePath}/opt/ckeditor")) {
    webyep_richText("Text{$sFieldPostfix}", false, "/webyep_text.css", true);
} else {
    webyep_longText("Text{$sFieldPostfix}", false, "", true);
}
?>
</div>