aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/programmers/api-functions/api-template-exists.md
blob: 07f61b12ecf2ac742ca8ad76c41b66c9c771a659 (plain) (blame)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
templateExists()

checks whether the specified template exists

Description
===========

bool

templateExists

string

template

It can accept either a path to the template on the filesystem or a
resource string specifying the template.

This example uses `$_GET['page']` to
[`{include}`](#language.function.include) a content template. If the
template does not exist then an error page is displayed instead. First
the `page_container.tpl`


    <html>
    <head><title>{$title}</title></head>
    <body>
    {include file='page_top.tpl'}

    {* include middle content page *}
    {include file=$content_template}

    {include file='page_footer.tpl'}
    </body>

      

And the php script


    <?php

    // set the filename eg index.inc.tpl
    $mid_template = $_GET['page'].'.inc.tpl';

    if( !$smarty->templateExists($mid_template) ){
        $mid_template = 'page_not_found.tpl';
    }
    $smarty->assign('content_template', $mid_template);

    $smarty->display('page_container.tpl');

    ?>

      

See also [`display()`](#api.display), [`fetch()`](#api.fetch),
[`{include}`](#language.function.include) and
[`{insert}`](#language.function.insert)