Skip to content

Instantly share code, notes, and snippets.

@brunsgaard
Last active September 30, 2015 10:31
Show Gist options
  • Save brunsgaard/d94daddc964fad29185b to your computer and use it in GitHub Desktop.
Save brunsgaard/d94daddc964fad29185b to your computer and use it in GitHub Desktop.
<?php
require_once 'abstract.php';
class Mage_Shell_Clerk extends Mage_Shell_Abstract {
public function run() {
set_time_limit(0);
$clerk_feed = Mage::getModel('clerk/feed');
$clerk_feed->buildFeeds();
}
}
$shell = new Mage_Shell_Clerk();
$shell->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment