TWLan Forum
"actions"-Include? - Printable Version

+- TWLan Forum (https://twlan.org)
+-- Forum: Legacy (https://twlan.org/forumdisplay.php?fid=61)
+--- Forum: TWLan 1.x (DSLan) (https://twlan.org/forumdisplay.php?fid=62)
+---- Forum: Deutsche Community (https://twlan.org/forumdisplay.php?fid=65)
+----- Forum: Fragen & Probleme (https://twlan.org/forumdisplay.php?fid=7)
+----- Thread: "actions"-Include? (/showthread.php?tid=3606)



"actions"-Include? - Molt - 10.11.2010

Hallo

Kann mir jemand verraten, wie ich
  • es anstelle, dass eine PHP-Datei, die im Ordner htdocs/actions liegt, von game.php "included" wird (falls der screen=name ist)?
  • einen screen in $allowed_screens bekomme?
Oder geht das nicht?

LG
Molt


RE: "actions"-Include? - Lekensteyn - 10.11.2010

Not possible without changing the encoded script.
The only way to include PHP now is by changing the template files.


RE: "actions"-Include? - Yannici - 10.11.2010

Du kannst in der game.tpl einfach die Abfrage raus machen, dass nur $allowed_screens erlaubt sind Smile
Dann kannst du alle Templates includieren ;-)
Nur ob die Actions Dateien dann funktionieren, weiß ich nicht.


RE: "actions"-Include? - SlimShady95 - 10.11.2010

Also mach in der game.tpl einfach:

Code:
{php}
$this->_tpl_vars['allowed_screens'][] = 'DIE SEITE';
{/php}

Und für actions in der game.php vor dem ganzen Code:

PHP Code:
<?php
if($_GET['screen'] == 'DIE SEITE') {
  include(
'actions/SEITE.php');
}
?>

PS: Denke, das sollte funktionieren Wink

MfG Manuel


RE: "actions"-Include? - Molt - 11.11.2010

Jaja, es geht schon, ich wollte nur wissen, ob es sowas ähnliches wie die Schnittstelle beim Adminpanel gibt... offenbar nicht.

LG
Molt


RE: "actions"-Include? - k3v95 - 11.11.2010

ich glaube ich weiß was du meinst^^
leider kann ich dir nicht helfen


RE: "actions"-Include? - SlimShady95 - 11.11.2010

(11.11.2010, 17:24)Molt Wrote: Jaja, es geht schon, ich wollte nur wissen, ob es sowas ähnliches wie die Schnittstelle beim Adminpanel gibt... offenbar nicht.

LG
Molt

Achso. Nein denke nicht, aber so, wie ichs geschrieben hat, gehts ja auch. Wink

MfG Manuel