pragmaMx Layout wo ist der anfang?

Begonnen von FireVoox, 01 Juni 2007, 12:56:41

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 2 Gäste betrachten dieses Thema.

FireVoox

Toll etwas gefunden zu haben das auf anhieb passt...  :thumbup:

Aber nun zu meiner frage... Das Layout dar ich ja ändern habe ich schon gelesen solange das Alle Logos und Warenzeichen auf dieser Seite sind Eigentum...etc steht... aber wo fange ich an? bei Webspell was ich vorher... installiert hatte gab es eine index auf der das ganze cms bassierte und als gerüst sogesehen aufgebaut war das layout der gesammten seite konnte ich über eine seite editieren in golive mit tabellen text bilder etc... aber wie ist das bitte hier kann mir einer vieleicht helfen?


Baldyman

Servus FireVoox,

alles was Du am Anfang so brauchst,
steht im Handbuch und ist auch im Tutorial für das erstellen eigener Themes erklärt.
Am besten, Du guggst mal da rein....

---> http://www.pragmamx.org/Content-pid-43.html

Viel Erfolg !

FireVoox


FireVoox

wo finde ich den die befehle für die einzelnen module die angezeigt werden sollen die ich in der tabelle darstellen möchte...

HABE SIE DANKE!

jogi24

hi
@ FireVoox

hier mal ein beispiel


<?php
/**
 * pragmaMx  Content Management System
 * Copyright (c) 2005 pragmaMx Dev Team - http://pragmaMx.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

if (!defined("mxMainFileLoaded")) die ("You can't access this file directly...");

$mxblockcache FALSE;
include(
"blocks/block-user_suche.php");
$out1 $content;
unset(
$content);
include(
"blocks/block-AdminNews.php");
$out2 $content;
unset(
$content);
include(
"blocks/block-Users_off_today.php");
$out3 $content;



$content "<div align=\"center\">";
$content .= "  <center>";
$content .= "  <table border=\"2\" cellpadding=\"0\" cellspacing=\"3\" width=\"100%\">";
$content .= "    <tr>";
$content .= "<td width=\"33%\">";
$content .= "<p align=\"center\"><b>suche User</b></td>";
$content .= "<td width=\"33%\">";
$content .= "<p align=\"center\"><b>Admin News</b></td>";
$content .= "<td width=\"34%\">";
$content .= "<p align=\"center\"><b>User Heute</b></td>";
$content .= "</tr>";

$content .= "    <tr>";
$content .= "      <td width=\"33%\"><br />";
$content .= "".$out1."</td>";
$content .= "      <td width=\"33%\"><br />";
$content .= "".$out2."</td>";
$content .= "      <td width=\"34%\"><br />";
$content .= "".$out3."</td>";
$content .= "    </tr>";
$content .= "  </table>";
$content .= "  </center>";
$content .= "</div>";
$blockfiletitele "Info";

?>