Skip to content
Snippets Groups Projects
Commit 66c0a7a6 authored by ale's avatar ale
Browse files

Add the "set-theme" command

parent 7368f6ec
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment