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
|
<?php /** * Plugin Name: Mediamatic Lite * Plugin URI: http://mediamatic.frenify.com/1/ * Description: Get organized with thousands of images. Organize media into folders. * Version: 2.4 * Author: plugincraft * Author URI: http://mediamatic.frenify.com/1/ * Text Domain: mediamatic * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Domain Path: /languages/ */
/*
This plugin uses Open Source components. You can find the source code of their open source projects along with license information below. We acknowledge and are grateful to these developers for their contributions to open source.
--------------------------------------------------------------------
Project: FileBird – WordPress Media Library Folders (version:2.0) Author: Ninja Team Url: https://wordpress.org/plugins/filebird/ Lisence: GPL (General Public License)
--------------------------------------------------------------------
Project: Folders – Organize Pages, Posts and Media Library Folders with Drag and Drop (version:2.1.1) Author: Premio Url: https://wordpress.org/plugins/folders/ Lisence: GPL (General Public License)
*/
if ( ! defined( 'ABSPATH' ) ) { exit; }
define( 'MEDIAMATIC__FILE__', __FILE__ ); define( 'MEDIAMATIC_FOLDER', 'mediamatic_wpfolder' ); define( 'MEDIAMATIC_VERSION', '2.4' ); define( 'MEDIAMATIC_PATH', plugin_dir_path( MEDIAMATIC__FILE__ ) ); define( 'MEDIAMATIC_URL', plugins_url( '/', MEDIAMATIC__FILE__ ) ); define( 'MEDIAMATIC_ASSETS_URL', MEDIAMATIC_URL . 'assets/' ); define( 'MEDIAMATIC_TEXT_DOMAIN', 'mediamatic' ); define( 'MEDIAMATIC_PLUGIN_BASE', plugin_basename( MEDIAMATIC__FILE__ ) ); define( 'MEDIAMATIC_PLUGIN_NAME', 'Mediamatic Lite' );
function mediamatic_plugins_loaded(){
// main files include_once ( MEDIAMATIC_PATH . 'inc/plugin.php' ); include_once ( MEDIAMATIC_PATH . 'inc/functions.php' ); mediamatic_cores(); load_plugin_textdomain(MEDIAMATIC_TEXT_DOMAIN, false, plugin_basename(__DIR__) . '/languages/'); }
add_action('plugins_loaded', 'mediamatic_plugins_loaded');
|