aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/programmers/api-functions/api-test-install.md
blob: 3afe5ec1d28c31b0e676cedfa37740b048ff5e5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
testInstall()

checks Smarty installation

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

void

testInstall

This function verifies that all required working folders of the Smarty
installation can be accessed. It does output a corresponding protocoll.


    <?php
    require_once('Smarty.class.php');
    $smarty  = new Smarty();
    $smarty->testInstall();
    ?>