Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Feeds
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Feeds
Commits
20b86c79
Commit
20b86c79
authored
12 years ago
by
Andrew Dolgov
Browse files
Options
Downloads
Patches
Plain Diff
clarify PLUGINS description, improve plugin CLI list
parent
de4335e8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config.php-dist
+5
-3
5 additions, 3 deletions
config.php-dist
update.php
+13
-2
13 additions, 2 deletions
update.php
with
18 additions
and
5 deletions
config.php-dist
+
5
−
3
View file @
20b86c79
...
...
@@ -172,9 +172,11 @@
// after login, or content encoding errors, disable it.
define
(
'PLUGINS'
,
'note'
);
// Comma-separated list of plugins to load for all users. System plugins have to be specified
// here, user plugins may be loaded per-user using Preferences/Plugins.
// Comma-separated list of plugins to load automatically for all users.
// System plugins have to be specified here.
// Users may enable other user plugins from Preferences/Plugins but may not
// disable plugins specified in this list.
define
(
'FEEDBACK_URL'
,
''
);
// Displays an URL for users to provide feedback or comments regarding
// this instance of tt-rss. Can lead to a forum, contact email, etc.
...
...
This diff is collapsed.
Click to expand it.
update.php
+
13
−
2
View file @
20b86c79
...
...
@@ -261,12 +261,23 @@
if
(
in_array
(
"-list-plugins"
,
$op
))
{
$tmppluginhost
=
new
PluginHost
(
$link
);
$tmppluginhost
->
load_all
(
$tmppluginhost
::
KIND_ALL
);
$enabled
=
array_map
(
"trim"
,
explode
(
","
,
PLUGINS
));
echo
"List of all available plugins:
\n
"
;
foreach
(
$tmppluginhost
->
get_plugins
()
as
$name
=>
$plugin
)
{
$about
=
$plugin
->
about
();
printf
(
"%-60s - v%.2f (by %s)
\n
%s
\n\n
"
,
$name
,
$about
[
0
],
$about
[
2
],
$about
[
1
]);
$status
=
$about
[
3
]
?
"system"
:
"user"
;
if
(
in_array
(
$name
,
$enabled
))
$name
.
=
"*"
;
printf
(
"%-50s %-10s v%.2f (by %s)
\n
%s
\n\n
"
,
$name
,
$status
,
$about
[
0
],
$about
[
2
],
$about
[
1
]);
}
echo
"Plugins marked by * are currently enabled for all users.
\n
"
;
}
$pluginhost
->
run_commands
(
$op
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment