mothership-ec / cog-mothership-cp
This package is abandoned and no longer maintained.
No replacement package was suggested.
Cog module for the Mothership Control Panel
Package info
github.com/mothership-ec/cog-mothership-cp
Language:JavaScript
pkg:composer/mothership-ec/cog-mothership-cp
3.5.5
2015-10-23 15:07 UTC
Requires
- php: >=5.4.0
- mothership-ec/cog: ~4.0
- mothership-ec/cog-user: ~2.0
Requires (Dev)
- mockery/mockery: dev-master
This package is not auto-updated.
Last update: 2021-03-22 11:07:57 UTC
README
Main menu building
Group markup
This is the markup required for groups of content, repeatable groups and dual column groups.
<!-- Normal group -->
<section class="group">
<h2 class="title">Group title</h2>
<div class="content">
...
</div>
</section>
<!-- Group grid layout -->
<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>
<!-- Repeatable group -->
<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>
<!-- Dual column -->
<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
$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
$dataset = $this->get('statistics')->get('my.dataset');
Push a value
$dataset->counter->push($value);
Set a value by key
$dataset->counter->set($key, $value);
Get the current counter
$dataset->counter->get(); $dataset->counter->get($key);
Increment / decrement
$dataset->counter->increment(); $dataset->counter->decrement($step); $dataset->counter->decrement($key); $dataset->counter->increment($key, $step);
Get a range of values
// 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
$data = $dataset->range->getKeyValues(0);
Get average of values
$monthAverage = $dataset->range->getAverage( $dataset->range->getMonthAgo() );
Get total of values
$yearToDate = $dataset->range->getTotal( $dataset->range->getYearAgo() );