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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
<?php
/*
Plugin Name: HJI New Construction
Plugin URI:
Description: New construction communities by Home Junction Inc.
Version: 1.0.2
Author: Home Junction, Max Chirkov
Author URI: http://HomeJunction.com
Text Domain: hjpl
License: GPL2
HJI Package: hji-membership
HJI Require Plugins: HJI Membership:2.2.1, HJI Responsive IDX:3.0.8, HJI Users:1.2.2
*/
/* Copyright 2014 Home Junction Inc. (email : max.chirkov@hjimail.com)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
namespace hji\construction;
require dirname(__FILE__) . '/autoload.php';
new NewConstruction();
class NewConstruction
{
static $slug;
static $file;
protected $services;
protected $router;
public function __construct()
{
self::$slug = 'hji-new-construction';
self::$file = __FILE__;
// Registers plugin with Membership
add_filter('hji_membership_register_plugin', array($this, 'registerPlugin'));
register_activation_hook(__FILE__, array($this, 'doOnPluginActivation'));
register_deactivation_hook(__FILE__, array($this, 'doOnPluginDeactivation'));
}
public function registerPlugin($plugins)
{
array_push($plugins, array('file' => __FILE__, 'callback' => array($this, 'init')));
return $plugins;
}
public function init()
{
$app = new App();
$app->run();
}
public function doOnPluginActivation()
{
$app = new App();
$app->doOnPluginActivation();
}
public function doOnPluginDeactivation()
{
flush_rewrite_rules();
}
}