View file mooSocial v2.3.0 - PHP Social Network/upload/app/Lib/MooComponent.php

File size: 268B
<?php
class MooComponent
{
   	protected static $_values = array();
   	
   	public static function register($key,$settings = array())
   	{
   		self::$_values[$key] = $settings;
   	}
   	
   	public static function getAll()
   	{
   		return self::$_values;
   	}
}