Source: classes/controller/admin-scripts.php

  1. <?php
  2. namespace wpbuddy\rich_snippets;
  3. if ( ! defined( 'ABSPATH' ) ) {
  4. exit;
  5. } // Exit if accessed directly
  6. /**
  7. * Class Admin_Scripts.
  8. *
  9. * Enqueues scripts and styles.
  10. *
  11. * @package wpbuddy\rich_snippets
  12. *
  13. * @since 2.0.0
  14. */
  15. class Admin_Scripts_Controller {
  16. /**
  17. * The instance.
  18. *
  19. * @var Admin_Scripts_Controller
  20. *
  21. * @since 2.0.0
  22. */
  23. protected static $instance = null;
  24. /**
  25. * If this instance has been initialized already.
  26. *
  27. * @var bool
  28. */
  29. protected $initialized = false;
  30. /**
  31. * Get the singleton instance.
  32. *
  33. * Creates a new instance of the class if it does not exists.
  34. *
  35. * @return Admin_Scripts_Controller
  36. *
  37. * @since 2.0.0
  38. */
  39. public static function instance() {
  40. if ( null === self::$instance ) {
  41. self::$instance = new self;
  42. }
  43. if ( ! self::$instance->initialized ) {
  44. self::$instance->init();
  45. }
  46. return self::$instance;
  47. }
  48. /**
  49. * Magic function for cloning.
  50. *
  51. * Disallow cloning as this is a singleton class.
  52. *
  53. * @since 2.0.0
  54. */
  55. protected function __clone() {
  56. }
  57. /**
  58. * Magic method for setting upt the class.
  59. *
  60. * Disallow external instances.
  61. *
  62. * @since 2.0.0
  63. */
  64. protected function __construct() {
  65. }
  66. /**
  67. * Init and register.
  68. *
  69. * @since 2.2.0
  70. */
  71. public function init() {
  72. if ( $this->initialized ) {
  73. return;
  74. }
  75. /**
  76. * Register Styles
  77. */
  78. wp_register_style(
  79. 'wpb-rs-admin-snippets',
  80. plugins_url( 'css/admin-snippets.css', rich_snippets()->get_plugin_file() ),
  81. array(),
  82. filemtime( plugin_dir_path( rich_snippets()->get_plugin_file() ) . 'css/admin-snippets.css' )
  83. );
  84. wp_register_style(
  85. 'wpb-rs-admin-errors',
  86. plugins_url( 'css/admin-errors.css', rich_snippets()->get_plugin_file() ),
  87. array( 'wpb-rs-admin-snippets' ),
  88. filemtime( plugin_dir_path( rich_snippets()->get_plugin_file() ) . 'css/admin-errors.css' )
  89. );
  90. wp_register_style(
  91. 'wpb-rs-admin-posts',
  92. plugins_url( 'css/admin-posts.css', rich_snippets()->get_plugin_file() ),
  93. array( 'wpb-rs-admin-snippets' ),
  94. filemtime( plugin_dir_path( rich_snippets()->get_plugin_file() ) . 'css/admin-posts.css' )
  95. );
  96. /**
  97. * Register scripts
  98. */
  99. wp_register_script(
  100. 'wpb-rs-admin-errors',
  101. plugins_url( 'js/admin-errors.js', rich_snippets()->get_plugin_file() ),
  102. array( 'jquery' ),
  103. filemtime( plugin_dir_path( rich_snippets()->get_plugin_file() ) . 'js/admin-errors.js' )
  104. );
  105. wp_register_script(
  106. 'wpb-rs-admin-snippets',
  107. call_user_func( function () {
  108. if ( rich_snippets() instanceof \wpbuddy\rich_snippets\pro\Rich_Snippets_Plugin_Pro ) {
  109. return plugins_url( 'js/build/admin-snippets.js', rich_snippets()->get_plugin_file() );
  110. }
  111. return plugins_url( 'js/admin-snippets-free.js', rich_snippets()->get_plugin_file() );
  112. } ),
  113. array(
  114. 'wpb-rs-fields',
  115. 'wpb-rs-admin-errors',
  116. 'jquery',
  117. 'underscore',
  118. ),
  119. Helper_Model::instance()->get_plugin_data( 'Version' ),
  120. true
  121. );
  122. wp_add_inline_script( 'wpb-rs-admin-snippets', 'var rich_snippets = {\'snippets\': []};', 'before' );
  123. wp_register_script(
  124. 'wpb-rs-admin-posts',
  125. plugins_url( 'js/admin-posts.js', rich_snippets()->get_plugin_file() ),
  126. array( 'wpb-rs-admin-snippets', 'jquery' ),
  127. filemtime( plugin_dir_path( rich_snippets()->get_plugin_file() ) . 'js/admin-posts.js' )
  128. );
  129. wp_register_script(
  130. 'wpb-rs-fields',
  131. plugins_url( 'js/fields.js', rich_snippets()->get_plugin_file() ),
  132. array( 'jquery' ),
  133. filemtime( plugin_dir_path( rich_snippets()->get_plugin_file() ) . 'js/fields.js' )
  134. );
  135. $this->initialized = true;
  136. }
  137. /**
  138. * Enqueue snippet styles.
  139. *
  140. * @since 2.0.0
  141. */
  142. public function enqueue_snippets_styles() {
  143. wp_enqueue_style( 'wpb-rs-admin-snippets' );
  144. wp_enqueue_style( 'wpb-rs-admin-errors' );
  145. /**
  146. * Snippet Styles Action.
  147. *
  148. * Allows plugins to enqueue custom styles on the snippets screen.
  149. *
  150. * @hook wpbuddy/rich_snippets/schemas/styles
  151. *
  152. * @since 2.0.0
  153. */
  154. do_action( 'wpbuddy/rich_snippets/schemas/styles' );
  155. }
  156. /***
  157. * Enqueue snippet scripts.
  158. *
  159. * @since 2.0.0
  160. */
  161. public function enqueue_snippets_scripts() {
  162. $this->enqueue_script_snippets();
  163. }
  164. /**
  165. * Enqueue snippets scripts.
  166. *
  167. * @since 2.0.0
  168. */
  169. private function enqueue_script_snippets() {
  170. wp_enqueue_script( 'wpb-rs-admin-snippets' );
  171. wp_add_inline_script(
  172. 'wpb-rs-admin-snippets',
  173. "var WPB_RS_ADMIN = " . \json_encode( $this->get_admin_snippets_script_data() ) . ";",
  174. 'before'
  175. );
  176. wp_enqueue_script( 'wpb-rs-admin-errors' );
  177. }
  178. /**
  179. * Enqueue scripts for singular posts.
  180. *
  181. * @since 2.0.0
  182. */
  183. private function enqueue_scripts_posts() {
  184. wp_enqueue_script( 'wpb-rs-admin-posts' );
  185. wp_add_inline_script(
  186. 'wpb-rs-admin-posts',
  187. "var WPB_RS_POSTS = " . \json_encode( $this->get_admin_posts_script_data() ) . ";",
  188. 'before'
  189. );
  190. }
  191. /**
  192. * Returns an object of data needed by admin snippet script.
  193. *
  194. * @return \stdClass
  195. * @since 2.0.0
  196. *
  197. */
  198. private function get_admin_snippets_script_data(): \stdClass {
  199. global $post;
  200. $post_id = is_a( $post, 'WP_Post' ) ? $post->ID : 0;
  201. $o = new \stdClass();
  202. $o->nonce = wp_create_nonce( 'wp_rest' );
  203. $o->rest_url = untrailingslashit( rest_url( 'wpbuddy/rich_snippets/v1' ) );
  204. $o->i18n = new \stdClass();
  205. $o->i18n->expand = __( 'Expand all', 'rich-snippets-schema' );
  206. $o->i18n->collapse = __( 'Collapse all', 'rich-snippets-schema' );
  207. if ( ! empty( $post_id ) ) {
  208. $o->post_id = $post_id;
  209. }
  210. return $o;
  211. }
  212. /**
  213. * Returns an object of data needed by admin posts script.
  214. *
  215. * @return \stdClass
  216. * @since 2.0.0
  217. *
  218. */
  219. private function get_admin_posts_script_data(): \stdClass {
  220. global $post;
  221. $post_id = is_a( $post, 'WP_Post' ) ? $post->ID : 0;
  222. $o = new \stdClass();
  223. $o->nonce = wp_create_nonce( 'wp_rest' );
  224. $o->rest_url = untrailingslashit( rest_url( 'wpbuddy/rich_snippets/v1' ) );
  225. if ( ! empty( $post_id ) ) {
  226. $o->post_id = $post_id;
  227. }
  228. return $o;
  229. }
  230. /**
  231. * Enqueue posts scripts.
  232. *
  233. * @since 2.0.0
  234. */
  235. public function enqueue_posts_scripts() {
  236. $this->enqueue_scripts_posts();
  237. $this->enqueue_styles_posts();
  238. }
  239. /**
  240. * Enqueue posts forms scripts.
  241. *
  242. * @since 2.2.0
  243. */
  244. public function enqueue_posts_forms_scripts() {
  245. $this->enqueue_styles_posts_forms();
  246. }
  247. /**
  248. * Enqueue CSS scripts for posts.
  249. *
  250. * @since 2.0.0
  251. */
  252. private function enqueue_styles_posts() {
  253. wp_enqueue_style( 'wpb-rs-admin-posts' );
  254. /**
  255. * Snippet Post Styles Action.
  256. *
  257. * Allows plugins to enqueue custom styles on the posts screen.
  258. *
  259. * @hook wpbuddy/rich_snippets/posts/styles
  260. *
  261. * @since 2.0.0
  262. */
  263. do_action( 'wpbuddy/rich_snippets/posts/styles' );
  264. }
  265. /**
  266. * Enqueue CSS scripts for posts forms.
  267. *
  268. * @since 2.2.0
  269. */
  270. private function enqueue_styles_posts_forms() {
  271. /**
  272. * Snippet Styles Post Forms.
  273. *
  274. * Allows plugins to enqueue custom styles on the snippets post forms screen.
  275. *
  276. * @hook wpbuddy/rich_snippets/posts_forms/styles
  277. *
  278. * @since 2.2.0
  279. */
  280. do_action( 'wpbuddy/rich_snippets/posts_forms/styles' );
  281. }
  282. }