-
Notifications
You must be signed in to change notification settings - Fork 3
/
pojo-builder-animation.php
94 lines (77 loc) · 2.59 KB
/
pojo-builder-animation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
/*
Plugin Name: Pojo Builder Animation
Plugin URI: http://pojo.me/
Description: The Builder Animation plugin makes it possible to animate element by setting some animation in widget's builder with Pojo Framework.
Author: Pojo Team
Author URI: http://pojo.me/
Version: 1.0.3
Text Domain: pb-animation
Domain Path: /languages/
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
define( 'POJO_BUILDER_ANIMATION__FILE__', __FILE__ );
define( 'POJO_BUILDER_ANIMATION_BASE', plugin_basename( POJO_BUILDER_ANIMATION__FILE__ ) );
define( 'POJO_BUILDER_ANIMATION_URL', plugins_url( '/', POJO_BUILDER_ANIMATION__FILE__ ) );
define( 'POJO_BUILDER_ANIMATION_ASSETS_URL', POJO_BUILDER_ANIMATION_URL . 'assets/' );
final class Pojo_Builder_Animation {
/**
* @var Pojo_Builder_Animation The one true Pojo_Builder_Animation
* @since 1.0.0
*/
private static $_instance = null;
/** @var Pojo_Builder_Animation_Actions */
public $actions;
/** @var Pojo_Builder_Animation_Scripts */
public $scripts;
public function load_textdomain() {
load_plugin_textdomain( 'pb-animation', false, basename( dirname( __FILE__ ) ) . '/languages' );
}
/**
* Throw error on object clone
*
* The whole idea of the singleton design pattern is that there is a single
* object therefore, we don't want the object to be cloned.
*
* @since 1.0.0
* @return void
*/
public function __clone() {
// Cloning instances of the class is forbidden
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'pb-animation' ), '1.0.0' );
}
/**
* Disable unserializing of the class
*
* @since 1.0.0
* @return void
*/
public function __wakeup() {
// Unserializing instances of the class is forbidden
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'pb-animation' ), '1.0.0' );
}
/**
* @return Pojo_Builder_Animation
*/
public static function instance() {
if ( is_null( self::$_instance ) )
self::$_instance = new Pojo_Builder_Animation();
return self::$_instance;
}
public function bootstrap() {
// This plugin for Pojo Themes..
// TODO: Add notice for non-pojo theme
if ( ! class_exists( 'Pojo_Core' ) )
return;
include( 'classes/class-pojo-builder-animation-actions.php' );
include( 'classes/class-pojo-builder-animation-scripts.php' );
$this->actions = new Pojo_Builder_Animation_Actions();
$this->scripts = new Pojo_Builder_Animation_Scripts();
}
private function __construct() {
add_action( 'init', array( &$this, 'bootstrap' ) );
add_action( 'plugins_loaded', array( &$this, 'load_textdomain' ) );
}
}
Pojo_Builder_Animation::instance();
// EOF