ftimme
2012-05-23 b17cc67ee9cf6f83c2360da16fb53231203ada8a
- Added group (we call groups "circles" so that users don't mix them up with user groups) feature to client messaging section so that messages can be sent to either all clients/resellers or to groups of clients/resellers. TODO: add circle access control so that 1) a reseller can create circles that contain only his clients, not all clients, and 2) a reseller can send messages only to his own circles instead of all circles.
8 files modified
12 files added
598 ■■■■■ changed files
install/sql/incremental/upd_0033.sql 13 ●●●●● patch | view | raw | blame | history
install/sql/ispconfig3.sql 20 ●●●●● patch | view | raw | blame | history
interface/web/client/client_circle_del.php 59 ●●●●● patch | view | raw | blame | history
interface/web/client/client_circle_edit.php 59 ●●●●● patch | view | raw | blame | history
interface/web/client/client_circle_list.php 24 ●●●●● patch | view | raw | blame | history
interface/web/client/client_message.php 39 ●●●● patch | view | raw | blame | history
interface/web/client/form/client_circle.tform.php 137 ●●●●● patch | view | raw | blame | history
interface/web/client/lib/lang/de.lng 1 ●●●● patch | view | raw | blame | history
interface/web/client/lib/lang/de_client_circle.lng 9 ●●●●● patch | view | raw | blame | history
interface/web/client/lib/lang/de_client_circle_list.lng 10 ●●●●● patch | view | raw | blame | history
interface/web/client/lib/lang/de_client_message.lng 6 ●●●●● patch | view | raw | blame | history
interface/web/client/lib/lang/en.lng 1 ●●●● patch | view | raw | blame | history
interface/web/client/lib/lang/en_client_circle.lng 9 ●●●●● patch | view | raw | blame | history
interface/web/client/lib/lang/en_client_circle_list.lng 10 ●●●●● patch | view | raw | blame | history
interface/web/client/lib/lang/en_client_message.lng 6 ●●●●● patch | view | raw | blame | history
interface/web/client/lib/module.conf.php 5 ●●●●● patch | view | raw | blame | history
interface/web/client/list/client_circle.list.php 86 ●●●●● patch | view | raw | blame | history
interface/web/client/templates/client_circle_edit.htm 39 ●●●●● patch | view | raw | blame | history
interface/web/client/templates/client_circle_list.htm 59 ●●●●● patch | view | raw | blame | history
interface/web/client/templates/client_message.htm 6 ●●●●● patch | view | raw | blame | history
install/sql/incremental/upd_0033.sql
New file
@@ -0,0 +1,13 @@
CREATE TABLE IF NOT EXISTS `client_circle` (
  `circle_id` int(11) NOT NULL AUTO_INCREMENT,
  `sys_userid` int(11) NOT NULL DEFAULT '0',
  `sys_groupid` int(11) NOT NULL DEFAULT '0',
  `sys_perm_user` varchar(5) DEFAULT NULL,
  `sys_perm_group` varchar(5) DEFAULT NULL,
  `sys_perm_other` varchar(5) DEFAULT NULL,
  `circle_name` varchar(64) DEFAULT NULL,
  `client_ids` text,
  `description` text,
  `active` enum('n','y') NOT NULL default 'y',
  PRIMARY KEY (`circle_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
install/sql/ispconfig3.sql
@@ -152,6 +152,26 @@
-- --------------------------------------------------------
--
-- Table structure for table `client_circle`
--
CREATE TABLE `client_circle` (
  `circle_id` int(11) NOT NULL AUTO_INCREMENT,
  `sys_userid` int(11) NOT NULL DEFAULT '0',
  `sys_groupid` int(11) NOT NULL DEFAULT '0',
  `sys_perm_user` varchar(5) DEFAULT NULL,
  `sys_perm_group` varchar(5) DEFAULT NULL,
  `sys_perm_other` varchar(5) DEFAULT NULL,
  `circle_name` varchar(64) DEFAULT NULL,
  `client_ids` text,
  `description` text,
  `active` enum('n','y') NOT NULL default 'y',
  PRIMARY KEY (`circle_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- 
-- Table structure for table  `client_template`
-- 
interface/web/client/client_circle_del.php
New file
@@ -0,0 +1,59 @@
<?php
/*
Copyright (c) 2005, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    * Neither the name of ISPConfig nor the names of its contributors
      may be used to endorse or promote products derived from this software without
      specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/******************************************
* Begin Form configuration
******************************************/
$list_def_file = "list/client_circle.list.php";
$tform_def_file = "form/client_circle.tform.php";
/******************************************
* End Form configuration
******************************************/
require_once('../../lib/config.inc.php');
require_once('../../lib/app.inc.php');
//* Check permissions for module
$app->auth->check_module_permissions('client');
if($conf['demo_mode'] == true) $app->error('This function is disabled in demo mode.');
$app->uses('tpl,tform');
$app->load('tform_actions');
class page_action extends tform_actions {
}
$page = new page_action;
$page->onDelete()
?>
interface/web/client/client_circle_edit.php
New file
@@ -0,0 +1,59 @@
<?php
/*
Copyright (c) 2005 - 2012, Till Brehm, projektfarm Gmbh, ISPConfig UG
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    * Neither the name of ISPConfig nor the names of its contributors
      may be used to endorse or promote products derived from this software without
      specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/******************************************
* Begin Form configuration
******************************************/
$tform_def_file = "form/client_circle.tform.php";
/******************************************
* End Form configuration
******************************************/
require_once('../../lib/config.inc.php');
require_once('../../lib/app.inc.php');
require_once('tools.inc.php');
//* Check permissions for module
$app->auth->check_module_permissions('client');
// Loading classes
$app->uses('tpl,tform,tform_actions');
$app->load('tform_actions');
class page_action extends tform_actions {
}
$page = new page_action;
$page->onLoad();
?>
interface/web/client/client_circle_list.php
New file
@@ -0,0 +1,24 @@
<?php
require_once('../../lib/config.inc.php');
require_once('../../lib/app.inc.php');
/******************************************
* Begin Form configuration
******************************************/
$list_def_file = "list/client_circle.list.php";
/******************************************
* End Form configuration
******************************************/
//* Check permissions for module
$app->auth->check_module_permissions('client');
$app->uses('listform_actions');
$app->listform_actions->SQLOrderBy = 'ORDER BY circle_name, circle_id';
$app->listform_actions->onLoad();
?>
interface/web/client/client_message.php
@@ -59,13 +59,28 @@
    
    //* Send message
    if($error == '') {
        //* Select all clients and resellers
        if($_SESSION["s"]["user"]["typ"] == 'admin'){
            $sql = "SELECT * FROM client WHERE email != ''";
        if(intval($_POST['recipient']) > 0){
            $circle = $app->db->queryOneRecord("SELECT client_ids FROM client_circle WHERE active = 'y' AND circle_id = ".intval($_POST['recipient']));
            if(isset($circle['client_ids']) && $circle['client_ids'] != ''){
                $tmp_client_ids = explode(',',$circle['client_ids']);
                $where = array();
                foreach($tmp_client_ids as $tmp_client_id){
                    $where[] = 'client_id = '.$tmp_client_id;
                }
                if(!empty($where)) $where_clause = ' AND ('.implode(' OR ', $where).')';
                $sql = "SELECT * FROM client WHERE email != ''".$where_clause;
            } else {
                $sql = "SELECT * FROM client WHERE 0";
            }
        } else {
            $client_id = intval($_SESSION['s']['user']['client_id']);
            if($client_id == 0) die('Invalid Client ID.');
            $sql = "SELECT * FROM client WHERE email != '' AND parent_client_id = '$client_id'";
            //* Select all clients and resellers
            if($_SESSION["s"]["user"]["typ"] == 'admin'){
                $sql = "SELECT * FROM client WHERE email != ''";
            } else {
                $client_id = intval($_SESSION['s']['user']['client_id']);
                if($client_id == 0) die('Invalid Client ID.');
                $sql = "SELECT * FROM client WHERE email != '' AND parent_client_id = '$client_id'";
            }
        }
        
        //* Get clients
@@ -73,7 +88,6 @@
        if(is_array($clients)) {
            $msg = $wb['email_sent_to_txt'].' ';
            foreach($clients as $client) {
                //* Parse cleint details into message
                $message = $_POST['message'];
                foreach($client as $key => $val) {
@@ -94,6 +108,17 @@
    }
}
// Recipient Drop-Down
$recipient = '<option value="0">'.$wb['all_clients_resellers_txt'].'</option>';
$sql = "SELECT * FROM client_circle WHERE active = 'y'";
$circles = $app->db->queryAllRecords($sql);
if(is_array($circles) && !empty($circles)){
    foreach($circles as $circle){
        $recipient .= '<option value="'.$circle['circle_id'].'">'.$circle['circle_name'].'</option>';
    }
}
$app->tpl->setVar('recipient',$recipient);
if($_SESSION["s"]["user"]["typ"] == 'admin'){
    $app->tpl->setVar('form_legend_txt',$wb['form_legend_admin_txt']);
} else {
interface/web/client/form/client_circle.tform.php
New file
@@ -0,0 +1,137 @@
<?php
/*
    Form Definition
    Tabledefinition
    Datatypes:
    - INTEGER (Forces the input to Int)
    - DOUBLE
    - CURRENCY (Formats the values to currency notation)
    - VARCHAR (no format check, maxlength: 255)
    - TEXT (no format check)
    - DATE (Dateformat, automatic conversion to timestamps)
    Formtype:
    - TEXT (Textfield)
    - TEXTAREA (Textarea)
    - PASSWORD (Password textfield, input is not shown when edited)
    - SELECT (Select option field)
    - RADIO
    - CHECKBOX
    - CHECKBOXARRAY
    - FILE
    VALUE:
    - Wert oder Array
    Hint:
    The ID field of the database table is not part of the datafield definition.
    The ID field must be always auto incement (int or bigint).
    Search:
    - searchable = 1 or searchable = 2 include the field in the search
    - searchable = 1: this field will be the title of the search result
    - searchable = 2: this field will be included in the description of the search result
*/
$form["title"]             = "Client Circle";
$form["description"]     = "";
$form["name"]             = "client_circle";
$form["action"]            = "client_circle_edit.php";
$form["db_table"]        = "client_circle";
$form["db_table_idx"]    = "circle_id";
$form["db_history"]        = "yes";
$form["tab_default"]    = "circle";
$form["list_default"]    = "client_circle_list.php";
$form["auth"]            = 'yes';
$form["auth_preset"]["userid"]  = 0; // 0 = id of the user, > 0 id must match with id of current user
$form["auth_preset"]["groupid"] = 0; // 0 = default groupid of the user, > 0 id must match with groupid of current user
$form["auth_preset"]["perm_user"] = 'riud'; //r = read, i = insert, u = update, d = delete
$form["auth_preset"]["perm_group"] = 'riud'; //r = read, i = insert, u = update, d = delete
$form["auth_preset"]["perm_other"] = ''; //r = read, i = insert, u = update, d = delete
//* Languages
$language_list = array();
$handle = @opendir(ISPC_ROOT_PATH.'/lib/lang');
while ($file = @readdir ($handle)) {
    if ($file != '.' && $file != '..') {
        if(@is_file(ISPC_ROOT_PATH.'/lib/lang/'.$file) and substr($file,-4,4) == '.lng') {
            $tmp = substr($file, 0, 2);
            $language_list[$tmp] = $tmp;
        }
    }
}
//* Load themes
$themes_list = array();
$handle = @opendir(ISPC_THEMES_PATH);
while ($file = @readdir ($handle)) {
    if (substr($file, 0, 1) != '.') {
        if(@is_dir(ISPC_THEMES_PATH."/$file")) {
            $themes_list[$file] = $file;
        }
    }
}
$form["tabs"]['circle'] = array (
    'title'     => "Circle",
    'width'     => 100,
    'template'     => "templates/client_circle_edit.htm",
    'fields'     => array (
    ##################################
    # Begin Datatable fields
    ##################################
        'circle_name' => array (
            'datatype'    => 'VARCHAR',
            'formtype'    => 'TEXT',
            'default'    => '',
            'value'        => '',
            'separator'    => '',
            'width'        => '30',
            'maxlength'    => '255',
            'rows'        => '',
            'cols'        => '',
            'searchable' => 2
        ),
        'client_ids' => array (
            'datatype'    => 'VARCHAR',
            'formtype'    => 'CHECKBOXARRAY',
            'default'    => '',
            'separator' => ',',
            'datasource'    => array (     'type'    => 'SQL',
                                        'querystring' => 'SELECT client_id,contact_name FROM client WHERE 1 ORDER BY contact_name',
                                        'keyfield'=> 'client_id',
                                        'valuefield'=> 'contact_name'
                                     ),
            'value'        => ''
        ),
        'description' => array (
            'datatype'    => 'TEXT',
            'formtype'    => 'TEXTAREA',
            'default'    => '',
            'value'        => '',
            'separator'    => '',
            'width'        => '',
            'maxlength'    => '',
            'rows'        => '10',
            'cols'        => '30'
        ),
        'active' => array (
            'datatype'    => 'VARCHAR',
            'formtype'    => 'CHECKBOX',
            'default'    => 'y',
            'value'        => array(0 => 'n',1 => 'y')
        ),
    ##################################
    # END Datatable fields
    ##################################
    )
);
?>
interface/web/client/lib/lang/de.lng
@@ -14,4 +14,5 @@
$wb['delete_additional_template_txt'] = 'Zusätzliches Template löschen';
$wb['Messaging'] = 'Benachrichtigungen';
$wb['Send email'] = 'E-Mail versenden';
$wb['Edit Client Circle'] = 'Kundenkreis bearbeiten';
?>
interface/web/client/lib/lang/de_client_circle.lng
New file
@@ -0,0 +1,9 @@
<?php
$wb["Client Circle"] = 'Kundenkreis';
$wb["Circle"] = 'Kreis';
$wb["circle_txt"] = 'Kreis';
$wb["circle_name_txt"] = 'Kreisname';
$wb["client_ids_txt"] = 'Kunden/Reseller';
$wb["description_txt"] = 'Beschreibung';
$wb["active_txt"] = 'Aktiv';
?>
interface/web/client/lib/lang/de_client_circle_list.lng
New file
@@ -0,0 +1,10 @@
<?php
$wb["list_head_txt"] = 'Kundenkreise';
$wb["circle_id_txt"] = 'Kreis-ID';
$wb["circle_name_txt"] = 'Kreisname';
$wb["description_txt"] = 'Beschreibung';
$wb["add_new_record_txt"] = 'Kreis hinzufügen';
$wb["filter_txt"] = 'Filter';
$wb["delete_txt"] = 'Löschen';
$wb["active_txt"] = 'Aktiv';
?>
interface/web/client/lib/lang/de_client_message.lng
@@ -4,10 +4,12 @@
$wb["sender_txt"] = 'Absender-E-Mail-Adresse';
$wb["subject_txt"] = 'Betreff';
$wb["message_txt"] = 'Nachricht';
$wb["form_legend_client_txt"] = 'E-Mail-Nachricht an alle Kunden versenden.';
$wb["form_legend_admin_txt"] = 'E-Mail-Nachricht an alle Kunden und Reseller versenden.';
$wb["form_legend_client_txt"] = 'E-Mail-Nachricht an Kunden versenden.';
$wb["form_legend_admin_txt"] = 'E-Mail-Nachricht an Kunden und Reseller versenden.';
$wb["sender_invalid_error"] = 'Absender-E-Mail-Adresse ist ungültig.';
$wb["subject_invalid_error"] = 'Betreff ist leer.';
$wb["message_invalid_error"] = 'Nachricht ist leer.';
$wb["email_sent_to_txt"] = 'E-Mail verschickt an:';
$wb["recipient_txt"] = 'Empfänger';
$wb["all_clients_resellers_txt"] = 'Alle Kunden und Reseller';
?>
interface/web/client/lib/lang/en.lng
@@ -14,4 +14,5 @@
$wb['delete_additional_template_txt'] = 'Delete additional template';
$wb['Messaging'] = 'Messaging';
$wb['Send email'] = 'Send Email';
$wb['Edit Client Circle'] = 'Edit Client Circle';
?>
interface/web/client/lib/lang/en_client_circle.lng
New file
@@ -0,0 +1,9 @@
<?php
$wb["Client Circle"] = 'Client Circle';
$wb["Circle"] = 'Circle';
$wb["circle_txt"] = 'Circle';
$wb["circle_name_txt"] = 'Circle Name';
$wb["client_ids_txt"] = 'Clients/Resellers';
$wb["description_txt"] = 'Description';
$wb["active_txt"] = 'Active';
?>
interface/web/client/lib/lang/en_client_circle_list.lng
New file
@@ -0,0 +1,10 @@
<?php
$wb["list_head_txt"] = 'Client Circles';
$wb["circle_id_txt"] = 'Circle ID';
$wb["circle_name_txt"] = 'Circle Name';
$wb["description_txt"] = 'Description';
$wb["add_new_record_txt"] = 'Add new circle';
$wb["filter_txt"] = 'Filter';
$wb["delete_txt"] = 'Delete';
$wb["active_txt"] = 'Active';
?>
interface/web/client/lib/lang/en_client_message.lng
@@ -4,10 +4,12 @@
$wb["sender_txt"] = 'Sender email address';
$wb["subject_txt"] = 'Subject';
$wb["message_txt"] = 'Message';
$wb["form_legend_client_txt"] = 'Send email message to all clients.';
$wb["form_legend_admin_txt"] = 'Send email message to all clients and resellers.';
$wb["form_legend_client_txt"] = 'Send email message to clients.';
$wb["form_legend_admin_txt"] = 'Send email message to clients and resellers.';
$wb["sender_invalid_error"] = 'Sender email invalid.';
$wb["subject_invalid_error"] = 'Subject is empty.';
$wb["message_invalid_error"] = 'Message is empty.';
$wb["email_sent_to_txt"] = 'Email sent to:';
$wb["recipient_txt"] = 'Recipient';
$wb["all_clients_resellers_txt"] = 'All clients and resellers';
?>
interface/web/client/lib/module.conf.php
@@ -56,6 +56,11 @@
unset($items);
}
$items[] = array( 'title'     => "Edit Client Circle",
                  'target'     => 'content',
                  'link'    => 'client/client_circle_list.php',
                  'html_id' => 'client_circle_list');
$items[] = array( 'title'     => "Send email",
                  'target'     => 'content',
                  'link'    => 'client/client_message.php',
interface/web/client/list/client_circle.list.php
New file
@@ -0,0 +1,86 @@
<?php
/*
    Datatypes:
    - INTEGER
    - DOUBLE
    - CURRENCY
    - VARCHAR
    - TEXT
    - DATE
*/
// Name of the list
$liste["name"]                 = "client_circle";
// Database table
$liste["table"]             = "client_circle";
// Index index field of the database table
$liste["table_idx"]            = "circle_id";
// Search Field Prefix
$liste["search_prefix"]     = "search_";
// Records per page
$liste["records_per_page"]     = "15";
// Script File of the list
$liste["file"]                = "client_circle_list.php";
// Script file of the edit form
$liste["edit_file"]            = "client_circle_edit.php";
// Script File of the delete script
$liste["delete_file"]        = "client_circle_del.php";
// Paging Template
$liste["paging_tpl"]        = "templates/paging.tpl.htm";
// Enable authe
$liste["auth"]                = "yes";
/*****************************************************
* Suchfelder
*****************************************************/
$liste["item"][] = array(    'field'        => "circle_id",
                            'datatype'    => "INTEGER",
                            'formtype'    => "TEXT",
                            'op'        => "=",
                            'prefix'    => "",
                            'suffix'    => "",
                            'width'        => "",
                            'value'        => "");
$liste["item"][] = array(    'field'        => "active",
                            'datatype'    => "VARCHAR",
                            'formtype'    => "SELECT",
                            'op'        => "=",
                            'prefix'    => "",
                            'suffix'    => "",
                            'width'        => "",
                            'value'        => array('y' => "<div id=\"ir-Yes\" class=\"swap\"><span>Yes</span></div>",'n' => "<div class=\"swap\" id=\"ir-No\"><span>No</span></div>"));
$liste["item"][] = array(    'field'        => "circle_name",
                            'datatype'    => "VARCHAR",
                            'formtype'    => "TEXT",
                            'op'        => "like",
                            'prefix'    => "%",
                            'suffix'    => "%",
                            'width'        => "",
                            'value'        => "");
$liste["item"][] = array(    'field'        => "description",
                            'datatype'    => "VARCHAR",
                            'formtype'    => "TEXT",
                            'op'        => "like",
                            'prefix'    => "%",
                            'suffix'    => "%",
                            'width'        => "",
                            'value'        => "");
?>
interface/web/client/templates/client_circle_edit.htm
New file
@@ -0,0 +1,39 @@
<h2><tmpl_var name="list_head_txt"></h2>
<p><tmpl_var name="list_desc_txt"></p>
<div class="panel panel_client">
  <div class="pnl_formsarea">
    <fieldset class="inlineLabels"><legend>{tmpl_var name='circle_txt'}</legend>
      <div class="ctrlHolder">
          <label for="circle_name">{tmpl_var name='circle_name_txt'}*</label>
        <input name="circle_name" id="circle_name" value="{tmpl_var name='circle_name'}" size="30" maxlength="255" type="text" class="textInput" />
      </div>
      <div class="ctrlHolder">
                <p class="label">{tmpl_var name='client_ids_txt'}</p>
                <div class="multiField">
                        {tmpl_var name='client_ids'}
                </div>
      </div>
      <div class="ctrlHolder">
          <label for="description">{tmpl_var name='description_txt'}</label>
        <textarea name="description" id="description" rows='10' cols='30'>{tmpl_var name='description'}</textarea>
      </div>
      <div class="ctrlHolder">
                <p class="label">{tmpl_var name='active_txt'}</p>
                <div class="multiField">
                    {tmpl_var name='active'}
                </div>
      </div>
      {tmpl_var name='required_fields_txt'}
    </fieldset>
    <input type="hidden" name="id" value="{tmpl_var name='id'}">
    <div class="buttonHolder buttons">
      <button class="positive iconstxt icoPositive" type="button" value="{tmpl_var name='btn_save_txt'}" onClick="submitForm('pageForm','client/client_circle_edit.php');"><span>{tmpl_var name='btn_save_txt'}</span></button>
      <button class="negative iconstxt icoNegative" type="button" value="{tmpl_var name='btn_cancel_txt'}" onClick="loadContent('client/client_circle_list.php');"><span>{tmpl_var name='btn_cancel_txt'}</span></button>
    </div>
  </div>
</div>
interface/web/client/templates/client_circle_list.htm
New file
@@ -0,0 +1,59 @@
<h2><tmpl_var name="list_head_txt"></h2>
<p><tmpl_var name="list_desc_txt"></p>
<div class="panel panel_list_clients">
  <div class="pnl_toolsarea">
    <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend>
      <div class="buttons">
        <button class="iconstxt icoAdd" type="button" onClick="loadContent('client/client_circle_edit.php');">
          <span>{tmpl_var name="add_new_record_txt"}</span>
        </button>
      </div>
    </fieldset>
  </div>
  <div class="pnl_listarea">
    <fieldset><legend><tmpl_var name="list_head_txt"></legend>
      <table class="list">
        <thead>
          <tr>
            <th class="tbl_col_circle_id" scope="col"><tmpl_var name="circle_id_txt"></th>
            <th class="tbl_col_active" scope="col"><tmpl_var name="active_txt"></th>
            <th class="tbl_col_circle_name" scope="col"><tmpl_var name="circle_name_txt"></th>
            <th class="tbl_col_description" scope="col"><tmpl_var name="description_txt"></th>
            <th class="" scope="col">{tmpl_var name='search_limit'}</th>
          </tr>
          <tr>
            <td class="tbl_col_circle_id"><input type="text" name="search_circle_id" value="{tmpl_var name='search_circle_id'}" style="width:30px;" /></td>
            <td class="tbl_col_active"><select name="search_active">{tmpl_var name='search_active'}</select></td>
            <td class="tbl_col_circle_name"><input type="text" name="search_circle_name" value="{tmpl_var name='search_circle_name'}" style="width:120px;" /></td>
            <td class="tbl_col_description"><input type="text" name="search_description" value="{tmpl_var name='search_description'}" style="width:120px;" /></td>
            <td class="tbl_col_buttons"><div class="buttons"><button type="button" class="icons16 icoFilter" name="Filter" id="Filter" value="{tmpl_var name="filter_txt"}" onClick="submitForm('pageForm','client/client_circle_list.php');"><span>{tmpl_var name="filter_txt"}</span></button></div></td>
          </tr>
        </thead>
        <tbody>
          <tmpl_loop name="records">
          <tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>">
            <td class="tbl_col_circle_id"><a href="#" onClick="loadContent('client/client_circle_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="circle_id"}</a></td>
            <td class="tbl_col_active"><a href="#" onClick="loadContent('client/client_circle_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="active"}</a></td>
            <td class="tbl_col_circle_name"><a href="#" onClick="loadContent('client/client_circle_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="circle_name"}</a></td>
            <td class="tbl_col_description"><a href="#" onClick="loadContent('client/client_circle_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="description"}</a></td>
            <td class="tbl_col_buttons">
              <div class="buttons icons16" style="width:60px;">
                <a class="icons16 icoDelete" href="javascript: del_record('client/client_circle_del.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span>{tmpl_var name='delete_txt'}</span></a>
              </div>
            </td>
          </tr>
          </tmpl_loop>
        </tbody>
        <tfoot>
          <tr>
            <td class="tbl_footer tbl_paging" colspan="5"><tmpl_var name="paging"></td>
          </tr>
        </tfoot>
      </table>
    </fieldset>
  </div>
</div>
interface/web/client/templates/client_message.htm
@@ -15,6 +15,12 @@
        <input name="sender" id="sender" value="{tmpl_var name='sender'}" style="width:500px" size="30" maxlength="255" type="text" class="textInput" />
      </div>
      <div class="ctrlHolder">
                    <label for="recipient">{tmpl_var name='recipient_txt'}</label>
                    <select name="recipient" id="recipient" class="selectInput">
                    {tmpl_var name='recipient'}
                    </select>
      </div>
      <div class="ctrlHolder">
          <label for="subject">{tmpl_var name='subject_txt'}</label>
        <input name="subject" id="subject" value="{tmpl_var name='subject'}" style="width:500px" size="30" maxlength="255" type="text" class="textInput" />
      </div>