Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
noblogs-cli
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Noblogs
noblogs-cli
Commits
66c0a7a6
Commit
66c0a7a6
authored
4 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
Add the "set-theme" command
parent
7368f6ec
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/noblogs.in
+31
-6
31 additions, 6 deletions
bin/noblogs.in
with
31 additions
and
6 deletions
bin/noblogs.in
+
31
−
6
View file @
66c0a7a6
...
...
@@ -21,6 +21,9 @@ Known commands:
set-option OPTION_NAME OPTION_VALUE BLOG [...]
Set the value of an option for the specified blogs.
set-theme THEME_NAME BLOG [...]
Set the theme for the specified blogs.
print-all-blogs
Print a list of all existing blog IDs.
...
...
@@ -68,23 +71,23 @@ Known commands:
Set read-only mode for the local noblogs installation. The argument
must be either the literal 'on' or 'off'.
ngg-convert BLOG
ngg-convert BLOG
Convert Next Gen Gallery (NGG) photo galleries to stardard Wordpress
galleries, and then notify (via email) admins of the fact.
https-siteurl BLOG
https-siteurl BLOG
Adds https (instead of http) to siteurl and home options.
fix-cdn BLOG
fix-cdn BLOG
Sets the correct CDN config.
rename-plugins BLOG
rename-plugins BLOG
Disables old plugins and enables new ones, when there has been a change in names.
uninstall-plugin PLUGIN BLOG
uninstall-plugin PLUGIN BLOG
Runs unistall action for PLUGIN.
wp-piwik-clear-config BLOG
wp-piwik-clear-config BLOG
Clear the configuration for wp-piwik plugin.
<?php
...
...
@@ -189,6 +192,28 @@ function do_set_option($args) {
}
}
// 'set-theme': Set the theme of a blog.
function
do_set_theme
(
$args
)
{
$theme
=
array_shift
(
$args
);
if
(
!
$theme
)
{
echo
"Not enough arguments
\n
"
;
help
();
}
foreach
(
$args
as
$arg
)
{
$blog
=
noblogs_get_blog
(
$arg
);
if
(
!
$blog
)
{
echo
"Blog
{
$arg
}
not found.
\n
"
;
continue
;
}
switch_to_blog
(
$blog
->
blog_id
);
update_option
(
'template'
,
$theme
);
update_option
(
'stylesheet'
,
$theme
);
echo
"
{
$arg
}
:
{
$theme
}
\n
"
;
restore_current_blog
();
}
}
// 'dump-shards': Print a JSON dictionary representing the full map
// of backend -> blogs database mappings.
...
...
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