updated plugin ActivityPub
version 5.8.0
This commit is contained in:
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* ActivityPub E-Mail template footer.
|
||||
*
|
||||
* @package Activitypub
|
||||
*/
|
||||
|
||||
/* @var array $args Template arguments. */
|
||||
|
||||
use Activitypub\Collection\Actors;
|
||||
|
||||
/* @var array $args Template arguments. */
|
||||
$args = wp_parse_args( $args ?? array() );
|
||||
|
||||
$settings_path = 'profile.php#activitypub-notifications';
|
||||
if ( Actors::BLOG_USER_ID === $args['user_id'] ) {
|
||||
$settings_path = 'options-general.php?page=activitypub&tab=blog-profile#activitypub-notifications';
|
||||
}
|
||||
?>
|
||||
<div class="footer">
|
||||
<p><?php esc_html_e( 'You are receiving this emails because of your ActivityPub plugin settings.', 'activitypub' ); ?></p>
|
||||
<p>
|
||||
<a href="<?php echo esc_url( admin_url( $settings_path ) ); ?>">
|
||||
<?php esc_html_e( 'Manage notification settings', 'activitypub' ); ?>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div><!-- .container -->
|
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/**
|
||||
* ActivityPub E-Mail template header.
|
||||
*
|
||||
* @package Activitypub
|
||||
*/
|
||||
|
||||
?>
|
||||
<style>
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
color: #222;
|
||||
background-color: #ffffff;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
@media only screen and (max-width: 599px) {
|
||||
body {
|
||||
background-color: #f9f9f9 !important;
|
||||
}
|
||||
}
|
||||
.container {
|
||||
max-width: 600px;
|
||||
margin: 20px auto;
|
||||
padding: 20px;
|
||||
background-color: #f9f9f9;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
@media only screen and (max-width: 599px) {
|
||||
.container {
|
||||
border-radius: 0 !important;
|
||||
box-shadow: none !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
}
|
||||
h1 {
|
||||
font-size: 20px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
a.button {
|
||||
display: inline-block;
|
||||
background-color: #2271b1;
|
||||
color: #ffffff !important;
|
||||
text-decoration: none;
|
||||
padding: 10px 16px;
|
||||
border-radius: 4px;
|
||||
font-weight: bold;
|
||||
margin: 10px 0;
|
||||
}
|
||||
.footer {
|
||||
font-size: 13px;
|
||||
color: #777;
|
||||
margin-top: 30px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="container">
|
Reference in New Issue
Block a user