Skip to content

Instantly share code, notes, and snippets.

@ajshort
Created July 3, 2012 08:23
Show Gist options
  • Save ajshort/3038453 to your computer and use it in GitHub Desktop.
Save ajshort/3038453 to your computer and use it in GitHub Desktop.
<?php
/**
* @package framework
*/
namespace SilverStripe\Framework;
use SilverStripe\Framework\Core\ModuleInterface;
/**
* @package framework
*/
class FrameworkModule implements ModuleInterface {
const VERSION = '3.1.0-dev';
public function getName() {
return 'framework';
}
public function getPath() {
return dirname(dirname(dirname(__DIR__)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment