diff options
author | xue <> | 2005-12-29 11:52:31 +0000 |
---|---|---|
committer | xue <> | 2005-12-29 11:52:31 +0000 |
commit | 658a7e1c4cf5a53dcd61ee196658090d00f2d64a (patch) | |
tree | c37b767c6e4d70baaf9ff471ce3721c9d8733f72 /demos/quickstart/protected/pages/Fundamentals/Applications.page | |
parent | c0006cf0da8c3499060df7378cc376c98cbce7c4 (diff) |
Used THighlighter to show code fragments.
Diffstat (limited to 'demos/quickstart/protected/pages/Fundamentals/Applications.page')
-rw-r--r-- | demos/quickstart/protected/pages/Fundamentals/Applications.page | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/quickstart/protected/pages/Fundamentals/Applications.page b/demos/quickstart/protected/pages/Fundamentals/Applications.page index f438e3d4..b67debaa 100644 --- a/demos/quickstart/protected/pages/Fundamentals/Applications.page +++ b/demos/quickstart/protected/pages/Fundamentals/Applications.page @@ -6,11 +6,11 @@ An application is an instance of <tt>TApplication</tt> or its derived class. It </p>
<p>
Applications are configured via <a href="?page=Configurations.AppConfig">application configurations</a>. They are usually created in entry scripts like the following,
-<pre class="source">
+<com:TTextHighlighter CssClass="source">
require_once('/path/to/prado.php');
$application = new TApplication;
-$application->run();
-</pre>
+$application->run();
+</com:TTextHighlighter>
where the method <tt>run()</tt> starts the application to handle user requests.
</p>
|