Skip to content

Instantly share code, notes, and snippets.

View nirajkvinit's full-sized avatar

Niraj Kumar nirajkvinit

View GitHub Profile
@nirajkvinit
nirajkvinit / .gitignore
Created July 4, 2017 17:19 — forked from Swader/.gitignore
ultimate-gitignore
# Composer
vendor
composer.phar
# IntelliJ - PhpStorm and PyCharm
.idea
*.ipr
*.iws
# Logs
@nirajkvinit
nirajkvinit / Controller.php
Created January 25, 2016 21:29 — forked from gmazzap/Controller.php
WordPress plugin to ease the creation of virtual pages.
<?php
namespace GM\VirtualPages;
class Controller implements ControllerInterface {
private $pages;
private $loader;
private $matched;
function __construct( TemplateLoaderInterface $loader ) {