(mes excuses pour mon orthographe déplorable)
Gestionaire de demandes (anomalie, évolutions fonctionnelles …) sur des projets informatiques.
- outil en mode web
- persistence mysql
- n'importe quel langage (PHP est mieux)
| <?php | |
| if(!defined('sugarEntry'))define('sugarEntry', true); | |
| $startTime = microtime(true); | |
| require_once('include/entryPoint.php'); | |
| ob_start(); | |
| require_once('include/MVC/SugarApplication.php'); | |
| $app = new SugarApplication(); | |
| $app->startSession(); |
| INSERT INTO | |
| ezsearch_tmp_0 SELECT DISTINCT | |
| ezsearch_object_word_link.contentobject_id, | |
| ezsearch_object_word_link.published | |
| FROM ezcontentobject, | |
| ezsearch_object_word_link | |
| , | |
| ezcontentclass, | |
| ezcontentobject_tree |
| { | |
| "name": "M6/Component/Redis", | |
| "description" : "composant permettant d'utiliser Redis", | |
| "type": "library", | |
| "authors": [ | |
| { | |
| "name": "Olivier Mansour", | |
| "email": "olivier.mansour@m6.fr" | |
| } | |
| ], |
| <?php | |
| // build-tools/jenkins/atoum.ci.php | |
| require_once __DIR__ . '/../../vendor/mageekguy/atoum/classes/autoloader.php'; | |
| /* | |
| * CLI report. | |
| */ | |
| $stdOutWriter = new \mageekguy\atoum\writers\std\out(); | |
| $cli = new \mageekguy\atoum\reports\realtime\cli(); |
| <?php | |
| use | |
| mageekguy\atoum\scripts | |
| ; | |
| $score_file = '/tmp/'.posix_getpwuid(posix_getuid())['name'].'atoum.score'; | |
| scripts\runner::setScoreFile($score_file); |
| $articles = $objArticle->getArticle($this->getIdWebSite(), 0, $end, $begin, 0, 0, 0, 0, 0, false, 'id DESC', '', 'y', '', false, '', '', '', '', 'article', '', '', '', '', '', '', '', '', '', '', 0, 0, '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '1'); | |
| /** | |
| * getArticle | |
| * permet de récupérer les articles | |
| * | |
| * @param int $intIdWebSite id du website |
| # setup vagrant | |
| gem install vagrant | |
| vagrant box add lucid32 http://files.vagrantup.com/lucid32.box | |
| mkdir my_vagrant_test | |
| cd my_vagrant_test | |
| vagrant init lucid32 | |
| vim Vagrantfile | |
| vagrant up | |
| vagrant ssh |
| <?php | |
| $projectDir = __DIR__ . '/../..'; | |
| $basedir = $projectDir . '/../'; | |
| require_once $projectDir . '/vendor/atoum/atoum/classes/autoloader.php'; | |
| $projectName = strtoupper(dirname($projectDir)); | |
| /* | |
| * CLI report. | |
| */ |