Поправил названия классов

This commit is contained in:
origami11 2017-02-17 14:56:15 +03:00
parent c8958cbee0
commit 90f0ebde7b
4 changed files with 4 additions and 6 deletions

View file

@ -4,7 +4,7 @@
* http://www.alternateinterior.com/2006/09/a-viewstate-for-php.html
* Управление состоянием между страницами
*/
class ViewState // extends Collection
class Form_ViewState // extends Collection
{
private $values = array();
@ -13,7 +13,7 @@ class ViewState // extends Collection
$this->values[$name] = $value;
}
function get()
function get($_rest)
{
$args = func_get_args();
$result = $this->values;

View file

@ -1,6 +1,6 @@
<?php
class Drawing
class Tools_Drawing
{
const ALIGN_LEFT = "left";
const ALIGN_TOP = "top";

View file

@ -1,6 +1,6 @@
<?php
class Core_Tools_Image
class Tools_Image
{
static function load($uri)
{

View file

@ -1,7 +1,5 @@
<?php
require_once 'core/tools/drawing.php';
/**
* Формат для композиции изображений
*/