PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 1.7.2
Visualizer – Tables & Charts Manager with Built-in AI Generator v1.7.2
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
visualizer / classes / Visualizer / Module / Setup.php

Setup.php in Visualizer – Tables & Charts Manager with Built-in AI Generator 1.7.2, at classes/Visualizer/Module/Setup.php

77 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // +----------------------------------------------------------------------+
4 // | Copyright 2013 Madpixels (email : visualizer@madpixels.net) |
5 // +----------------------------------------------------------------------+
6 // | This program is free software; you can redistribute it and/or modify |
7 // | it under the terms of the GNU General Public License, version 2, as |
8 // | published by the Free Software Foundation. |
9 // | |
10 // | This program is distributed in the hope that it will be useful, |
11 // | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 // | GNU General Public License for more details. |
14 // | |
15 // | You should have received a copy of the GNU General Public License |
16 // | along with this program; if not, write to the Free Software |
17 // | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, |
18 // | MA 02110-1301 USA |
19 // +----------------------------------------------------------------------+
20 // | Author: Eugene Manuilov <eugene@manuilov.org> |
21 // +----------------------------------------------------------------------+
22 /**
23 * General module what setups all required environment.
24 *
25 * @category Visualizer
26 * @package Module
27 *
28 * @since 1.0.0
29 */
30 class Visualizer_Module_Setup extends Visualizer_Module {
31
32 const NAME = __CLASS__;
33
34 /**
35 * Constructor.
36 *
37 * @since 1.0.0
38 *
39 * @access public
40 * @param Visualizer_Plugin $plugin The instance of the plugin.
41 */
42 public function __construct( Visualizer_Plugin $plugin ) {
43 parent::__construct( $plugin );
44
45 $this->_addAction( 'init', 'setupCustomPostTypes' );
46 $this->_addAction( 'plugins_loaded', 'loadTextDomain' );
47 }
48
49 /**
50 * Registers custom post type for charts.
51 *
52 * @since 1.0.0
53 * @uses register_post_type() To register custom post type for charts.
54 *
55 * @access public
56 */
57 public function setupCustomPostTypes() {
58 register_post_type( Visualizer_Plugin::CPT_VISUALIZER, array(
59 'label' => 'Visualizer Charts',
60 'public' => false,
61 ) );
62 }
63
64 /**
65 * Loads plugin text domain translations.
66 *
67 * @since 1.0.0
68 * @uses load_plugin_textdomain() To load translations for the plugin.
69 *
70 * @access public
71 */
72 public function loadTextDomain() {
73 load_plugin_textdomain( Visualizer_Plugin::NAME, false, dirname( plugin_basename( VISUALIZER_BASEFILE ) ) . '/languages/' );
74 }
75
76 }
77