Code Monkey home page Code Monkey logo

mform_helpers's Introduction

mform_helpers

Das Addon stellt einige Hilfsfunktionen für das MForm Addon bereit.

Beispiele

<?php

$mform = \Kreatif\Project\MForm::factory();

$mform->addTab(function (\Kreatif\Project\MForm $tab) {
    $tab->addTitleTextField();
    $tab->addDefaultLinkField();
});
echo $mform->showWithSettings();
<?php

$mform = new \Kreatif\Project\MForm();

$mform->addTab(function (\Kreatif\Project\MForm $tab) {
    $tab->addTitleLargeField();
});
$mform->addMBlockTab(function (\Kreatif\Project\MForm $tab, $id) {
    $tab->addImageField();
    $tab->addTitleLargeField($id);
    $tab->addTitleSmallField($id);
    $tab->addSimpleTextField($id, 'year');
    $tab->addDefaultTextField($id);
    $tab->addDefaultLinkField($id);
}, [
    'item_label' => 'fact',
    'tab_label' => 'facts',
]);

echo $mform->showWithSettings();
<?php

use RexGraphQL\Type\Reference;

$mform = new \Kreatif\Project\MForm();

$mform->addTab(function (\Kreatif\Project\MForm $tab) {
    $tab->addTitleLargeField();

    $references = Reference::getQuery()->find();
    $options = [];
    foreach ($references as $reference) {
        $options[$reference->getId()] = $reference->getName();
    }
    $tab->addSelectField("1.reference_ids", $options, ['multiple' => true, 'label' => rex_i18n::msg('label.select_references')]);
});
echo $mform->showWithSettings();

mform_helpers's People

Contributors

michael-kreatif avatar philippparth avatar lexplatt avatar danielplan avatar

Stargazers

Thomas Skerbis avatar

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.