Giter Club home page Giter Club logo

projets-developpement's People

Contributors

evarisk-theo avatar

Watchers

 avatar

projets-developpement's Issues

Dans le code de l'import, faire en sorte de pouvoir mettre des champs dupliquer pour importer des gros fichiers avec plusieurs tables

Solution proposée: Ajouter une variable dans le mod qui permet d'indiquer quels sont les champs qui sont répétés et si ces champs sont renseignées alors ne pas les insert dans leur table mais insert les champs qui suivent

exemple:
REF_FICHE1 - LABEL - REF_QUESTION1 - LABEL - REF_REPONSE1
REF_FICHE1 - LABEL - REF_QUESTION1 - LABEL - REF_REPONSE2
REF_FICHE1 - LABEL - REF_QUESTION1 - LABEL - REF_REPONSE3
REF_FICHE1 - LABEL - REF_QUESTION2 - LABEL - REF_REPONSE4
REF_FICHE1 - LABEL - REF_QUESTION2 - LABEL - REF_REPONSE5
REF_FICHE2 - LABEL - REF_QUESTION3 - LABEL - REF_REPONSE6

REF_FICHE1, REF_QUESTION1 et REF_REPONSE1 sont INSERT une fois en base de données puis la fois d'après on ignore le REF_FICHE1 et REF_QUESTION1 et on INSERT seulement REF_REPONSE2, etc...

GetNomUrl a virer si le seul ajout c'est target blank

J'ai trouvé une bien meilleur solution que juste recoder une fonction

HOOK getNomUrl

$doc = new DOMDocument();
$doc->loadHTML($parameters['getnomurl']);
$links = $doc->getElementsByTagName('a');
foreach ($links as $item) {
if (!$item->hasAttribute('target')) {
$item->setAttribute('target','_blank');
}
}
$content = $doc->saveHTML();
$this->resprints = $content;

PR pour la task

Problème de Warning

Update du 15/11/2023

Tenter de faire ce code en JQuery

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.