Browse Source

Prefer string $file over 1-element array in script()

The string syntax is more obvious. There should be one (and preferably
only one) way of doing things.

Signed-off-by: François Freitag <mail@franek.fr>
tags/v22.0.0beta1
François Freitag 3 years ago
parent
commit
d887851183

+ 1
- 3
apps/dav/templates/settings-admin-caldav.php View File

@@ -21,9 +21,7 @@
*
*/

script('dav', [
'settings-admin-caldav'
]);
script('dav', 'settings-admin-caldav');

/** @var \OCP\IL10N $l */
/** @var array $_ */

+ 1
- 3
apps/settings/templates/settings/personal/security/authtokens.php View File

@@ -22,9 +22,7 @@ declare(strict_types=1);
*
*/

script('settings', [
'vue-settings-personal-security',
]);
script('settings', 'vue-settings-personal-security');

?>


+ 1
- 3
apps/settings/templates/settings/personal/security/webauthn.php View File

@@ -22,9 +22,7 @@ declare(strict_types=1);
*
*/

script('settings', [
'vue-settings-personal-webauthn',
]);
script('settings', 'vue-settings-personal-webauthn');

?>


+ 1
- 3
apps/systemtags/templates/admin.php View File

@@ -19,9 +19,7 @@
*
*/

script('core', [
'dist/systemtags',
]);
script('core', 'dist/systemtags');

script('systemtags', 'admin');
style('systemtags', 'settings');

+ 1
- 3
apps/user_ldap/templates/renewpassword.php View File

@@ -1,8 +1,6 @@
<?php /** @var \OCP\IL10N $l */ ?>
<?php
script('user_ldap', [
'renewPassword',
]);
script('user_ldap', 'renewPassword');
style('user_ldap', 'renewPassword');
?>


+ 1
- 3
apps/workflowengine/lib/Listener/LoadAdditionalSettingsScriptsListener.php View File

@@ -40,9 +40,7 @@ class LoadAdditionalSettingsScriptsListener implements IEventListener {
class_exists(Template::class, true);
}

script('core', [
'dist/systemtags',
]);
script('core', 'dist/systemtags');

script(Application::APP_ID, [
'workflowengine',

+ 1
- 3
core/templates/installation.php View File

@@ -1,7 +1,5 @@
<?php
script('core', [
'dist/install'
]);
script('core', 'dist/install');
?>
<input type='hidden' id='hasMySQL' value='<?php p($_['hasMySQL']) ?>'>
<input type='hidden' id='hasSQLite' value='<?php p($_['hasSQLite']) ?>'>

Loading…
Cancel
Save