Current File : /home/httpd/html/jessicakurutz.com/public_html/wp-content/plugins/pdf-embedder/pdf_embedder.php
<?php
/**
* Plugin Name: PDF Embedder
* Plugin URI: http://wp-pdf.com/
* Description: Embed PDFs straight into your posts and pages, with flexible width and height. No third-party services required. Compatible with Gutenberg Editor WordPress
* Version: 3.2
* Author: Dan Lester
* Author URI: http://wp-pdf.com/
* License: GPL3
* Text Domain: pdf-embedder
*/
require_once( plugin_dir_path(__FILE__).'/core/core_pdf_embedder.php' );
class pdfemb_basic_pdf_embedder extends core_pdf_embedder {
protected $PLUGIN_VERSION = '3.2';
// Singleton
private static $instance = null;
public static function get_instance() {
if (null == self::$instance) {
self::$instance = new self;
}
return self::$instance;
}
// Basic specific
protected static $poweredby_optionname='pdfemb_poweredby';
public function pdfemb_activation_hook($network_wide) {
parent::pdfemb_activation_hook($network_wide);
// If installed previously, keep 'poweredby' to off since they were used to that
$old_options = get_site_option($this->get_options_name());
if (!$old_options) {
update_site_option(self::$poweredby_optionname, true);
}
}
public function pdfemb_wp_enqueue_scripts() {
if (!$this->useminified()) {
wp_register_script( 'pdfemb_grabtopan_js', $this->my_plugin_url().'js/grabtopan-basic.js', array('jquery'), $this->PLUGIN_VERSION);
wp_register_script( 'pdfemb_pv_core_js', $this->my_plugin_url().'js/pdfemb-pv-core.js',
array('pdfemb_grabtopan_js', 'jquery'), $this->PLUGIN_VERSION );
wp_register_script( 'pdfemb_versionspecific_pdf_js', $this->my_plugin_url().'js/pdfemb-basic.js',
array('jquery', 'pdfemb_pv_core_js'), $this->PLUGIN_VERSION);
wp_register_script( 'pdfemb_embed_pdf_js', $this->my_plugin_url().'js/pdfemb-embed-pdf.js',
array('pdfemb_pv_core_js', 'pdfemb_versionspecific_pdf_js'), $this->PLUGIN_VERSION );
}
else {
wp_register_script( 'pdfemb_embed_pdf_js', $this->my_plugin_url().'js/all-pdfemb-basic.min.js', array('jquery'), $this->PLUGIN_VERSION );
}
wp_localize_script( 'pdfemb_embed_pdf_js', 'pdfemb_trans', $this->get_translation_array() );
wp_register_script( 'pdfemb_pdf_js', $this->my_plugin_url().'js/pdfjs/pdf'.($this->useminified() ? '.min' : '').'.js', array(), $this->PLUGIN_VERSION);
}
protected function get_extra_js_name() {
return 'basic';
}
// ADMIN
protected function pdfemb_mainsection_extra() {
?>
<br class="clear" />
<br class="clear" />
<h2><?php _e('Options only available in Premium versions', 'pdf-embedder'); ?></h2>
<label for="pdfemb_download" class="textinput"><?php esc_html_e('Download Button', 'pdf-embedder'); ?></label>
<span>
<label for="pdfemb_download" class="checkbox plain"><?php esc_html_e('Provide PDF download button on toolbar', 'pdf-embedder'); ?></label>
</span>
<br class="clear" />
<label for="pdfemb_newwindow" class="textinput"><?php esc_html_e('External Links', 'pdf-embedder'); ?></label>
<span>
<label for="pdfemb_newwindow" class="checkbox plain"><?php esc_html_e('Open links in a new browser tab/window', 'pdf-embedder'); ?></label>
</span>
<br class="clear" />
<label for="pdfemb_tracking" class="textinput"><?php esc_html_e('Track Views/Downloads', 'pdf-embedder'); ?></label>
<span>
<label for="pdfemb_tracking" class="checkbox plain"><?php esc_html_e('Count number of views and downloads', 'pdf-embedder'); ?></label>
</span>
<br class="clear" />
<label for="pdfemb_continousscroll" class="textinput"><?php esc_html_e('Continous Page Scrolling', 'pdf-embedder'); ?></label>
<span>
<label for="pdfemb_continousscroll" class="checkbox plain"><?php esc_html_e('Allow user to scroll up/down between all pages in the PDF', 'pdf-embedder'); ?></label>
</span>
<br class="clear" />
<p><?php printf(__('Find out more about <a href="%s" target="_blank">Premium Versions of the plugin on our website</a>.', 'pdf-embedder'),
'http://wp-pdf.com/premium/?utm_source=PDF%20Settings%20PremiumFindOut&utm_medium=freemium&utm_campaign=Freemium'); ?></p>
<?php
}
protected function pdfemb_mobilesection_text()
{
?>
<h2><?php esc_html_e('Mobile-friendly embedding using PDF Embedder Premium', 'pdf-embedder'); ?></h2>
<p><?php esc_html_e("This free version of the plugin should work on most mobile browsers, but it will be cumbersome for users with small screens - it is difficult to position
the document entirely within the screen, and your users' fingers may catch the entire browser page when
they're trying only to move about the document...", 'pdf-embedder'); ?></p>
<p><?php _e("Our <b>PDF Embedder Premium</b> plugin solves this problem with an intelligent 'full screen' mode.
When the document is smaller than a certain width, the document displays only as a 'thumbnail' with a large
'View in Full Screen' button for the
user to click when they want to study your document.
This opens up the document so it has the full focus of the mobile browser, and the user can move about the
document without hitting other parts of
the web page by mistake. Click Exit to return to the regular web page.", 'pdf-embedder'); ?>
</p>
<p><?php _e("The user can also touch and scroll continuously between all pages of the PDF which is much easier than clicking the next/prev buttons to navigate.", 'pdf-embedder'); ?>
</p>
<p><?php printf( __('See our website <a href="%s">wp-pdf.com</a> for more details and purchase options.', 'pdf-embedder'), 'http://wp-pdf.com/premium/?utm_source=PDF%20Settings%20Premium&utm_medium=freemium&utm_campaign=Freemium'); ?>
</p>
<?php
}
protected function options_do_sidebar() {
?><div id="pdfemb-tableright" class="pdfemb-tablecell">
<div>
<h3>Premium Versions</h3>
<p>Visit <a href="https://wp-pdf.com/?utm_source=Premium%20Sidebar&utm_medium=freemium&utm_campaign=Freemium" target="_blank">wp-pdf.com</a> for premium PDF Embedder features:</p>
<ul>
<li>Mobile Friendly</li>
<li>Continuous page scrolling</li>
<li>Download Button</li>
<li>Full screen button</li>
<li>Working Hyperlinks</li>
<li>Jump to page number</li>
<li>Track views and downloads</li>
<li>Remove link to wp-pdf.com</li>
<li><i>Secure version</i> - prevent downloads and add watermark</li>
</ul>
<p>More details and demos are <br/> on <a href="https://wp-pdf.com/?utm_source=Premium%20Sidebar&utm_medium=freemium&utm_campaign=Freemium" target="_blank">our website</a>!</p>
</div>
<div>
<h3>Thumbnails</h3>
<p>Buy our <a href="https://wp-pdf.com/thumbnails/?utm_source=Thumbnails%20Sidebar&utm_medium=freemium&utm_campaign=Freemium" target="_blank">PDF Thumbnails</a> plugin:</p>
<ul>
<li>Generates fixed image versions of PDFs</li>
<li>Use thumbnails as featured images in your posts</li>
<li>Embed thumbnails as link to full PDF</li>
<li>Easier to find your PDFs in the Media Library</li>
</ul>
<p>PDF Thumbnails is the perfect companion to any of our PDF Embedder plugins, or can be used standalone!</p>
<p>More details on <a href="https://wp-pdf.com/thumbnails/?utm_source=Thumbnails%20Sidebar&utm_medium=freemium&utm_campaign=Freemium" target="_blank">our website</a></p>
</div>
</div>
<?php
}
protected function extra_plugin_action_links( $links ) {
$secure_link = '<a href="http://wp-pdf.com/secure/?utm_source=Plugins%20Secure&utm_medium=freemium&utm_campaign=Freemium" target="_blank">Secure</a>';
$mobile_link = '<a href="http://wp-pdf.com/premium/?utm_source=Plugins%20Premium&utm_medium=freemium&utm_campaign=Freemium" target="_blank">Mobile</a>';
array_unshift( $links, $secure_link );
array_unshift( $links, $mobile_link );
return $links;
}
protected function get_translation_array() {
return array_merge(parent::get_translation_array(),
Array('poweredby' => get_site_option(self::$poweredby_optionname, false)));
}
public function pdfemb_attachment_fields_to_edit($form_fields, $post) {
if ($post->post_mime_type == 'application/pdf') {
$form_fields['pdfemb-upgrade'] = array(
'input' => 'html',
'html' => sprintf(__('Track downloads and views with <a href="%s" target="_blank">PDF Embedder Premium</a>','pdf-embedder'),
'http://wp-pdf.com/premium/?utm_source=Media%20Library&utm_medium=freemium&utm_campaign=Freemium'),
'label' => __( 'Downloads/Views', 'pdf-embedder' ));
}
return $form_fields;
}
// AUX
protected function my_plugin_basename() {
$basename = plugin_basename(__FILE__);
if ('/'.$basename == __FILE__) { // Maybe due to symlink
$basename = basename(dirname(__FILE__)).'/'.basename(__FILE__);
}
return $basename;
}
protected function my_plugin_url() {
$basename = plugin_basename(__FILE__);
if ('/'.$basename == __FILE__) { // Maybe due to symlink
return plugins_url().'/'.basename(dirname(__FILE__)).'/';
}
// Normal case (non symlink)
return plugin_dir_url( __FILE__ );
}
}
// Global accessor function to singleton
function pdfembPDFEmbedder() {
return pdfemb_basic_pdf_embedder::get_instance();
}
// Initialise at least once
pdfembPDFEmbedder();
?>
I am Miss Fanny Jayne, Arizona girl born and raised, wife and mother of 2 beautiful kiddos. By day, I work in interior design specializing in residential remodel but outside of that my hobbies include hiking, paddle boarding and thrift shopping. I LOVE pinup and the pinup community. I volunteer and give back as much as I can. Thanks for taking the time to get to know me and thanks for the support 💋
Full Bio
I am Miss Fanny Jayne, an Arizona native whose heart beats with the rhythm of retro glamour. By day, I have the privilege of channeling my creativity through my career of interior design, crafting unique spaces for clients across the valley. As a wife and mother of two, I love spending time with the fam while still pursuing my passion for pinup. My obsession for fashion shines through daily in my unique and eclectic vintage-inspired wardrobe. Beyond work, family and pageants, my hobbies include thrifting, anything outdoors and collecting tattoos. No matter the adventure, I try to live life to the absolute fullest.
You are not currently logged in. Please login or register first. When registering, you will receive an activation email. Be sure to check your spam if you don't see it in your email within 60 minutes.