-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#2 [MOD] add: creation of the project
- Loading branch information
1 parent
0685c46
commit 01b5567
Showing
23 changed files
with
1,361 additions
and
69 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,19 @@ | ||
# EditorConfig is awesome: https://editorconfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.php] | ||
indent_size = 4 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,17 @@ | ||
name: 'Generate Auto Changelog' | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
master: | ||
name: 'build' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
fetch-depth: 0 | ||
- name: Generate Auto Changelog | ||
uses: Evarisk/action-auto-changelog@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |
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 +1,52 @@ | ||
# DigiKanban | ||
# DigiKanban sur [DOLIBARR ERP CRM](https://dolibarr.org) | ||
|
||
## Informations | ||
|
||
- Numéro du module : 436305 | ||
- Dernière mise à jour : 02/08/2023 | ||
- Éditeur : [Evarisk](https://evarisk.com) | ||
- Thème : Eldy Menu | ||
- Licence : GPLv3 | ||
- Disponible sur : Windows - MacOS - Linux | ||
|
||
## Version | ||
|
||
- Version : 1.0.0 | ||
- Compatibilité : Dolibarr 16.0.0 - 17.0.2 | ||
- Saturne framework : 1.1.1 | ||
|
||
## Liens | ||
|
||
- Support & Assistance : [Forum dolibarr.fr](https://dolibarr.fr) / Par mail à [email protected] | ||
- Demo : [Demo DigiKanban](https://demodoli.digirisk.com) - ID: demo - Password: demo | ||
- Documentation : [Wiki DigiKanban](https://wiki.dolibarr.org/index.php/Module_DigiKanban) | ||
- Projet GitHub : [Projet DigiKanban](https://github.com/Evarisk/digikanban/projects?query=is%3Aopen) | ||
- Saturne Framework : [Télécharger Saturne](https://dolistore.com/fr/modules/1906-Saturne.html) | ||
- D'autres modules développés par Evarisk disponibles sur [DoliStore.com](https://dolistore.com) | ||
|
||
## Fonctionnalités | ||
|
||
- Création d'urls raccourcies pour YOURLS et Dolibarr | ||
|
||
## Traductions | ||
|
||
- Français | ||
- Anglais | ||
|
||
## Installation | ||
|
||
### Méthode 1 : | ||
|
||
- Depuis le menu "Déployer/Installer un module externe" de Dolibarr : | ||
- Glisser l'archive ZIP 'module_digikanban-X.Y.Z' et cliquer sur "ENVOYER FICHIER" | ||
- Glisser l'archive ZIP 'module_saturne-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 -b main https://github.com/Evarisk/digikanban.git digikanban | ||
git clone -b main https://github.com/Evarisk/saturne.git saturne | ||
``` | ||
- Activer le module dans la liste des Modules/Applications installés |
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 |
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,78 @@ | ||
<?php | ||
/* Copyright (C) 2023 EVARISK <[email protected]> | ||
* | ||
* 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/setup.php | ||
* \ingroup digikanban | ||
* \brief DigiKanban setup page | ||
*/ | ||
|
||
// Load DigiKanban environment | ||
if (file_exists('../digikanban.main.inc.php')) { | ||
require_once __DIR__ . '/../digikanban.main.inc.php'; | ||
} elseif (file_exists('../../digikanban.main.inc.php')) { | ||
require_once __DIR__ . '/../../digikanban.main.inc.php'; | ||
} else { | ||
die('Include of digikanban main fails'); | ||
} | ||
|
||
// Load Dolibarr libraries | ||
require_once DOL_DOCUMENT_ROOT . '/core/lib/admin.lib.php'; | ||
|
||
// Load DigiKanban libraries | ||
require_once __DIR__ . '/../lib/digikanban.lib.php'; | ||
|
||
// Global variables definitions | ||
global $conf, $db, $langs, $user; | ||
|
||
// Load translation files required by the page | ||
saturne_load_langs(['admin']); | ||
|
||
// Get parameters | ||
$action = GETPOST('action', 'alpha'); | ||
$backtopage = GETPOST('backtopage', 'alpha'); | ||
|
||
// Initialize view objects | ||
$form = new Form($db); | ||
|
||
// Security check - Protection if external user | ||
$permissionToRead = $user->rights->digikanban->adminpage->read; | ||
saturne_check_access($permissionToRead); | ||
|
||
/* | ||
* Actions | ||
*/ | ||
|
||
/* | ||
* View | ||
*/ | ||
|
||
$title = $langs->trans('ModuleSetup', 'DigiKanban'); | ||
$help_url = 'FR:Module_DigiKanban'; | ||
|
||
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, 'digikanban_color@digikanban'); | ||
|
||
// Configuration header | ||
$head = digikanban_admin_prepare_head(); | ||
print dol_get_fiche_head($head, 'settings', $title, -1, 'digikanban_color@digikanban'); | ||
|
||
$db->close(); | ||
llxFooter(); |
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.