all-in-one-event-calendar/app/model/app.php

34 lines
741 B
PHP
Raw Permalink Normal View History

2017-03-16 16:59:53 +01:00
<?php
/**
* Base application model.
*
* @author Time.ly Network, Inc.
* @since 2.0
* @package Ai1EC
* @subpackage Ai1EC.Model
*/
class Ai1ec_App extends Ai1ec_Base {
2017-11-09 17:36:04 +01:00
/**
* Initiate base objects.
*
* @param Ai1ec_Registry_Object $registry
* @internal param \Ai1ec_Registry_Object $system Injectable system object.
*/
public function __construct( Ai1ec_Registry_Object $registry ) {
parent::__construct( $registry );
$this->_initialize();
}
2017-03-16 16:59:53 +01:00
2017-11-09 17:36:04 +01:00
/**
* Post construction routine.
*
* Override this method to perform post-construction tasks.
*
* @return void Return from this method is ignored.
*/
protected function _initialize() {}
2017-03-16 16:59:53 +01:00
}