File: template_functions.php

package info (click to toggle)
phpldapadmin 1.2.6.7-3~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 5,432 kB
  • sloc: php: 17,675; javascript: 5,299; xml: 1,498; sh: 379; python: 148; makefile: 23
file content (23 lines) | stat: -rw-r--r-- 477 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
 * Classes and functions for the template engine.
 *
 * These classes and functions will read our XML template files, as well as
 * query the LDAP server and build a template object that can be used for user
 * input.
 *
 * @author The phpLDAPadmin development team
 * @package phpLDAPadmin
 */

/**
 * Templates Class
 *
 * This class will store all our templates.
 *
 * @package phpLDAPadmin
 * @subpackage Templates
 */
class Templates extends xmlTemplates {
}
?>