Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wp-mat
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
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
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
wp-mat
Commits
744b84dc
Commit
744b84dc
authored
1 year ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
Move the settings to the 'media' section
parent
7d737747
No related branches found
No related tags found
No related merge requests found
Pipeline
#54838
passed
1 year ago
Stage: release
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wp-mat.php
+8
-7
8 additions, 7 deletions
wp-mat.php
with
8 additions
and
7 deletions
wp-mat.php
+
8
−
7
View file @
744b84dc
...
...
@@ -3,7 +3,7 @@
* Plugin Name: wp-mat
* Plugin URI: https://git.autistici.org/noblogs/wp-mat
* Description: Process uploaded files through MAT
* Version: 0.1.
1
* Version: 0.1.
2
* Author: Autistici/Inventati
* Author URI: https://www.autistici.org/
* License: MIT
...
...
@@ -38,7 +38,7 @@ class WP_Mat {
// store the results into '$output_path'.
function
issue_cleanup_request
(
$path
,
$mimetype
,
$output_path
)
{
$upfile
=
new
CURLFile
(
$path
,
$mimetype
,
'input'
);
$curl
=
curl_init
();
curl_setopt
(
$curl
,
CURLOPT_URL
,
WP_MAT_ENDPOINT
);
curl_setopt
(
$curl
,
CURLOPT_USERAGENT
,
'Wordpress'
);
...
...
@@ -53,7 +53,7 @@ class WP_Mat {
}
curl_setopt
(
$curl
,
CURLOPT_FILE
,
$fp
);
curl_setopt
(
$curl
,
CURLOPT_BINARYTRANSFER
,
true
);
$ret
=
curl_exec
(
$curl
);
fclose
(
$fp
);
...
...
@@ -115,7 +115,7 @@ class WP_Mat {
'wpmat_settings_section'
,
'Metadata anonymization for uploads'
,
array
(
$this
,
'settings_section_callback'
),
'
writing
'
'
media
'
);
// Add the field with the names and function to use for our new
...
...
@@ -124,17 +124,18 @@ class WP_Mat {
'wpmat_disabled'
,
'Disable metadata anonymization'
,
array
(
$this
,
'settings_field_callback'
),
'
writing
'
,
'
media
'
,
'wpmat_settings_section'
);
// Register our setting so that $_POST handling is done for us and
// our callback function just has to echo the <input>.
register_setting
(
'
writing
'
,
'wpmat_disabled'
);
register_setting
(
'
media
'
,
'wpmat_disabled'
);
}
function
settings_section_callback
()
{
echo
(
'<p>Control whether uploaded files are run through metadata anonymization (using MAT2).</p>'
);
echo
(
'<p>Control whether uploaded files are run through metadata anonymization (using <a href="https://0xacab.org/jvoisin/mat2">MAT2</a>). '
);
echo
(
'This feature is enabled by default but it can be disabled in case you are experiencing problems uploading files.</p>'
);
}
function
settings_field_callback
()
{
...
...
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