dolibarr 19.0.3
other.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2008-2011 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2011-2017 Juanjo Menent <jmenent@2byte.es>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
24require '../../main.inc.php'; // Load $user and permissions
25require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
26require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
27require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
28require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
29require_once DOL_DOCUMENT_ROOT."/core/lib/takepos.lib.php";
30
31// If socid provided by ajax company selector
32if (!empty($_REQUEST['CASHDESK_ID_THIRDPARTY_id'])) {
33 $_GET['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id', 'alpha');
34 $_POST['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id', 'alpha');
35 $_REQUEST['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id', 'alpha');
36}
37
38// Security check
39if (!$user->admin) {
41}
42
43$langs->loadLangs(array("admin", "cashdesk"));
44
45global $db;
46
47$sql = "SELECT code, libelle FROM ".MAIN_DB_PREFIX."c_paiement";
48$sql .= " WHERE entity IN (".getEntity('c_paiement').")";
49$sql .= " AND active = 1";
50$sql .= " ORDER BY libelle";
51$resql = $db->query($sql);
52$paiements = array();
53if ($resql) {
54 while ($obj = $db->fetch_object($resql)) {
55 array_push($paiements, $obj);
56 }
57}
58
59
60/*
61 * Actions
62 */
63
64// Nothing
65
66
67/*
68 * View
69 */
70
71llxHeader('', $langs->trans("CashDeskSetup"));
72
73$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
74print load_fiche_titre($langs->trans("CashDeskSetup").' (TakePOS)', $linkback, 'title_setup');
76print dol_get_fiche_head($head, 'other', 'TakePOS', -1, 'cash-register');
77print '<br>';
78
79
80// Mode
81print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
82print '<input type="hidden" name="token" value="'.newToken().'">';
83print '<input type="hidden" name="action" value="set">';
84
85print '<div class="div-table-responsive-no-min">';
86
87// Marketplace
88print "<table summary=\"list_of_modules\" class=\"noborder\" width=\"100%\">\n";
89print '<tr class="liste_titre">'."\n";
90print '<td class="titlefield" colspan="2">'.$langs->trans("WebSiteDesc").'</td>';
91print '<td>'.$langs->trans("URL").'</td>';
92print '</tr>';
93
94$url = 'https://www.dolistore.com/45-pos';
95
96print '<tr class="oddeven">'."\n";
97print '<td class="titlefield"><a href="'.$url.'" target="_blank" rel="noopener noreferrer external"><img border="0" class="imgautosize imgmaxwidth180" src="'.DOL_URL_ROOT.'/theme/dolistore_logo.png"></a></td>';
98print '<td>'.$langs->trans("DolistorePosCategory").'</td>';
99print '<td><a href="'.$url.'" target="_blank" rel="noopener noreferrer external">'.$url.'</a></td>';
100print '</tr>';
101
102print "</table>\n";
103
104print '</div>';
105
106print '<br>';
107
108
109print '<div class="div-table-responsive-no-min">';
110
111// Support
112print "<table summary=\"list_of_modules\" class=\"noborder\" width=\"100%\">\n";
113print '<tr class="liste_titre">'."\n";
114print '<td colspan="2">TakePOS Support</td>';
115print '<td>'.$langs->trans("URL").'</td>';
116print '</tr>';
117
118$url = 'https://www.takepos.com';
119
120print '<tr class="oddeven">'."\n";
121print '<td class="left"><a href="'.$url.'" target="_blank" rel="noopener noreferrer external"><img border="0" class="imgautosize imgmaxwidth180" src="../img/takepos.png"></a></td>';
122print '<td>TakePOS original developers</td>';
123print '<td><a href="'.$url.'" target="_blank" rel="noopener noreferrer external">'.$url.'</a></td>';
124print '</tr>';
125
126print "</table>\n";
127
128print '</div>';
129print '<br>';
130
131llxFooter();
132$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
takepos_admin_prepare_head()
Prepare array with list of tabs.