all-in-one-event-calendar/lib/bootstrap/abstract.php

29 lines
586 B
PHP
Raw Permalink Normal View History

2017-03-16 16:59:53 +01:00
<?php
/**
* The base class which simply sets the registry object.
*
* @author Time.ly Network, Inc.
* @since 2.0
* @package Ai1EC
* @subpackage Ai1EC.Bootstrap
*/
abstract class Ai1ec_Base {
2017-11-09 17:36:04 +01:00
/**
* @var Ai1ec_Registry_Object
*/
protected $_registry;
2017-03-16 16:59:53 +01:00
2017-11-09 17:36:04 +01:00
/**
* The contructor method.
*
* Stores in object injected registry object.
*
* @param Ai1ec_Registry_Object $registry Injected registry object.
*/
public function __construct( Ai1ec_Registry_Object $registry ) {
$this->_registry = $registry;
}
2017-03-16 16:59:53 +01:00
}