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
05ed76d0
Commit
05ed76d0
authored
6 years ago
by
lucha
Browse files
Options
Downloads
Patches
Plain Diff
added wp-piwik-clear-conf command
parent
7c8532b4
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bin/noblogs.in
+3
-0
3 additions, 0 deletions
bin/noblogs.in
lib/noblogs.php.in
+1
-0
1 addition, 0 deletions
lib/noblogs.php.in
lib/wp-piwik.php
+61
-0
61 additions, 0 deletions
lib/wp-piwik.php
with
65 additions
and
0 deletions
bin/noblogs.in
+
3
−
0
View file @
05ed76d0
...
...
@@ -84,6 +84,9 @@ Known commands:
uninstall-plugin PLUGIN BLOG
Runs unistall action for PLUGIN.
wp-piwik-clear-config BLOG
Clear the configuration for wp-piwik plugin.
<?php
exit
(
1
);
}
...
...
This diff is collapsed.
Click to expand it.
lib/noblogs.php.in
+
1
−
0
View file @
05ed76d0
...
...
@@ -10,6 +10,7 @@ require_once(dirname(__FILE__) . '/blogs.php');
require_once
(
dirname
(
__FILE__
)
.
'/cron.php'
);
require_once
(
dirname
(
__FILE__
)
.
'/friends.php'
);
require_once
(
dirname
(
__FILE__
)
.
'/editfiles.php'
);
require_once
(
dirname
(
__FILE__
)
.
'/wp-piwik.php'
);
// Load the Wordpress api.
define
(
'WP_CACHE'
,
false
);
...
...
This diff is collapsed.
Click to expand it.
lib/wp-piwik.php
0 → 100644
+
61
−
0
View file @
05ed76d0
<?php
function
do_wp_piwik_clear_config
(
$args
){
$wp_piwik_options_to_delete
=
array
(
'wp-piwik_displayto'
,
'wp-piwik_revision'
,
'wp-piwik-track_404'
);
$wp_piwik_options_to_blank
=
array
(
'wp-piwik-name'
,
'wp-piwik-noscript_code'
,
'wp-piwik-site_id'
,
'wp-piwik-tracking_code'
);
foreach
(
$args
as
$arg
)
{
$blog
=
noblogs_get_blog
(
$arg
);
if
(
!
$blog
)
{
echo
"Blog
{
$arg
}
not found.
\n
"
;
continue
;
}
switch_to_blog
(
$blog
->
blog_id
);
echo
"Clearing options for wp-piwik for blog
{
$arg
}
\n
"
;
foreach
(
$wp_piwik_options_to_delete
as
$opt
)
{
if
(
get_option
(
$opt
)){
echo
"Deleting option
{
$opt
}
\n
"
;
delete_option
(
$opt
);
}
}
foreach
(
$wp_piwik_options_to_blank
as
$opt
)
{
echo
"Clearing option
{
$opt
}
\n
"
;
update_option
(
$opt
,
''
);
}
restore_current_blog
();
}
}
// [*] functioning site
// * wp-piwik-dashboard_revision
// wp-piwik_displayto
// * wp-piwik-last_tracking_code_update
// * wp-piwik-name
// * wp-piwik-noscript_code
// wp-piwik_revision
// * wp-piwik-site_id
// wp-piwik-track_404
// * wp-piwik-tracking_code
// +------------------------------------+--------------+
// | option_name | option_value |
// +------------------------------------+--------------+
// | wp-piwik-dashboard_revision | 0 |
// | wp-piwik-last_tracking_code_update | 1541989337 |
// | wp-piwik-name | |
// | wp-piwik-noscript_code | |
// | wp-piwik-site_id | |
// | wp-piwik-tracking_code | |
// +------------------------------------+--------------+
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