added disclaimer to libse files

This commit is contained in:
following
2013-07-31 12:20:25 +02:00
parent e9fd225d2f
commit 1275fb85c9
24 changed files with 140 additions and 8 deletions

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Cache_Manager
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Cache_Status
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Cache_Where
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class CacheNote_Handler
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class CacheNote_Presenter
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class ChildWp_AddPresenter extends ChildWp_Presenter
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
require_once($opt['rootpath'] . 'lib2/error.inc.php');

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class ChildWp_DeletePresenter extends ChildWp_Presenter
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class ChildWp_EditPresenter extends ChildWp_Presenter
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class ChildWp_Handler
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
require_once($opt['rootpath'] . 'lib2/error.inc.php');

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class ChildWp_Type
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Coordinate_Coordinate
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Coordinate_Formatter
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Coordinate_Presenter
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
require_once($opt['rootpath'] . 'lib2/logic/const.inc.php');

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Http_Request
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
require_once($opt['rootpath'] . 'lib2/translate.class.php');

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Validator_AlwaysValid
{

View File

@ -1,4 +1,9 @@
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Validator_Array
{

View File

@ -1,4 +1,11 @@
<?php
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Validator_Integer extends Validator_Numeric
{
private $int_len;
@ -29,4 +36,5 @@
return intval($value);
}
}
}
?>

View File

@ -1,4 +1,11 @@
<?php
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
abstract class Validator_Numeric
{
private $min;
private $max;
@ -35,4 +42,5 @@
abstract protected function getValidateRegex();
abstract protected function getValue($value);
}
abstract protected function getValue($value);
?>

View File

@ -1,4 +1,11 @@
<?php
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Validator_Real extends Validator_Numeric
{
private $int_len;
private $dec_len;
@ -33,4 +40,5 @@
return floatval($value);
}
}
}
?>

View File

@ -1,4 +1,11 @@
<?php
<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class Validator_Regex
{
private $regex;
@ -12,4 +19,5 @@
return mb_ereg_match($this->regex, $value);
}
}
}
?>