Fixed small code style issues

This commit is contained in:
Vincent Petry 2014-12-15 17:20:41 +01:00
parent 976baed5f9
commit 207d77e5cd
5 changed files with 16 additions and 12 deletions

View File

@ -31,9 +31,9 @@ class Application extends App {
); );
}); });
/** /**
* Core * Core
*/ */
$container->registerService('L10N', function(IContainer $c) { $container->registerService('L10N', function(IContainer $c) {
return $c->query('ServerContainer')->getL10N($c->query('AppName')); return $c->query('ServerContainer')->getL10N($c->query('AppName'));
}); });

View File

@ -19,6 +19,11 @@ use OCA\Files\Service\TagService;
class ApiController extends Controller { class ApiController extends Controller {
/**
* @var TagService $tagService
*/
private $tagService;
public function __construct($appName, IRequest $request, TagService $tagService){ public function __construct($appName, IRequest $request, TagService $tagService){
parent::__construct($appName, $request); parent::__construct($appName, $request);
$this->tagService = $tagService; $this->tagService = $tagService;

View File

@ -90,11 +90,11 @@ function sortNavigationItems($item1, $item2) {
\OCA\Files\App::getNavigationManager()->add( \OCA\Files\App::getNavigationManager()->add(
array( array(
"id" => 'favorites', 'id' => 'favorites',
"appname" => 'files', 'appname' => 'files',
"script" => 'simplelist.php', 'script' => 'simplelist.php',
"order" => 50, 'order' => 50,
"name" => $l->t('Favorites') 'name' => $l->t('Favorites')
) )
); );

View File

@ -12,7 +12,7 @@
(function(OCA) { (function(OCA) {
var TEMPLATE_FAVORITE_ACTION = var TEMPLATE_FAVORITE_ACTION =
'<a href="#" ' + '<a href="#" ' +
'class="action action-favorite {{#isFavorite}}permanent{{/isFavorite}}">' + 'class="action action-favorite {{#isFavorite}}permanent{{/isFavorite}}">' +
'<img class="svg" alt="{{altText}}" src="{{imgFile}}" />' + '<img class="svg" alt="{{altText}}" src="{{imgFile}}" />' +
@ -30,7 +30,7 @@
/** /**
* Render the star icon with the given state * Render the star icon with the given state
* *
* @param {boolean} state true if starred, false otherwise * @param {boolean} state true if starred, false otherwise
* @return {Object} jQuery object * @return {Object} jQuery object
*/ */

View File

@ -21,8 +21,7 @@
* *
*/ */
// Check if we are a user // TODO: move to handlebars
OCP\User::checkLoggedIn();
// renders the controls and table headers template // renders the controls and table headers template
$tmpl = new OCP\Template('files', 'simplelist', ''); $tmpl = new OCP\Template('files', 'simplelist', '');