PluginProbe
Scrollsequence – Cinematic Scroll Image Animation Plugin / 1.0.073
Scrollsequence – Cinematic Scroll Image Animation Plugin v1.0.073
1.4.3 1.4.4 1.4.5 1.4.6 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 trunk 0.9.92 0.9.93 0.9.94 0.9.96 1.0.072 1.0.073 All 61 releases
scrollsequence / scrollsequence.php

scrollsequence.php in Scrollsequence – Cinematic Scroll Image Animation Plugin 1.0.073, at scrollsequence.php

136 lines 4.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 *
5 * Tento plugin je venovan me zene Veronice, synu Alexovi a dceri Agatce.
6 *
7 *
8 * @link www.scrollsequence.com
9 * @since 0.7.0
10 * @package Scrollsequence
11 *
12 * @wordpress-plugin
13 * Plugin Name: Scrollsequence
14 * Plugin URI: www.scrollsequence.com
15 * Description: Create stunning image animation that play and rewind on scroll. Make your website come alive with just few clicks.
16 * Version: 1.0.073
17 * Author: Scrollsequence
18 * Author URI: www.scrollsequence.com
19 * License: GPL-2.0+
20 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
21 * Text Domain: scrollsequence
22 * Domain Path: /languages
23 */
24 if ( !defined( 'ABSPATH' ) ) {
25 exit;
26 }
27
28 if ( function_exists( 'freemius_scrollsequence' ) ) {
29 freemius_scrollsequence()->set_basename( false, __FILE__ );
30 } else {
31 // DO NOT REMOVE THIS IF, IT IS ESSENTIAL FOR THE `function_exists` CALL ABOVE TO PROPERLY WORK.
32
33 if ( !function_exists( 'freemius_scrollsequence' ) ) {
34 // ... Freemius integration snippet ...
35 // FREEMIUS COPY START
36
37 if ( !function_exists( 'freemius_scrollsequence' ) ) {
38 // Create a helper function for easy SDK access.
39 function freemius_scrollsequence()
40 {
41 global $freemius_scrollsequence ;
42
43 if ( !isset( $freemius_scrollsequence ) ) {
44 // Include Freemius SDK.
45 require_once dirname( __FILE__ ) . '/includes/freemius/start.php';
46 $freemius_scrollsequence = fs_dynamic_init( array(
47 'id' => '5856',
48 'slug' => 'scrollsequence',
49 'premium_slug' => 'scrollsequence-pro',
50 'type' => 'plugin',
51 'public_key' => 'pk_ea24bea874c80814ebc58bc230264',
52 'is_premium' => false,
53 'premium_suffix' => 'PRO',
54 'has_addons' => false,
55 'has_paid_plans' => true,
56 'trial' => array(
57 'days' => 14,
58 'is_require_payment' => false,
59 ),
60 'menu' => array(
61 'slug' => 'edit.php?post_type=scrollsequence',
62 'first-path' => 'admin.php?page=dashboard',
63 'support' => false,
64 ),
65 'is_live' => true,
66 ) );
67 }
68
69 return $freemius_scrollsequence;
70 }
71
72 // Init Freemius.
73 freemius_scrollsequence();
74 // Signal that SDK was initiated.
75 do_action( 'freemius_scrollsequence_loaded' );
76 }
77
78 // FREEMIUS COPY END
79 }
80
81 // ... Your plugin's main file logic ...
82 // If this file is called directly, abort.
83 if ( !defined( 'WPINC' ) ) {
84 die;
85 }
86 /**
87 * Currently plugin version.
88 * Start at version 0.7.0 and use SemVer - https://semver.org
89 * Rename this for your plugin and update it as you release new versions.
90 */
91 define( 'SCROLLSEQUENCE_VERSION', '1.0.073' );
92 /**
93 * The code that runs during plugin activation.
94 * This action is documented in includes/class-scrollsequence-activator.php
95 */
96 function activate_scrollsequence()
97 {
98 require_once plugin_dir_path( __FILE__ ) . 'includes/class-scrollsequence-activator.php';
99 Scrollsequence_Activator::activate();
100 }
101
102 /**
103 * The code that runs during plugin deactivation.
104 * This action is documented in includes/class-scrollsequence-deactivator.php
105 */
106 function deactivate_scrollsequence()
107 {
108 require_once plugin_dir_path( __FILE__ ) . 'includes/class-scrollsequence-deactivator.php';
109 Scrollsequence_Deactivator::deactivate();
110 }
111
112 register_activation_hook( __FILE__, 'activate_scrollsequence' );
113 register_deactivation_hook( __FILE__, 'deactivate_scrollsequence' );
114 /**
115 * The core plugin class that is used to define internationalization,
116 * admin-specific hooks, and public-facing site hooks.
117 */
118 require plugin_dir_path( __FILE__ ) . 'includes/class-scrollsequence.php';
119 /**
120 * Begins execution of the plugin.
121 *
122 * Since everything within the plugin is registered via hooks,
123 * then kicking off the plugin from this point in the file does
124 * not affect the page life cycle.
125 *
126 * @since 1.0.0
127 */
128 function run_scrollsequence()
129 {
130 $plugin = new Scrollsequence();
131 $plugin->run();
132 }
133
134 run_scrollsequence();
135 }
136