Alternc  latest
Alternc logiel libre pour l'hébergement
ssl_share.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  ----------------------------------------------------------------------
5  AlternC - Web Hosting System
6  Copyright (C) 2002 by the AlternC Development Team.
7  http://alternc.org/
8  ----------------------------------------------------------------------
9  LICENSE
10 
11  This program is free software; you can redistribute it and/or
12  modify it under the terms of the GNU General Public License (GPL)
13  as published by the Free Software Foundation; either version 2
14  of the License, or (at your option) any later version.
15 
16  This program is distributed in the hope that it will be useful,
17  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  GNU General Public License for more details.
20 
21  To read the license please visit http://www.gnu.org/copyleft/gpl.html
22  ----------------------------------------------------------------------
23  Original Author of file: Benjamin Sonntag
24  Purpose of file: Create / Import an SSL Certificate
25  ----------------------------------------------------------------------
26  */
27 require_once("../class/config.php");
28 
29 if (!$admin->enabled) {
30  __("This page is restricted to authorized staff");
31  exit();
32 }
33 
34 $fields = array(
35  "id" => array("request", "integer", 0),
36  "action" => array("request", "integer", 0),
37 );
39 
40 if ($ssl->share($id, $action)) {
41  require_once("ssl_view.php");
42 } else {
43  require_once("ssl_list.php");
44 }
45 
exit
Definition: adm_doadd.php:70
__($str)
Definition: functions.php:404
getFields($fields, $requestOnly=false)
Get the Fields of the posted form from $_REQUEST or POST or GET and check their type.
Definition: functions.php:688
if(!isset($is_include)) if(! $key &&! $crt) $id
if(! $admin->enabled) $fields
Definition: ssl_share.php:34