summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2020-04-26 16:48:01 +0200
committerLaria Carolin Chabowski <laria@laria.me>2020-04-26 16:48:01 +0200
commitbfd4763b4f831ed9eccbdd4717c98b7d95999d2e (patch)
tree73538562b347386a24e3b81f443a0b61309fe3de /example
parent2464ac4fa63ccd169f36849a1f7372191066f305 (diff)
downloadste-bfd4763b4f831ed9eccbdd4717c98b7d95999d2e.tar.gz
ste-bfd4763b4f831ed9eccbdd4717c98b7d95999d2e.tar.bz2
ste-bfd4763b4f831ed9eccbdd4717c98b7d95999d2e.zip
Some simple code formatting
- Expand tabs into spaces - Remove trailing whitespace - Get rid of closing `?>` tags
Diffstat (limited to 'example')
-rw-r--r--example/index.php56
1 files changed, 27 insertions, 29 deletions
diff --git a/example/index.php b/example/index.php
index a0aa03c..bd03a43 100644
--- a/example/index.php
+++ b/example/index.php
@@ -7,10 +7,10 @@ use \kch42\ste;
# Initialize an STECore instance
$ste = new ste\STECore(
- new ste\FilesystemStorageAccess( # The STECore needs a StorageAccess implementation, we are using the FilesystemStorageAccess, which comes with STE.
- dirname(__FILE__) . "/templates/src", # FilesystemStorageAccess needs a directory, where the Templates are...
- dirname(__FILE__) . "/templates/transc" # ...and a directory for the transcompiled templates (write permissions needed).
- )
+ new ste\FilesystemStorageAccess( # The STECore needs a StorageAccess implementation, we are using the FilesystemStorageAccess, which comes with STE.
+ dirname(__FILE__) . "/templates/src", # FilesystemStorageAccess needs a directory, where the Templates are...
+ dirname(__FILE__) . "/templates/transc" # ...and a directory for the transcompiled templates (write permissions needed).
+ )
);
# Set STE to a more verbose behavior:
@@ -20,40 +20,40 @@ $ste->mute_runtime_errors = False;
# <ste:uppercase> will exchange all letters with their uppercase complement
$ste->register_tag("uppercase",
- function($ste, $params, $sub)
- {
- $text = $sub($ste); # Get the tags content
- return strtoupper($text); # Return the new text.
- }
+ function($ste, $params, $sub)
+ {
+ $text = $sub($ste); # Get the tags content
+ return strtoupper($text); # Return the new text.
+ }
);
# <ste:repeat> will repeat its content n times (<ste:for> could be used too, but i needed more examples :-P )
$ste->register_tag("repeat",
- function($ste, $params, $sub)
- {
- $output = "";
- if(!is_numeric($params["n"]))
- throw new ste\RuntimeError("Sorry, but parameter n must be a number...");
-
- for($i = 0; $i < $params["n"]; ++$i)
- $output .= $sub($ste);
-
- return $output;
- }
+ function($ste, $params, $sub)
+ {
+ $output = "";
+ if(!is_numeric($params["n"]))
+ throw new ste\RuntimeError("Sorry, but parameter n must be a number...");
+
+ for($i = 0; $i < $params["n"]; ++$i)
+ $output .= $sub($ste);
+
+ return $output;
+ }
);
# assign some data
$ste->vars["users"] = array(
- array("name" => "Foo", "username" => "foo", "online" => true),
- array("name" => "Bar", "username" => "bar", "online" => false),
- array("name" => "Baz", "username" => "baz", "online" => true)
+ array("name" => "Foo", "username" => "foo", "online" => true),
+ array("name" => "Bar", "username" => "bar", "online" => false),
+ array("name" => "Baz", "username" => "baz", "online" => true)
);
$ste->vars["title"] = "cool";
$ste->vars["articles"] = array(
- array("author" => "foo", "title" => "cool article", "timestamp" => 1316553353, "excerpt" => "bla", "full" => "blablabla"),
- array("author" => "bar", "title" => "awesome", "timestamp" => 1316552000, "excerpt" => "...", "full" => ".........."),
- array("author" => "baz", "title" => "<ingenious", "timestamp" => 1316551000, "excerpt" => "...", "full" => ".........."),
- array("author" => "baz", "title" => "whatever...", "timestamp" => 1316550000, "excerpt" => "...", "full" => "..........")
+ array("author" => "foo", "title" => "cool article", "timestamp" => 1316553353, "excerpt" => "bla", "full" => "blablabla"),
+ array("author" => "bar", "title" => "awesome", "timestamp" => 1316552000, "excerpt" => "...", "full" => ".........."),
+ array("author" => "baz", "title" => "<ingenious", "timestamp" => 1316551000, "excerpt" => "...", "full" => ".........."),
+ array("author" => "baz", "title" => "whatever...", "timestamp" => 1316550000, "excerpt" => "...", "full" => "..........")
);
$ste->vars["foo"] = "baz";
@@ -62,5 +62,3 @@ $ste->vars["baz"] = array("lol" => "cool");
# Execute the template and output the result
echo $ste->exectemplate("articles.html");
-
-?>