Saturday, July 4th 2009, 7:11am UTC+2
You are not logged in.
Dear visitor, welcome to WoltLab Community Forum. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
This post has been edited 16 times, last edit by "ufdada" (Jul 20th 2007, 2:12pm)
|
|
PHP Source code |
1 2 |
class MeineseitePage extends AbstractPage {
public $templateName = 'meineseite';
|
This post has been edited 2 times, last edit by "[christoph]" (Jul 15th 2007, 4:48pm)
Eieiei seh schon welch ein Graus, hatte wohl bei der letzten Editierung einige Fehler gemacht (hatte die doppelte Deklaration der Klasse gar nicht gemerkt). Ich habe den Rohling für die php-Seite ausgebessert und die show-Funktion weggenommen, da diese eigentlich nicht benötigt wird.Der Fehler scheint in deiner Roh-[...]Page.class.php zu liegen - als ich die von meinem OpenSearch-Plugin genommen habe, hatte es funktioniert; die doppelte Deklaration der Klasse hatte ich aber schon entfernt.
Alexander
Unregistered
|
|
Template source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
[{include file='documentHeader'} <head> <title>wbb.seiten.browsertitle.wiiline - {PAGE_TITLE}</title> {include file='headInclude' sandbox=false} </head> <body> {include file='header' sandbox=false} <div class"main"> <ul class="breadCrumbs"> <li><a href="index.php{@SID_ARG_1ST}"><img src="icon/indexM.png" alt="" /> <span>{PAGE_TITLE}</span></a> »</li> </ul> <div class="mainHeadline"> <img src="{@RELATIVE_WCF_DIR}icon/???????" alt="" /> <div class="headlineContainer"> <h2>wbb.seiten.titel.wiiline></h2> <p>wbb.seiten.beschreibung.wiiline</p> </div> </div> <div class="border content"> <div class="container-1"> wbb.seiten.inhalt.wiiline </div> </div> </div> {include file='footer' sandbox=false} </body> </html> |
|
|
PHP Source code |
1 2 3 4 5 6 7 8 |
<?php
require_once(WCF_DIR.'lib/page/AbstractPage.class.php');
class wiilinePage extends AbstractPage {
public $templateName = 'wiiline';
}
?>
|
|
|
PHP Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
[{include file='documentHeader'}
<head>
<title>DEIN INHALT - {PAGE_TITLE}</title>
{include file='headInclude' sandbox=false}
</head>
<body>
{include file='header' sandbox=false}
<div class"main">
<ul class="breadCrumbs">
<li><a href="index.php{@SID_ARG_1ST}"><img src="icon/indexM.png" alt="" /> <span>{PAGE_TITLE}</span></a> »</li>
</ul>
<div class="mainHeadline">
<img src="{@RELATIVE_WCF_DIR}icon/???????" alt="" />
<div class="headlineContainer">
<h2>DEIN INHALT</h2>
<p>DEIN INHALT</p>
</div>
</div>
<div class="border content">
<div class="container-1">
DEIN INHALT
</div>
</div>
</div>
{include file='footer' sandbox=false}
</body>
</html>
|
|
|
Template source code |
1 |
wbb.seiten.beschreibung.wiiline |
|
|
Template source code |
1 |
{lang}wbb.seiten.beschreibung.wiiline{/lang} |