Skip to content

Commit

Permalink
Updated ChangeLog.txt and renamed array adaptor to list adaptor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew A Mattson committed Aug 24, 2012
1 parent e15d41a commit b5bce44
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
18 changes: 18 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
Change Log for LEAP ORM

2012-08-24
* Added a new 'count' method to SQL select builder.
* Added some sample MPTT SQL schema files.
* Updated MPTT methods.
* Corrected some inline documentation.
* Replaced some string operators with constants.
* Replaced is_null function with === comparisons.
* Added a new 'regex' property to 'string' field.
* Replaced 'self' keywords, get_called_class(), and call_user_func() with PHP 5.3+ equivalents.
* Added some new UOM conversions to config.
* Replace && and || with AND and OR, respectfully.
* Added adaptors and aliases to Base_DB_ORM_Model::as_array().
* Added create and update methods to Base_DB_ORM_Model.
* Replace spl_object_hash() with Kohana_Object::__hashCode().
* Base_DB_ORM_Field_Blob now uses the Data class.
* Renamed DB_ORM_Field_Adaptor_Array to DB_ORM_Field_Adaptor_List.
* Renamed some variables.

2012-08-14
* Reworked validation in field classes (Issues #50, #59, #60).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
*/

/**
* This class represents an "array" adaptor for a delimitated string field
* This class represents a "list" adaptor for a delimitated string field
* in a database table.
*
* @package Leap
* @category ORM
* @version 2012-08-20
* @version 2012-08-24
*
* @abstract
*/
abstract class Base_DB_ORM_Field_Adaptor_Array extends DB_ORM_Field_Adaptor {
abstract class Base_DB_ORM_Field_Adaptor_List extends DB_ORM_Field_Adaptor {

/**
* This constructor initializes the class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
*/

/**
* This class represents an "array" adaptor for a delimitated string field
* This class represents a "list" adaptor for a delimitated string field
* in a database table.
*
* @package Leap
* @category ORM
* @version 2011-12-03
* @version 2012-08-24
*/
class DB_ORM_Field_Adaptor_Array extends Base_DB_ORM_Field_Adaptor_Array {}
class DB_ORM_Field_Adaptor_List extends Base_DB_ORM_Field_Adaptor_List {}
?>

0 comments on commit b5bce44

Please sign in to comment.