Skip to content
Snippets Groups Projects
Select Git revision
  • 2ac594fb64daf00c70e6750ff6128f7d4eff34dc
  • master default protected
  • ll-workflow
  • alc-scindage-donnees-pj
  • b24
  • FJ_LL_Tbl_Contrat
  • alc-docker-node
  • ll-apiplatform
  • php84
  • ll-rgpd
  • b23
  • alc-filtre-type-intervenant
  • ll-sans-mdb5
  • formules-ancienne-infra
  • ll-formules
  • alc-intervenant-dmep
  • ll-suppr-v_vol-s
  • b20
  • ll-postgresql
  • b23.0.1
  • b22
  • 24.8
  • 24.7
  • 24.6
  • 24.5
  • 24.4
  • 24.3
  • 24.2
  • 24.1
  • 24.0
  • 23.15
  • 24.0-beta19
  • 24.0-beta18
  • 24.0-beta17
  • 24.0-beta16
  • 24.0-beta15
  • 24.0-beta14
  • 24.0-beta13
  • 23.14
  • 24.0-beta12
  • 24.0-beta11
41 results

install.sql

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    doctrine-module-em.php 2.57 KiB
    <?php
    /*
     * 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.
     *
     * This software consists of voluntary contributions made by many individuals
     * and is licensed under the MIT license. For more information, see
     * <http://www.doctrine-project.org>.
     */
    
    use Zend\ServiceManager\ServiceManager;
    use Zend\Mvc\Application;
    
    ini_set('display_errors', true);
    chdir(__DIR__);
    
    $previousDir = '.';
    
    while (!file_exists('config/application.config.php')) {
        $dir = dirname(getcwd());
    
        if ($previousDir === $dir) {
            throw new RuntimeException(
                'Unable to locate "config/application.config.php": ' .
                'is DoctrineModule in a subdir of your application skeleton?'
            );
        }
    
        $previousDir = $dir;
        chdir($dir);
    }
    
    if (!(@include_once __DIR__ . '/../vendor/autoload.php') && !(@include_once __DIR__ . '/../../../autoload.php')) {
        throw new RuntimeException('Error: vendor/autoload.php could not be found. Did you run php composer.phar install?');
    }
    
    $application = Application::init(include 'config/application.config.php');
    
    /* @var $cli \Symfony\Component\Console\Application */
    $cli = $application->getServiceManager()->get('doctrine.cli');
    
    /**
     * Ajout par rapport à 'doctrine/doctrine-module/bin/doctrine-module.php' original.
     * 
     * Le nom de l'entity manager à utiliser doit être spécifié dans le shell avant l'appel à la commande
     * Doctrine, exemple en bash :
     *      $ export em="orm_radius"
     *      $ vendor/bin/doctrine-module-em dbal:run-sql "select count(*) from radacct"
     */
    $em = $application->getServiceManager()->get('doctrine.entitymanager.' . getenv('em'));
    $helperSet = $cli->getHelperSet();
    $helperSet->set(new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()), 'db');
    $helperSet->set(new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em), 'em');
    /**
     * Fin de l'ajout.
     */
    
    $cli->run();