PluginProbe
BetterLinks – Link Shortener, Link Cloaking, Redirects, Affiliate Link Manager & MCP / 2.4.13
BetterLinks – Link Shortener, Link Cloaking, Redirects, Affiliate Link Manager & MCP v2.4.13
3.1.3 3.1.2 3.1.1 3.1.0 3.0.1 3.0.0 2.4.13 2.4.12 2.4.11 2.4.10 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 All 110 releases
betterlinks / includes / API / Controller.php

Controller.php in BetterLinks – Link Shortener, Link Cloaking, Redirects, Affiliate Link Manager & MCP 2.4.13, at includes/API/Controller.php

14 lines 436 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace BetterLinks\API;
3 if ( ! defined( 'ABSPATH' ) ) { exit; }
4
5 abstract class Controller {
6
7 protected $namespace = BETTERLINKS_PLUGIN_SLUG . '/v1';
8 abstract protected function get_items( $request );
9 abstract protected function create_item( $request );
10 abstract protected function update_item( $request );
11 abstract protected function delete_item( $request );
12 abstract protected function permissions_check( $request );
13 }
14