-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a1777f
commit 9c2ea32
Showing
26 changed files
with
1,446 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Generated binaries | ||
/build/*.zip | ||
/bin/*.zip | ||
# Doxygen generated documentation | ||
/build/doxygen/doxygen_warnings.log | ||
/doc/code/doxygen | ||
# Composer managed dependencies | ||
/vendor | ||
/dev/bin | ||
# PHPdocumentor generated files | ||
/build/phpdoc | ||
/doc/code/phpdoc | ||
# Sphinx generated files | ||
/doc/user/build | ||
/.settings/ | ||
/.buildpath | ||
/.project | ||
# Other | ||
*.back | ||
/.editorconfig | ||
/.gitattributes | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# CHANGELOG EASYCRM FOR [DOLIBARR ERP CRM](https://www.dolibarr.org) | ||
|
||
## 1.0 | ||
|
||
Initial version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,44 @@ | ||
# easycrm | ||
simplification de la crm pour Dolibarr | ||
# EasyCRM sur [DOLIBARR ERP CRM](https://www.dolibarr.org) | ||
|
||
## Informations | ||
|
||
- Numéro du module : 436351 | ||
- Version : 1.0.0 | ||
- Dernière mise à jour : 01/03/2023 | ||
- Éditeur : [Eoxia](https://www.eoxia.com) | ||
- Compatibilité : Dolibarr 15.0.0 - 16.0.4 | ||
- Thème : eldy | ||
- Licence : GPLv3 | ||
- Disponible sur : Windows - MacOS - Linux | ||
|
||
## Liens | ||
|
||
- Support & Assistance : [Forum www.dolibarr.fr](https://www.dolibarr.fr) / Par mail à contact@eoxia.com | ||
- Demo : [Demo EasyCRM](https://www.demodoli.digirisk.com) - ID: demo - Password: demo | ||
- Documentation : [Wiki EasyCRM](https://wiki.dolibarr.org/index.php/Module_EasyCRM) | ||
- Projet GitHub : [Projet EasyCRM](https://github.com/Eoxia/easycrm/projects?query=is%3Aopen) | ||
- D'autres modules développés par Eoxia disponibles sur [DoliStore.com](https://www.dolistore.com) | ||
|
||
## Fonctionnalités | ||
|
||
- Simplification de la CRM | ||
|
||
## Traductions | ||
|
||
- Français | ||
- Anglais | ||
|
||
## Installation | ||
|
||
### Méthode 1 : | ||
|
||
- Depuis le menu "Déployer/Installer un module externe" de Dolibarr : | ||
- Glisser l'archive ZIP 'module_easycrm-X.Y.Z' et cliquer sur "ENVOYER FICHIER" | ||
- Activer le module dans la liste des Modules/Applications installés | ||
|
||
### Méthode 2 : | ||
|
||
- Dans le dossier "dolibarr/htdocs/custom" copier la ligne suivante : | ||
``` | ||
git clone https://github.com/Eoxia/easycrm.git | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?php | ||
/* Copyright (C) 2023 EVARISK <technique@evarisk.com> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/** | ||
* \file admin/about.php | ||
* \ingroup easycrm | ||
* \brief About page of module EasyCRM. | ||
*/ | ||
|
||
// Load EasyCRM environment | ||
if (file_exists('../easycrm.main.inc.php')) { | ||
require_once __DIR__ . '/../easycrm.main.inc.php'; | ||
} else { | ||
die('Include of easycrm main fails'); | ||
} | ||
|
||
// Libraries | ||
require_once __DIR__ . '/../lib/easycrm.lib.php'; | ||
require_once __DIR__ . '/../core/modules/modEasyCRM.class.php'; | ||
|
||
// Global variables definitions | ||
global $db, $langs, $user; | ||
|
||
// Load translation files required by the page | ||
saturne_load_langs(); | ||
|
||
// Initialize technical objects | ||
$modEasyCRM = new modEasyCRM($db); | ||
|
||
// Get parameters | ||
$backtopage = GETPOST('backtopage', 'alpha'); | ||
|
||
// Security check - Protection if external user | ||
$permissiontoread = $user->rights->easycrm->adminpage->read; | ||
saturne_check_access($permissiontoread); | ||
|
||
/* | ||
* View | ||
*/ | ||
|
||
$title = $langs->trans('ModuleAbout', 'EasyCRM'); | ||
$help_url = 'FR:Module_EasyCRM'; | ||
|
||
saturne_header(0,'', $title, $help_url); | ||
|
||
// Subheader | ||
$linkback = '<a href="' . ($backtopage ?: DOL_URL_ROOT . '/admin/modules.php?restore_lastsearch_values=1') . '">' . $langs->trans('BackToModuleList') . '</a>'; | ||
print load_fiche_titre($title, $linkback, 'easycrm_color@easycrm'); | ||
|
||
// Configuration header | ||
$head = easycrm_admin_prepare_head(); | ||
print dol_get_fiche_head($head, 'about', $title, -1, 'easycrm_color@easycrm'); | ||
|
||
print $modEasyCRM->getDescLong(); | ||
|
||
// Page end | ||
print dol_get_fiche_end(); | ||
llxFooter(); | ||
$db->close(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?php | ||
//Silence is golden |
Oops, something went wrong.