Giter Club home page Giter Club logo

wpextension / mvcextension Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 0.0 3.63 MB

WP Extension is a WordPress MVC framework. Design to build backend application wp plugin and theme maintainable and secure codes.

License: GNU General Public License v2.0

PHP 87.08% Hack 0.01% CSS 0.87% JavaScript 12.04%
application-development php8 plugin-development theme-development wordpress-framework wordpress-mvc basic-authentication cmb2 rest-api jwt-authentication jwt-token

mvcextension's Introduction

MVCExtension - a WordPress plugin mvc framework

Support PHP v8 and future++

WP Extension is a WordPress MVC framework. Design to build backend application wp plugin and theme maintainable and secure codes.

Package WP Plugin Included installed with MVCExtension :
> wpbb[dot]me Plugin Boilerplate
> CMB2 Custom field By CMB2 team
> Application Password (BasicAuth REST_API Authentication) By George Stephanis

 // RECOMMEND JWT AUTH: <br /> > JWT Authentication for WP REST API By Enrique Chavez
 // Secured Authentication Token:
 # Installed WP Plugin: https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/ 
 # Instruction:
 # Edit Your Htaccess: 
   RewriteEngine on
   RewriteCond %{HTTP:Authorization} ^(.*)
   RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
 
 # At config file
   define('JWT_AUTH_SECRET_KEY', 'your-top-secret-key');

 # Endpoint | HTTP Verb
  /wp-json/jwt-auth/v1/token | POST
  /wp-json/jwt-auth/v1/token/validate | POST

 # POSTMAN/Thunder Create and Generate Token:
 http://<domain>/wp-json/jwt-auth/v1/token?username=admin&password=admin

 HTTPS AUTHORIZATION TYPE: Bearer
 Token: 1614c2sa1c65asc
 


MVC Extension with VueJS
https://github.com/WPExtension/MVCExtensionWithVueJS


MVC Extension with VueJS and Component
https://github.com/WPExtension/MVCExtensionWithVueJSComponent


MVC Extension With VueJS Component Webpack Optimization JS&CSS
https://github.com/WPExtension/MVCExtensionWithVueJSComponentWebpack


WP Query post object
Source: https://nielsoffice2017.wordpress.com/2021/11/24/wordpress-the-loop-fetch-data-from-database-wp_query-php/
// Handling Post object in Controller
$query = new WP_Query( array( 'post_type' => 'page' ) );
$posts = $query->posts;

// @view
foreach($posts as $post) { echo $post->post_name; }

Thanks To:

Github : To allow me to upload my PHP Library PHPWine Vanilla Flavour to repository
php.net : To oppurtunity Develop web application using corePHP - PHPFrameworks
WordPress : To oppurtunity Develop web site and plugin free

LICENSE BY GPL v2.0

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Would you like me to treat a cake and coffee ?
Become a donor, Because with you! We can build more...

Donate:
GCash : +639650332900
Paypal account: [email protected]



Thanks and good luck!

mvcextension's People

Contributors

nielsoffice avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.