app is now compliant to occ check-code
parent
2945391963
commit
71b0715058
|
@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
### Changed
|
||||
|
||||
### Fixed
|
||||
- app is now compliant to occ check-code
|
||||
|
||||
## 0.0.4 – 2017-01-17
|
||||
### Added
|
||||
|
|
|
@ -49,21 +49,8 @@ class Application extends App {
|
|||
$c->query('UserId'),
|
||||
$c->query('ServerContainer')->getUserFolder($c->query('UserId')),
|
||||
$c->query('ServerContainer')->getConfig(),
|
||||
$c->getServer()->getShareManager()
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
$container->registerService(
|
||||
'ComparisonController', function (IAppContainer $c) {
|
||||
return new ComparisonController(
|
||||
$c->query('AppName'),
|
||||
$c->query('Request'),
|
||||
$c->query('UserId'),
|
||||
//$c->getServer()->getUserFolder($c->query('UserId')),
|
||||
//$c->query('OCP\IConfig'),
|
||||
$c->query('ServerContainer')->getUserFolder($c->query('UserId')),
|
||||
$c->query('ServerContainer')->getConfig()
|
||||
$c->getServer()->getShareManager(),
|
||||
$c->getServer()->getAppManager()
|
||||
);
|
||||
}
|
||||
);
|
||||
|
@ -77,7 +64,8 @@ class Application extends App {
|
|||
//$c->getServer()->getUserFolder($c->query('UserId')),
|
||||
//$c->query('OCP\IConfig'),
|
||||
$c->query('ServerContainer')->getUserFolder($c->query('UserId')),
|
||||
$c->query('ServerContainer')->getConfig()
|
||||
$c->query('ServerContainer')->getConfig(),
|
||||
$c->getServer()->getAppManager()
|
||||
);
|
||||
}
|
||||
);
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
namespace OCA\GpxEdit\Controller;
|
||||
|
||||
use \OC_App;
|
||||
use OCP\App\IAppManager;
|
||||
|
||||
use OCP\IURLGenerator;
|
||||
use OCP\IConfig;
|
||||
|
@ -95,10 +95,10 @@ class PageController extends Controller {
|
|||
private $appPath;
|
||||
|
||||
public function __construct($AppName, IRequest $request, $UserId,
|
||||
$userfolder, $config, $shareManager){
|
||||
$userfolder, $config, $shareManager, IAppManager $appManager){
|
||||
parent::__construct($AppName, $request);
|
||||
$this->appVersion = $config->getAppValue('gpxedit', 'installed_version');
|
||||
$this->appPath = \OC_App::getAppPath('gpxedit');
|
||||
$this->appPath = $appManager->getAppPath('gpxedit');
|
||||
$this->userId = $UserId;
|
||||
$this->dbtype = $config->getSystemValue('dbtype');
|
||||
// IConfig object
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
namespace OCA\GpxEdit\Controller;
|
||||
|
||||
use \OC_App;
|
||||
use OCP\App\IAppManager;
|
||||
|
||||
use OCP\IURLGenerator;
|
||||
use OCP\IConfig;
|
||||
|
@ -85,10 +85,11 @@ class UtilsController extends Controller {
|
|||
private $appPath;
|
||||
//private $request;
|
||||
|
||||
public function __construct($AppName, IRequest $request, $UserId, $userfolder, $config){
|
||||
public function __construct($AppName, IRequest $request, $UserId,
|
||||
$userfolder, $config, IAppManager $appManager){
|
||||
parent::__construct($AppName, $request);
|
||||
//$this->request = $request;
|
||||
$this->appPath = \OC_App::getAppPath('gpxedit');
|
||||
$this->appPath = $appManager->getAppPath('gpxedit');
|
||||
$this->userId = $UserId;
|
||||
$this->dbtype = $config->getSystemValue('dbtype');
|
||||
// IConfig object
|
||||
|
|
Loading…
Reference in New Issue