-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Samuel Vandamme
committed
Sep 2, 2015
1 parent
72a83b4
commit e9421f0
Showing
23 changed files
with
1,678 additions
and
808 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
<?php | ||
|
||
/** | ||
* CoScale module helper | ||
* | ||
* @package CoScale_Monitor | ||
* @author Rian Orie <[email protected]> | ||
* @created 2015-07-03 | ||
* @version 1.0 | ||
*/ | ||
*/ | ||
class CoScale_Monitor_Helper_Data extends Mage_Core_Helper_Abstract | ||
{} | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
/** | ||
* Cronjob director to run daily metric data reset/generation | ||
* | ||
* @package CoScale_Monitor | ||
* @author Vladimir Kerkhoff <[email protected]> | ||
* @version 1.0 | ||
* @created 2015-08-18 | ||
*/ | ||
|
||
class CoScale_Monitor_Model_Cronjob | ||
{ | ||
/** | ||
* Daily cronjob to update daily values | ||
*/ | ||
|
||
public function dailyCron() | ||
{ | ||
// Customer metric data | ||
Mage::getSingleton('coscale_monitor/metric_customer')->dailyCron(); | ||
Mage::getSingleton('coscale_monitor/metric_product')->dailyCron(); | ||
} | ||
} |
Oops, something went wrong.