PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home3/caa20236/www/wp-content/plugins/pdf-embedder/src/Admin/Pages/ |
| Server: Linux int2.cpanelhost.cl 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 IP: 138.117.148.152 |
| Dir : /home3/caa20236/www/wp-content/plugins/pdf-embedder/src/Admin/Pages/About.php |
<?php
namespace PDFEmbedder\Admin\Pages;
use PDFEmbedder\Admin\Partners;
/**
* About Page.
*
* @since 4.9.0
*/
class About extends Page {
public const SLUG = 'about';
/**
* Get the title of the page.
*
* @since 4.9.0
*/
public function get_title(): string {
return __( 'About', 'pdf-embedder' );
}
/**
* Page content.
*
* @since 4.9.0
*/
public function content() { // phpcs:ignore Generic.Metrics.CyclomaticComplexity.TooHigh
?>
<div class="pdfemb-about-us">
<h3>
<?php esc_html_e( 'Hello and welcome to PDF Embedder, the most beginner-friendly viewer for your PDF files.', 'pdf-embedder' ); ?>
<br>
<?php esc_html_e( 'At WPAuth, we build software that helps you achieve your goals in minutes, without long and complicated configurations.', 'pdf-embedder' ); ?>
</h3>
<p>
<?php esc_html_e( 'Our goal is to take the pain out of embedding PDF files and make it easy.', 'pdf-embedder' ); ?>
</p>
<p>
<?php
printf(
wp_kses( /* translators: %1$s - URL to wpbeginner.com, %2$s - URL to wpforms.com, %3$s - URL to wpmailsmtp.com. */
__( 'PDF Embedder is brought to you by the same team that’s behind the largest WordPress resource site, <a href="%1$s" target="_blank">WPBeginner</a>, the most popular forms plugin, <a href="%2$s" target="_blank">WPForms</a>, the most popular SMTP and Email Log plugin, <a href="%3$s" target="_blank">WP Mail SMTP</a>, the best WordPress analytics plugin, <a href="%4$s" target="_blank">MonsterInsights</a>, and more!', 'pdf-embedder' ),
[
'a' => [
'href' => true,
'taget' => true,
],
]
),
'https://www.wpbeginner.com/?utm_source=pdfembedderplugin&utm_medium=pluginaboutpage&utm_campaign=aboutpdfembedder',
'https://wpforms.com/?utm_source=pdfembedderplugin&utm_medium=pluginaboutpage&utm_campaign=aboutpdfembedder',
'https://wpmailsmtp.com/?utm_source=pdfembedderplugin&utm_medium=pluginaboutpage&utm_campaign=aboutpdfembedder',
'https://www.monsterinsights.com/?utm_source=pdfembedderplugin&utm_medium=pluginaboutpage&utm_campaign=aboutpdfembedder'
);
?>
</p>
<p>
<?php esc_html_e( 'Yup, we know a thing or two about building awesome products that customers love.', 'pdf-embedder' ); ?>
</p>
</div>
<div class="pdfemb-partners-wrap">
<?php ( new Partners() )->show(); ?>
</div>
<?php
}
}