2017 © Pedro Peláez
 

library cog-mothership-cp

Cog module for the Mothership Control Panel

image

mothership-ec/cog-mothership-cp

Cog module for the Mothership Control Panel

  • Tuesday, November 17, 2015
  • by thomasjthomasj
  • Repository
  • 4 Watchers
  • 1 Stars
  • 2,589 Installations
  • JavaScript
  • 8 Dependents
  • 0 Suggesters
  • 2 Forks
  • 45 Open issues
  • 60 Versions
  • 0 % Grown

The README.md

Mothership Control Panel

Group markup

This is the markup required for groups of content, repeatable groups and dual column groups., (*1)


<section class="group">
    <h2 class="title">Group title</h2>
    <div class="content">
        ...
    </div>
</section>


<section class="group-grid">
    <div class="row">
        <div class="group">
            <h2 class="title">Group title</h2>
            <div class="content">
                ...
            </div>
        </div>
        <div class="group">
            <h2 class="title">Group title</h2>
            <div class="content">
                ...
            </div>
        </div>
        <div class="group">
            <h2 class="title">Group title</h2>
            <div class="content">
                ...
            </div>
        </div>
    </div>
</section>


<section class="repeatable-group">
    <div class="group">
        <h2 class="title">Group title</h2>
        <div class="content">
            ...
        </div>
    </div>
    <div class="group">
        <h2 class="title">Group title</h2>
        <div class="content">
            ...
        </div>
    </div>
    <div class="group">
        <h2 class="title">Group title</h2>
        <div class="content">
            ...
        </div>
    </div>
    <div class="group">
        <h2 class="title">Group title</h2>
        <div class="content">
            ...
        </div>
    </div>
</section>


<section class="dual-column">
    <h2 class="title">Test title</h2>
    <div class="content">
        <div class="column">
            ...
        </div>
        <div class="column">
            ...
        </div>
    </div>
</section>

Dashboards and Statistics

Datasets

Register new dataset, (*2)

$services->extend('statistics', function($statistics, $c) {
    // Simple value counter
    $statistics->add(new MyDataset($c['db.query'], $c['statistics.counter'], $c['statistics.range.date']));

    // Key based counter
    $statistics->add(new MyKeyDataset($c['db.query'], $c['statistics.counter.key'], $c['statistics.range.date']));
});
class MyDataset extends AbstractDataset
{
    public function getName()
    {
        return 'my.dataset';
    }

    public function getPeriodLength()
    {
        return static::DAILY;
    }

    public function rebuild()
    {
        // add rebuilding sql to transaction and commit if not overridden
    }
}

Get a dataset, (*3)

$dataset = $this->get('statistics')->get('my.dataset');

Push a value, (*4)

$dataset->counter->push($value);

Set a value by key, (*5)

$dataset->counter->set($key, $value);

Get the current counter, (*6)

$dataset->counter->get();
$dataset->counter->get($key);

Increment / decrement, (*7)

$dataset->counter->increment();
$dataset->counter->decrement($step);

$dataset->counter->decrement($key);
$dataset->counter->increment($key, $step);

Get a range of values, (*8)

// From the beginning of time
$values = $dataset->range->getValues(0);

// From a week ago
$values = $dataset->range->getValues(
    $dataset->range->getWeekAgo()
);

// Previous month
$values = $dataset->range->getValues(
    $dataset->range->getMonthAgo(1),
    $dataset->range->getMonthAgo()
);

Get a range of values with keys, (*9)

$data = $dataset->range->getKeyValues(0);

Get average of values, (*10)

$monthAverage = $dataset->range->getAverage(
    $dataset->range->getMonthAgo()
);

Get total of values, (*11)

$yearToDate = $dataset->range->getTotal(
    $dataset->range->getYearAgo()
);

The Versions

17/11 2015

dev-feature/ux/admin-rebuild

dev-feature/ux/admin-rebuild http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

11/11 2015

dev-fulfillment-button-fix

dev-fulfillment-button-fix http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

23/10 2015

dev-develop

dev-develop http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

23/10 2015

dev-master

9999999-dev http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

23/10 2015

3.5.5

3.5.5.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

20/10 2015

3.5.4

3.5.4.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

19/10 2015

3.5.3

3.5.3.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

14/10 2015

3.5.2

3.5.2.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

08/10 2015

3.5.1

3.5.1.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

23/09 2015

3.5.0

3.5.0.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

09/07 2015

3.4.3

3.4.3.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

25/06 2015

3.4.2

3.4.2.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

27/05 2015

3.4.1

3.4.1.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

26/05 2015

3.4.0

3.4.0.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

07/04 2015

3.3.0

3.3.0.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

02/04 2015

3.2.0

3.2.0.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

23/03 2015

3.1.0

3.1.0.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

12/03 2015

dev-refer-a-friend

dev-refer-a-friend http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

24/02 2015

3.0.0

3.0.0.0 http://mothership.ec

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

 

The Development Requires

by The Mothership Development Team

admin control panel cp cog mothership

28/01 2015

2.2.1

2.2.1.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

27/01 2015

2.2.0

2.2.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

22/01 2015

2.1.0

2.1.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

22/01 2015

dev-revert-287-revert-270-feature/ux/product-create

dev-revert-287-revert-270-feature/ux/product-create http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

22/01 2015

dev-revert-270-feature/ux/product-create

dev-revert-270-feature/ux/product-create http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

22/01 2015

dev-feature/ux/product-create

dev-feature/ux/product-create http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

21/01 2015

2.0.1

2.0.1.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

08/01 2015

dev-compatibility/stoneham

dev-compatibility/stoneham http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

08/01 2015

2.0.0

2.0.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

08/01 2015

dev-feature/ux/flash-bug

dev-feature/ux/flash-bug http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

23/12 2014

1.8.0

1.8.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

23/12 2014

1.7.0

1.7.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

19/12 2014

1.6.1

1.6.1.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

16/12 2014

1.6.0

1.6.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

08/12 2014

1.5.0

1.5.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.6
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

17/10 2014

dev-feature/ux/blog-comments

dev-feature/ux/blog-comments http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

17/10 2014

dev-feature/ux/overhaul

dev-feature/ux/overhaul http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

17/10 2014

dev-feature/ajax-modal-for-forms

dev-feature/ajax-modal-for-forms http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

07/10 2014

1.4.0

1.4.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

30/09 2014

1.3.3

1.3.3.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

30/09 2014

1.3.2

1.3.2.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

30/09 2014

dev-feature/ux/261-font-rendering

dev-feature/ux/261-font-rendering http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

12/09 2014

dev-feature/ux/product-process

dev-feature/ux/product-process http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

by The Message Development Team

admin control panel cp cog mothership

21/07 2014

1.3.1

1.3.1.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

01/07 2014

1.3.0

1.3.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

24/06 2014

1.2.0

1.2.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

The Development Requires

by The Message Development Team

admin control panel cp cog mothership

11/06 2014

1.1.6

1.1.6.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

by The Message Development Team

admin control panel cp cog mothership

03/04 2014

1.1.5

1.1.5.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

by The Message Development Team

admin control panel cp cog mothership

03/04 2014

1.1.4

1.1.4.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

by The Message Development Team

admin control panel cp cog mothership

01/04 2014

1.1.3

1.1.3.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

by The Message Development Team

admin control panel cp cog mothership

31/03 2014

1.1.2

1.1.2.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

by The Message Development Team

admin control panel cp cog mothership

26/03 2014

1.1.1

1.1.1.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

by The Message Development Team

admin control panel cp cog mothership

18/03 2014

1.1.0

1.1.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~3.0
  • message/cog-user ~1.0

 

by The Message Development Team

admin control panel cp cog mothership

10/01 2014

1.0.3

1.0.3.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.4.0
  • message/cog ~2.0
  • message/cog-user ~1.0

 

by The Message Development Team

admin control panel cp cog mothership

21/11 2013

1.0.2

1.0.2.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog 1.*
  • message/cog-user 1.*

 

by The Message Development Team

admin control panel cp cog mothership

20/11 2013

1.0.1

1.0.1.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • message/cog 1.*
  • message/cog-user 1.*

 

by The Message Development Team

admin control panel cp cog mothership

17/11 2013

1.0.0

1.0.0.0 http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

The Requires

  • php >=5.3.0
  • message/cog 1.0.*
  • message/cog-user 1.0.*

 

by The Message Development Team

admin control panel cp cog mothership

28/10 2013

dev-reports-totals

dev-reports-totals http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

The Requires

  • php >=5.3.0
  • message/cog dev-master
  • message/cog-user dev-master

 

by The Message Development Team

admin control panel cp cog mothership

03/09 2013

dev-nested-accordian-collapsible

dev-nested-accordian-collapsible http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

The Requires

  • php >=5.3.0
  • message/cog dev-master
  • message/cog-user dev-master

 

by The Message Development Team

admin control panel cp cog mothership

07/08 2013

dev-asset-relocating

dev-asset-relocating http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

The Requires

  • php >=5.3.0
  • message/cog dev-master
  • message/cog-user dev-master

 

by The Message Development Team

admin control panel cp cog mothership

29/07 2013

dev-sidebar-js

dev-sidebar-js http://message.co.uk

Cog module for the Mothership Control Panel

  Sources   Download

The Requires

  • php >=5.3.0
  • message/cog dev-master
  • message/cog-user dev-master

 

by The Message Development Team

admin control panel cp cog mothership