From: Vincent Petry Date: Mon, 15 Dec 2014 16:20:41 +0000 (+0100) Subject: Fixed small code style issues X-Git-Tag: v8.0.0alpha1~83^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=207d77e5cdf6386dd22d87a5851adae38ad9f77f;p=nextcloud-server.git Fixed small code style issues --- diff --git a/apps/files/appinfo/application.php b/apps/files/appinfo/application.php index fcf974a701b..13ff60daf89 100644 --- a/apps/files/appinfo/application.php +++ b/apps/files/appinfo/application.php @@ -31,9 +31,9 @@ class Application extends App { ); }); - /** - * Core - */ + /** + * Core + */ $container->registerService('L10N', function(IContainer $c) { return $c->query('ServerContainer')->getL10N($c->query('AppName')); }); diff --git a/apps/files/controller/apicontroller.php b/apps/files/controller/apicontroller.php index 1990971438b..902731a0492 100644 --- a/apps/files/controller/apicontroller.php +++ b/apps/files/controller/apicontroller.php @@ -19,6 +19,11 @@ use OCA\Files\Service\TagService; class ApiController extends Controller { + /** + * @var TagService $tagService + */ + private $tagService; + public function __construct($appName, IRequest $request, TagService $tagService){ parent::__construct($appName, $request); $this->tagService = $tagService; diff --git a/apps/files/index.php b/apps/files/index.php index 6f5989820b9..02076226c1a 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -90,11 +90,11 @@ function sortNavigationItems($item1, $item2) { \OCA\Files\App::getNavigationManager()->add( array( - "id" => 'favorites', - "appname" => 'files', - "script" => 'simplelist.php', - "order" => 50, - "name" => $l->t('Favorites') + 'id' => 'favorites', + 'appname' => 'files', + 'script' => 'simplelist.php', + 'order' => 50, + 'name' => $l->t('Favorites') ) ); diff --git a/apps/files/js/tagsplugin.js b/apps/files/js/tagsplugin.js index 550026e3b48..a6757431ffa 100644 --- a/apps/files/js/tagsplugin.js +++ b/apps/files/js/tagsplugin.js @@ -12,7 +12,7 @@ (function(OCA) { - var TEMPLATE_FAVORITE_ACTION = + var TEMPLATE_FAVORITE_ACTION = '' + '{{altText}}' + @@ -30,7 +30,7 @@ /** * Render the star icon with the given state - * + * * @param {boolean} state true if starred, false otherwise * @return {Object} jQuery object */ diff --git a/apps/files/simplelist.php b/apps/files/simplelist.php index e3fdf6cd1de..53e56b4ed32 100644 --- a/apps/files/simplelist.php +++ b/apps/files/simplelist.php @@ -21,8 +21,7 @@ * */ -// Check if we are a user -OCP\User::checkLoggedIn(); +// TODO: move to handlebars // renders the controls and table headers template $tmpl = new OCP\Template('files', 'simplelist', '');