2017 © Pedro Peláez
 

wordpress-plugin modularity

Modular component system for WordPress

image

helsingborg-stad/modularity

Modular component system for WordPress

  • Friday, July 20, 2018
  • by sebastianthulin
  • Repository
  • 10 Watchers
  • 6 Stars
  • 1,410 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 7 Forks
  • 7 Open issues
  • 100 Versions
  • 36 % Grown

The README.md

Modularity

Modular component system plugin for WordPress. Drag and drop the bundled modules or your custom modules to your page layout., (*1)

Creating modules

To create your very own Modularity module you simply create a plugin with a class that extends our Modularity\Module class., (*2)

A module actually is the same as a custom post type. However we've added a few details to enable you to use them as modules., (*3)

Use the $this->register() method to create a very basic module., (*4)

Here's a very basic example module for you:, (*5)

/*
 * Plugin Name: Modularity Article Module
 * Plugin URI: -
 * Description: Article module for Modularity
 * Version: 1.0
 * Author: Modularity
 */

namespace MyArticleModule;

class Article extends \Modularity\Module
{
    public function __construct()
    {
        $id = 'article';
        $nameSingular = 'Article';
        $namePlural = 'Articles';
        $description = 'Outputs a full article with title and content';
        $supports = array('editor'); // All modules automatically supports title
        $icon = '[BASE-64 encoded svg data-uri]';
        $plugin = '/path/to/include-file.php' // CAn also be an array of paths to include 
        $cacheTTL = 60*60*24 //Time to live for fragment cache (stored in memcached). 

        $this->register(
            $id,
            $nameSingular,
            $namePlural,
            $description,
            $supports,
            $icon,
            $plugin,
            $cacheTTL
        );
    }
}

new \MyArticleModule\Article;

Module templates

You can easily create your own module templates by placing them in: /wp-content/themes/[my-theme]/templates/module/., (*6)

Name your template file with the following pattern: modularity-[module-id].php. You can get your module's id from the Modularity options page., (*7)

Module boilerplate

You can download our module boilerplate. It will be a good starting point for any custom module that you would like to build., (*8)

Download it here (NOT AVAILABLE YET), (*9)

Action reference

Modularity

Runs when Modularity core is loaded. Typically used to add custom modules., (*10)

Example:, (*11)

add_action('Modularity', function () {
    // Do your thing
});

Modularity/Module/[MODULE SLUG]/enqueue

Enqueue js or css only for the add and edit page of the specified module., (*12)

Example:, (*13)

add_action('Modularity/Module/mod-article/enqueue', function () {
    // Do your thing
});

Modularity/Options/Module

Action to use for adding option fields to modularity options page. Use "Modularity/Options/Save" action to handle save of the option field added, (*14)

Example:, (*15)

add_action('Modularity/Options/Module', function () {
    echo '<input type="text">';
});

Filter reference

Modularity/Module/TemplateVersion3

Enable preview of the upcoming version 3 views with BEM formatting. This may be used already when progressing towards BEM., (*16)

Example:, (*17)

add_filter('Modularity/Module/TemplateVersion3', function(){return true;});

Modularity/Editor/WidthOptions

Filter module width options, (*18)

Params:, (*19)

$options      The default width options array ('value' => 'label')

Example:, (*20)

add_filter('Modularity/Editor/WidthOptions', function ($options) {
    // Do your thing
    return $filteredValue;
});

Modularity/Editor/SidebarIncompability

Enables the theme to add incompability indicators of specific module to an sidebar area. The user will not be able to drag and drop to unsupported areas. This filter may simplify the theme developers work by ruling out some cases., (*21)

Params:, (*22)

$moduleSpecification      The default options for the module post object. 

Example:, (*23)

add_filter('Modularity/Editor/WidthOptions', function ($moduleSpecification) {

    $moduleSpecification['sidebar_compability'] = array("content-area-top"); 

    return $moduleSpecification;
});

Modularity/Display/BeforeModule

Filter module sidebar wrapper (before), (*24)

Params:, (*25)

$beforeModule     The value to filter
$args             Arguments of the sidebar (ex: before_widget)
$moduleType       The module's type
$moduleId         The ID of the module

Example:, (*26)

add_filter('Modularity/Display/BeforeModule', function ($beforeModule, $args, $moduleType, $moduleId) {
    // Do your thing
    return $filteredValue;
});

Modularity/Display/AfterModule

Filter module sidebar wrapper (after), (*27)

Params:, (*28)

$afterModule      The value to filter
$args             Arguments of the sidebar (ex: before_widget)
$moduleType       The module's type
$moduleId         The ID of the module

Example:, (*29)

add_filter('Modularity/Display/AfterModule', function ($afterModule, $args, $moduleType, $moduleId) {
    // Do your thing
    return $filteredValue;
});

Modularity/Module/Container/Sidebars

Container wrapper: Filter what sidebars that should support a containing wrapper on some modules, (*30)

Params:, (*31)

$sidebars      A array of sidebar id's

Modularity/Module/Container/Modules

Container wrapper: Filter what modules that should support a containing wrapper, (*32)

Params:, (*33)

$modules      A array of module ids (post-type names)

Modularity/Module/Container/Template

Container wrapper: Filter the template with html that should be wrapped around each module, (*34)

Params:, (*35)

$markup      A string with markup containing {{module-markup}} replacement key

Modularity/Module/TemplatePath & Modularity/Theme/TemplatePath

Modify (add/edit) paths where to look for module/theme templates Typically used for adding search path's for finding custom modules/theme templates., (*36)

Attention: Unsetting paths may cause issues displaying modules. Plase do not do this unless you know exacly what you are doing., (*37)

Params:, (*38)

$paths      The value to filter

Example:, (*39)

add_filter('Modularity/Module/TemplatePath', function ($paths) {
    return $paths;
});

add_filter('Modularity/Theme/TemplatePath', function ($paths) {
    return $paths;
});

Modularity/Module/Classes

Modify the list of classes added to a module's main element, (*40)

Params:, (*41)

$classes      The classes (array)
$moduleType   The module type
$sidebarArgs  The sidebar's args

Example:, (*42)

add_filter('Modularity/Module/Classes', function ($classes, $moduleType, $sidebarArgs) {
    $classes[] = 'example-class';
    return $classes;
});

Modularity/Display/Markup

Module display markup, (*43)

Params:, (*44)

$markup      The markup
$module      The module post

Example:, (*45)

add_filter('Modularity/Display/Markup', function ($markup, $module) {
    return $markup;
});

Modularity/Display/[MODULE SLUG]/Markup

Params:, (*46)

$markup      The markup
$module      The module post

Example:, (*47)

add_filter('Modularity/Display/Markup', function ($markup, $module) {
    return $markup;
});

Modularity/CoreTemplatesSearchTemplates

What template files to look for, (*48)

Params:, (*49)

$templates

Example:, (*50)

add_filter('Modularity/CoreTemplatesSearchTemplates', function ($templates) {
    $templates[] = 'my-custom-template';
    return $templates;
});

Modularity/Module/Posts/Date

Modify the displayed publish date in Post Modules, (*51)

Params:, (*52)

$date
$postId
$postType

Example:, (*53)

add_filter('Modularity/Module/Posts/Date', function ($date, $postId, $postType) {
    return $date;
});

Modularity/Editor/ModuleCssScope

Allow editors to select a unique appeance (provided by a theme etc) for a module. Adds a single class to the module wrapper, to allow scoping of css styles., (*54)

Params:, (*55)

$scopes - Previously declared scopes. 

Example:, (*56)

add_filter('Modularity/Editor/ModuleCssScope',function($scopes) {
        return array(
            'mod-posts' => array(
                's-buy-card' => __("Make this module sparkle!", 'modularity'),
                's-user-list' => __("A boring user list is what i see", 'modularity')
            )
        );
    });

Tested with support from BrowserStack

This software is tested with the awesome tools from Browserstack., (*57)

, (*58)

The Versions

20/07 2018

dev-master

9999999-dev

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

20/07 2018

2.6.21

2.6.21.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

19/07 2018

2.6.20

2.6.20.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

16/07 2018

2.6.19

2.6.19.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

12/07 2018

2.6.18

2.6.18.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

10/07 2018

2.6.17

2.6.17.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

10/07 2018

2.6.16

2.6.16.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

10/07 2018

2.6.15

2.6.15.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

10/07 2018

2.6.14

2.6.14.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

10/07 2018

2.6.13

2.6.13.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

04/07 2018

2.6.12

2.6.12.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

02/07 2018

2.6.11

2.6.11.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

21/06 2018

2.6.10

2.6.10.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

19/06 2018

2.6.9

2.6.9.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

19/06 2018

dev-develop

dev-develop

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

18/06 2018

2.6.8

2.6.8.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

04/06 2018

2.6.7

2.6.7.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

01/06 2018

2.6.6

2.6.6.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

31/05 2018

2.6.5

2.6.5.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

31/05 2018

2.6.4

2.6.4.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

31/05 2018

2.6.3

2.6.3.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

31/05 2018

2.6.2

2.6.2.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

31/05 2018

2.6.1

2.6.1.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

30/05 2018

2.6.0

2.6.0.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

25/05 2018

2.5.4

2.5.4.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

17/05 2018

2.5.3

2.5.3.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/05 2018

2.5.2

2.5.2.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/05 2018

2.5.1

2.5.1.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/05 2018

2.5.0

2.5.0.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

04/05 2018

2.4.5

2.4.5.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

04/05 2018

2.4.4

2.4.4.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

03/05 2018

2.4.3

2.4.3.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

26/04 2018

2.4.2

2.4.2.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

24/04 2018

2.4.1

2.4.1.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

24/04 2018

2.4.0

2.4.0.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

19/04 2018

2.3.69

2.3.69.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

13/04 2018

2.3.68

2.3.68.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

12/04 2018

2.3.67

2.3.67.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

10/04 2018

2.3.66

2.3.66.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

10/04 2018

2.3.65

2.3.65.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

09/04 2018

2.3.64

2.3.64.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

09/04 2018

2.3.63

2.3.63.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

22/03 2018

2.3.62

2.3.62.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

20/03 2018

2.3.61

2.3.61.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/03 2018

2.3.60

2.3.60.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/03 2018

2.3.59

2.3.59.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/03 2018

2.3.58

2.3.58.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

14/03 2018

2.3.57

2.3.57.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

14/03 2018

2.3.56

2.3.56.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

14/03 2018

2.3.55

2.3.55.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

14/03 2018

2.3.54

2.3.54.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

12/03 2018

2.3.53

2.3.53.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

09/03 2018

2.3.52

2.3.52.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

07/03 2018

2.3.51

2.3.51.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

23/02 2018

2.3.50

2.3.50.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

07/02 2018

2.3.49

2.3.49.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

07/02 2018

2.3.48

2.3.48.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

25/01 2018

2.3.47

2.3.47.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

22/01 2018

2.3.46

2.3.46.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

22/01 2018

2.3.45

2.3.45.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

22/01 2018

2.3.44

2.3.44.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

19/01 2018

2.3.43

2.3.43.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

19/01 2018

2.3.42

2.3.42.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/01 2018

2.3.41

2.3.41.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/01 2018

dev-sff

dev-sff

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

08/01 2018

dev-sff2

dev-sff2

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

29/12 2017

2.3.40

2.3.40.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

28/12 2017

2.3.39

2.3.39.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

18/12 2017

2.3.38

2.3.38.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

30/11 2017

2.3.37

2.3.37.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

29/11 2017

2.3.36

2.3.36.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

27/11 2017

2.3.35

2.3.35.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

24/11 2017

2.3.34

2.3.34.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

23/11 2017

2.3.33

2.3.33.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

20/11 2017

2.3.32

2.3.32.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/11 2017

2.3.31

2.3.31.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin
by Nikolas Ramstedt
by Karl Pettersson

15/11 2017

2.3.30

2.3.30.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

15/11 2017

2.3.29

2.3.29.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

14/11 2017

2.3.28

2.3.28.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

10/11 2017

2.3.27

2.3.27.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

10/11 2017

2.3.26

2.3.26.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

13/10 2017

2.3.25

2.3.25.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

12/10 2017

2.3.24

2.3.24.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

09/10 2017

2.3.23

2.3.23.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

06/10 2017

2.3.22

2.3.22.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

06/10 2017

2.3.21

2.3.21.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

06/10 2017

2.3.20

2.3.20.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

05/10 2017

2.3.19

2.3.19.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

05/10 2017

2.3.18

2.3.18.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

04/10 2017

2.3.17

2.3.17.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

04/10 2017

2.3.16

2.3.16.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

03/10 2017

2.3.15

2.3.15.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

03/10 2017

2.3.14

2.3.14.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

03/10 2017

2.3.13

2.3.13.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

03/10 2017

2.3.12

2.3.12.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

13/09 2017

2.3.11

2.3.11.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

13/09 2017

2.3.10

2.3.10.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

13/09 2017

2.3.9

2.3.9.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

12/09 2017

2.3.8

2.3.8.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin

12/09 2017

2.3.7

2.3.7.0

Modular component system for WordPress

  Sources   Download

MIT

The Requires

 

by Kristoffer Svanmark
by Sebastian Thulin