This repository has been archived by the owner on Dec 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
block-copy.php
198 lines (166 loc) · 6.12 KB
/
block-copy.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php
/**
* The `Block Copy` bootstrap file.
*
* This file is read by WordPress to generate the plugin information in the plugin
* admin area. This file also includes all of the dependencies used by the plugin,
* registers the activation and deactivation functions, and defines a function
* that starts the plugin.
*
* Block Copy is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* @link https://www.mypreview.one
* @since 1.0.1
* @package block-copy
* @author MyPreview (Github: @mahdiyazdani, @mypreview)
* @copyright © 2015 - 2020 MyPreview. All Rights Reserved.
*
* @wordpress-plugin
* Plugin Name: Block Copy
* Plugin URI: https://www.mypreview.one
* Description: A Gutenberg editor extension that provides a simple GUI based solution to copy a single or number of blocks to the clipboard.
* Version: 1.0.1
* Author: MyPreview
* Author URI: https://www.upwork.com/o/profiles/users/_~016ad17ad3fc5cce94
* License: GPL-3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Text Domain: block-copy
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
wp_die();
} // End If Statement
/**
* Gets the path to a plugin file or directory.
*
* @see https://codex.wordpress.org/Function_Reference/plugin_basename
* @see http://php.net/manual/en/language.constants.predefined.php
*/
$block_copy_plugin_data = get_file_data(
__FILE__,
array(
'author_uri' => 'Author URI',
'version' => 'Version',
),
'plugin'
);
define( 'BLOCK_COPY_VERSION', $block_copy_plugin_data['version'] );
define( 'BLOCK_COPY_AUTHOR_URI', $block_copy_plugin_data['author_uri'] );
define( 'BLOCK_COPY_SLUG', 'block-copy' );
define( 'BLOCK_COPY_FILE', __FILE__ );
define( 'BLOCK_COPY_BASENAME', basename( BLOCK_COPY_FILE ) );
define( 'BLOCK_COPY_PLUGIN_BASENAME', plugin_basename( BLOCK_COPY_FILE ) );
define( 'BLOCK_COPY_DIR_URL', plugin_dir_url( BLOCK_COPY_FILE ) );
define( 'BLOCK_COPY_DIR_PATH', plugin_dir_path( BLOCK_COPY_FILE ) );
if ( ! class_exists( 'Block_Copy' ) ) :
/**
* The Block Copy - Class
*/
final class Block_Copy {
/**
* Instance of the class.
*
* @var object $instance
*/
private static $instance = null;
/**
* Main `Block_Copy` instance
* Ensures only one instance of `Block_Copy` is loaded or can be loaded.
*
* @access public
* @return instance
*/
public static function instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
} // End If Statement
return self::$instance;
}
/**
* Setup class.
*
* @access protected
* @return void
*/
protected function __construct() {
add_action( 'init', array( $this, 'textdomain' ) );
add_action( 'enqueue_block_editor_assets', array( $this, 'editor_enqueue' ) );
add_filter( sprintf( 'plugin_action_links_%s', BLOCK_COPY_PLUGIN_BASENAME ), array( $this, 'additional_links' ) );
}
/**
* Cloning instances of this class is forbidden.
*
* @access protected
* @return void
*/
protected function __clone() {
_doing_it_wrong( __FUNCTION__, esc_html_x( 'Cloning instances of this class is forbidden.', 'clone', 'block-copy' ), esc_html( BLOCK_COPY_VERSION ) );
}
/**
* Unserializing instances of this class is forbidden.
*
* @access public
* @return void
*/
public function __wakeup() {
_doing_it_wrong( __FUNCTION__, esc_html_x( 'Unserializing instances of this class is forbidden.', 'wakeup', 'block-copy' ), esc_html( BLOCK_COPY_VERSION ) );
}
/**
* Load languages file and text domains.
* Define the internationalization functionality.
*
* @access public
* @return void
*/
public function textdomain() {
load_plugin_textdomain( 'block-copy', false, dirname( dirname( BLOCK_COPY_PLUGIN_BASENAME ) ) . '/languages/' );
}
/**
* Register the stylesheets and JavaScript for the Gutenberg (editor) side of the site.
*
* @access public
* @return void
*/
public function editor_enqueue() {
$script_path = sprintf( '%sdist/script.js', BLOCK_COPY_DIR_PATH );
$script_asset_path = sprintf( '%sdist/script.asset.php', BLOCK_COPY_DIR_PATH );
$script_asset = file_exists( $script_asset_path ) ? require $script_asset_path : array(
'dependencies' => array( 'wp-blocks', 'wp-dom-ready', 'lodash' ),
'version' => filemtime( $script_path ),
);
$script_url = sprintf( '%sdist/script.js', BLOCK_COPY_DIR_URL );
// Enqueue the script.
wp_enqueue_script( BLOCK_COPY_SLUG, $script_url, $script_asset['dependencies'], $script_asset['version'], true );
wp_set_script_translations( BLOCK_COPY_SLUG, 'block-data-attribute', sprintf( '%s/languages/', BLOCK_COPY_DIR_PATH ) );
}
/**
* Display additional links in plugins table page.
* Filters the list of action links displayed for a specific plugin in the Plugins list table.
*
* @access public
* @param array $links An array of plugin action links.
* @return array $links
*/
public function additional_links( $links ) {
$plugin_links = array();
/* translators: 1: Open anchor tag, 2: Close anchor tag. */
$plugin_links[] = sprintf( _x( '%1$sHire Me!%2$s', 'plugin link', 'block-copy' ), sprintf( '<a href="%s" class="button-link-delete" target="_blank" rel="noopener noreferrer nofollow" title="%s">', esc_url( BLOCK_COPY_AUTHOR_URI ), esc_attr_x( 'Looking for help? Hire Me!', 'upsell', 'block-copy' ) ), '</a>' );
return array_merge( $plugin_links, $links );
}
}
endif;
if ( ! function_exists( 'block_copy_init' ) ) :
/**
* Returns the main instance of Block_Copy to prevent the need to use globals.
*
* @return object(class) Block_Copy::instance
*/
function block_copy_init() {
return Block_Copy::instance();
}
block_copy_init();
endif;