-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathframeright.php
More file actions
39 lines (36 loc) · 1.5 KB
/
frameright.php
File metadata and controls
39 lines (36 loc) · 1.5 KB
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
<?php
/**
* Plugin Name: Image Display Control
* Plugin URI: https://github.com/Frameright/image-display-control-wordpress
* Description: An easy way to leverage image cropping metadata on your site. Made by Frameright. Power to the pictures!
* Author: Frameright
* Author URI: https://frameright.io
* Version: 1.0.0
* License: GPL-3.0-or-later
* License URI: license.txt
* Text Domain: frameright
* Domain Path: /languages
* Requires PHP: 5.6
* Requires at least: 5.1
*
* Image Display Control WordPress Plugin 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.
*
* Image Display Control WordPress Plugin is distributed in the hope that it
* will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Image Display Control WordPress Plugin. If not, see
* https://www.gnu.org/licenses/gpl-3.0.en.html
*
* @package FramerightImageDisplayControl
*/
namespace FramerightImageDisplayControl;
require_once __DIR__ . '/src/admin/admin-plugin.php';
require_once __DIR__ . '/src/render/render-plugin.php';
new Admin\AdminPlugin();
new Render\RenderPlugin();