Skip to content

Instantly share code, notes, and snippets.

public function buildResource($league, $event_key, $test = false) {
App::import('Vendor', 'utility');
$utility = new Utility();
$this->league = $utility->getKey($league);
// Get the season key, which we can parse from the event_key
// i.e l.nba.com-2008-e-11099
$tmp = split('-', $event_key);
$this->season_key = $tmp[1];