Marius Burkard
2016-04-20 4569cae57f127afd093794310ccd290d2d9fdf36
commit | author | age
146783 1 <?php
MC 2 /*
3 Copyright (c) 2007-2010, Till Brehm, projektfarm Gmbh and Oliver Vogel www.muv.com
4 All rights reserved.
5
6 Redistribution and use in source and binary forms, with or without modification,
7 are permitted provided that the following conditions are met:
8
9     * Redistributions of source code must retain the above copyright notice,
10       this list of conditions and the following disclaimer.
11     * Redistributions in binary form must reproduce the above copyright notice,
12       this list of conditions and the following disclaimer in the documentation
13       and/or other materials provided with the distribution.
14     * Neither the name of ISPConfig nor the names of its contributors
15       may be used to endorse or promote products derived from this software without
16       specific prior written permission.
17
18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
25 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
27 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30
31 /******************************************
32 * Begin Form configuration
33 ******************************************/
34
35 $tform_def_file = "form/client_template.tform.php";
36
37 /******************************************
38 * End Form configuration
39 ******************************************/
40
7fe908 41 require_once '../../lib/config.inc.php';
MC 42 require_once '../../lib/app.inc.php';
146783 43
MC 44 //* Check permissions for module
45 $app->auth->check_module_permissions('client');
d6bec7 46 if($_SESSION["s"]["user"]["typ"] != 'admin' && !$app->auth->has_clients($_SESSION['s']['user']['userid'])) die('Client-Templates are for Admins and Resellers only.');
146783 47
MC 48 // Loading classes
49 $app->uses('tpl,tform,tform_actions');
50 $app->load('tform_actions');
51
52 class page_action extends tform_actions {
53
94c961 54     
TB 55     function onSubmit() {
56         global $app;
57         
554c40 58         //* Resellers shall not be able to create another reseller or set reseller specific settings
94c961 59         if($_SESSION["s"]["user"]["typ"] == 'user') {
TB 60             $this->dataRecord['limit_client'] = 0;
554c40 61             $this->dataRecord['limit_domainmodule'] = 0;
94c961 62         }
TB 63         
64         parent::onSubmit();
65     }
66     
146783 67     function onBeforeUpdate() {
MC 68         global $app;
7fe908 69
146783 70         if(isset($this->dataRecord['template_type'])) {
MC 71             //* Check if the template_type has been changed
cc7a82 72             $rec = $app->db->queryOneRecord("SELECT template_type from client_template WHERE template_id = ?", $this->id);
146783 73             if($rec['template_type'] != $this->dataRecord['template_type']) {
MC 74                 //* Add a error message and switch back to old server
75                 $app->tform->errorMessage .= $app->lng('The template type can not be changed.');
76                 $this->dataRecord['template_type'] = $rec['template_type'];
77             }
78             unset($rec);
79         }
80     }
7fe908 81
MC 82
146783 83     /*
MC 84      This function is called automatically right after
85      the data was successful updated in the database.
86     */
87     function onAfterUpdate() {
88         global $app;
7fe908 89
MC 90         $app->uses('client_templates');
a1db68 91         if (isset($this->dataRecord["template_type"])) {
SC 92             $template_type = $this->dataRecord["template_type"];
93         } else {
94             $tmp = $app->tform->getDataRecord($this->id);
95             $template_type = $tmp['template_type'];
96         }
97
146783 98         /*
MC 99          * the template has changed. apply the new data to all clients
100          */
a1db68 101         if ($template_type == 'm'){
cc7a82 102             $sql = "SELECT client_id FROM client WHERE template_master = ?";
MC 103             $clients = $app->db->queryAllRecords($sql, $this->id);
146783 104         } else {
cc7a82 105             $sql = "SELECT client_id FROM client WHERE template_additional LIKE ? OR template_additional LIKE ? OR template_additional LIKE ? UNION SELECT client_id FROM client_template_assigned WHERE client_template_id = ?";
MC 106             $clients = $app->db->queryAllRecords($sql, '%/' . $this->id . '/%', $this->id . '/%', '%/' . $this->id, $this->id);
146783 107         }
MC 108         if (is_array($clients)){
109             foreach ($clients as $client){
7fe908 110                 $app->client_templates->apply_client_templates($client['client_id']);
146783 111             }
MC 112         }
113     }
7fe908 114
146783 115 }
MC 116
117 $page = new page_action;
118 $page->onLoad();
119 ?>