opensmtpdadmin/admin/list-admin.php

30 lines
564 B
PHP
Raw Normal View History

2022-08-18 14:01:52 +02:00
<?php
//
// OpenSMTPD Admin
// by Mischa Peters <mischa at high5 dot nl>
// Copyright (c) 2022 High5!
// License Info: LICENSE.TXT
//
// File: list-admin.php
//
// Template File: list-admin.tpl
//
// Template Variables:
//
2022-09-02 23:06:08 +02:00
// list_admins
2022-08-18 14:01:52 +02:00
//
// Form POST \ GET Variables:
//
// -none-
//
2022-09-02 23:06:08 +02:00
require '../functions.inc.php';
include '../languages/' . check_language() . '.lang';
2022-08-18 14:01:52 +02:00
$list_admins = list_admins();
2022-09-02 23:06:08 +02:00
include '../templates/header.tpl';
include '../templates/admin_menu.tpl';
include '../templates/admin_list-admin.tpl';
include '../templates/footer.tpl';
2022-08-18 14:01:52 +02:00
?>