Поправил названия классов
This commit is contained in:
parent
c8958cbee0
commit
90f0ebde7b
4 changed files with 4 additions and 6 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
* http://www.alternateinterior.com/2006/09/a-viewstate-for-php.html
|
* http://www.alternateinterior.com/2006/09/a-viewstate-for-php.html
|
||||||
* Управление состоянием между страницами
|
* Управление состоянием между страницами
|
||||||
*/
|
*/
|
||||||
class ViewState // extends Collection
|
class Form_ViewState // extends Collection
|
||||||
{
|
{
|
||||||
private $values = array();
|
private $values = array();
|
||||||
|
|
||||||
|
|
@ -13,7 +13,7 @@ class ViewState // extends Collection
|
||||||
$this->values[$name] = $value;
|
$this->values[$name] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
function get()
|
function get($_rest)
|
||||||
{
|
{
|
||||||
$args = func_get_args();
|
$args = func_get_args();
|
||||||
$result = $this->values;
|
$result = $this->values;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class Drawing
|
class Tools_Drawing
|
||||||
{
|
{
|
||||||
const ALIGN_LEFT = "left";
|
const ALIGN_LEFT = "left";
|
||||||
const ALIGN_TOP = "top";
|
const ALIGN_TOP = "top";
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class Core_Tools_Image
|
class Tools_Image
|
||||||
{
|
{
|
||||||
static function load($uri)
|
static function load($uri)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require_once 'core/tools/drawing.php';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Формат для композиции изображений
|
* Формат для композиции изображений
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue