diff --git a/tests/coverage/Doctrine.html b/tests/coverage/Doctrine.html
index 154dd71e2..b94221e4a 100644
--- a/tests/coverage/Doctrine.html
+++ b/tests/coverage/Doctrine.html
@@ -16,7 +16,7 @@
/*
|
3 |
- * $Id: Doctrine.php 2963 2007-10-21 06:23:59Z Jonathan.Wage $
+ | * $Id: Doctrine.php 2983 2007-10-22 05:11:23Z Jonathan.Wage $
|
4 |
*
@@ -103,7 +103,7 @@
| * @since 1.0
|
32 |
- * @version $Revision: 2963 $
+ | * @version $Revision: 2983 $
|
33 |
*/
@@ -118,469 +118,469 @@
| /**
|
37 |
- * ERROR CONSTANTS
+ | * VERSION
|
38 |
*/
|
39 |
- const ERR = -1;
+ | const VERSION = '0.1.0';
|
40 |
- const ERR_SYNTAX = -2;
+ |
|
41 |
- const ERR_CONSTRAINT = -3;
+ | /**
|
42 |
- const ERR_NOT_FOUND = -4;
+ | * ERROR CONSTANTS
|
43 |
- const ERR_ALREADY_EXISTS = -5;
+ | */
|
44 |
- const ERR_UNSUPPORTED = -6;
+ | const ERR = -1;
|
45 |
- const ERR_MISMATCH = -7;
+ | const ERR_SYNTAX = -2;
|
46 |
- const ERR_INVALID = -8;
+ | const ERR_CONSTRAINT = -3;
|
47 |
- const ERR_NOT_CAPABLE = -9;
+ | const ERR_NOT_FOUND = -4;
|
48 |
- const ERR_TRUNCATED = -10;
+ | const ERR_ALREADY_EXISTS = -5;
|
49 |
- const ERR_INVALID_NUMBER = -11;
+ | const ERR_UNSUPPORTED = -6;
|
50 |
- const ERR_INVALID_DATE = -12;
+ | const ERR_MISMATCH = -7;
|
51 |
- const ERR_DIVZERO = -13;
+ | const ERR_INVALID = -8;
|
52 |
- const ERR_NODBSELECTED = -14;
+ | const ERR_NOT_CAPABLE = -9;
|
53 |
- const ERR_CANNOT_CREATE = -15;
+ | const ERR_TRUNCATED = -10;
|
54 |
- const ERR_CANNOT_DELETE = -16;
+ | const ERR_INVALID_NUMBER = -11;
|
55 |
- const ERR_CANNOT_DROP = -17;
+ | const ERR_INVALID_DATE = -12;
|
56 |
- const ERR_NOSUCHTABLE = -18;
+ | const ERR_DIVZERO = -13;
|
57 |
- const ERR_NOSUCHFIELD = -19;
+ | const ERR_NODBSELECTED = -14;
|
58 |
- const ERR_NEED_MORE_DATA = -20;
+ | const ERR_CANNOT_CREATE = -15;
|
59 |
- const ERR_NOT_LOCKED = -21;
+ | const ERR_CANNOT_DELETE = -16;
|
60 |
- const ERR_VALUE_COUNT_ON_ROW = -22;
+ | const ERR_CANNOT_DROP = -17;
|
61 |
- const ERR_INVALID_DSN = -23;
+ | const ERR_NOSUCHTABLE = -18;
|
62 |
- const ERR_CONNECT_FAILED = -24;
+ | const ERR_NOSUCHFIELD = -19;
|
63 |
- const ERR_EXTENSION_NOT_FOUND = -25;
+ | const ERR_NEED_MORE_DATA = -20;
|
64 |
- const ERR_NOSUCHDB = -26;
+ | const ERR_NOT_LOCKED = -21;
|
65 |
- const ERR_ACCESS_VIOLATION = -27;
+ | const ERR_VALUE_COUNT_ON_ROW = -22;
|
66 |
- const ERR_CANNOT_REPLACE = -28;
+ | const ERR_INVALID_DSN = -23;
|
67 |
- const ERR_CONSTRAINT_NOT_NULL = -29;
+ | const ERR_CONNECT_FAILED = -24;
|
68 |
- const ERR_DEADLOCK = -30;
+ | const ERR_EXTENSION_NOT_FOUND = -25;
|
69 |
- const ERR_CANNOT_ALTER = -31;
+ | const ERR_NOSUCHDB = -26;
|
70 |
- const ERR_MANAGER = -32;
+ | const ERR_ACCESS_VIOLATION = -27;
|
71 |
- const ERR_MANAGER_PARSE = -33;
+ | const ERR_CANNOT_REPLACE = -28;
|
72 |
- const ERR_LOADMODULE = -34;
+ | const ERR_CONSTRAINT_NOT_NULL = -29;
|
73 |
- const ERR_INSUFFICIENT_DATA = -35;
+ | const ERR_DEADLOCK = -30;
|
74 |
- const ERR_CLASS_NAME = -36;
+ | const ERR_CANNOT_ALTER = -31;
|
75 |
-
+ | const ERR_MANAGER = -32;
|
76 |
- /**
+ | const ERR_MANAGER_PARSE = -33;
|
77 |
- * PDO derived constants
+ | const ERR_LOADMODULE = -34;
|
78 |
- */
+ | const ERR_INSUFFICIENT_DATA = -35;
|
79 |
- const CASE_LOWER = 2;
+ | const ERR_CLASS_NAME = -36;
|
80 |
- const CASE_NATURAL = 0;
+ |
|
81 |
- const CASE_UPPER = 1;
+ | /**
|
82 |
- const CURSOR_FWDONLY = 0;
+ | * PDO derived constants
|
83 |
- const CURSOR_SCROLL = 1;
+ | */
|
84 |
- const ERRMODE_EXCEPTION = 2;
+ | const CASE_LOWER = 2;
|
85 |
- const ERRMODE_SILENT = 0;
+ | const CASE_NATURAL = 0;
|
86 |
- const ERRMODE_WARNING = 1;
+ | const CASE_UPPER = 1;
|
87 |
- const FETCH_ASSOC = 2;
+ | const CURSOR_FWDONLY = 0;
|
88 |
- const FETCH_BOTH = 4;
+ | const CURSOR_SCROLL = 1;
|
89 |
- const FETCH_BOUND = 6;
+ | const ERRMODE_EXCEPTION = 2;
|
90 |
- const FETCH_CLASS = 8;
+ | const ERRMODE_SILENT = 0;
|
91 |
- const FETCH_CLASSTYPE = 262144;
+ | const ERRMODE_WARNING = 1;
|
92 |
- const FETCH_COLUMN = 7;
+ | const FETCH_ASSOC = 2;
|
93 |
- const FETCH_FUNC = 10;
+ | const FETCH_BOTH = 4;
|
94 |
- const FETCH_GROUP = 65536;
+ | const FETCH_BOUND = 6;
|
95 |
- const FETCH_INTO = 9;
+ | const FETCH_CLASS = 8;
|
96 |
- const FETCH_LAZY = 1;
+ | const FETCH_CLASSTYPE = 262144;
|
97 |
- const FETCH_NAMED = 11;
+ | const FETCH_COLUMN = 7;
|
98 |
- const FETCH_NUM = 3;
+ | const FETCH_FUNC = 10;
|
99 |
- const FETCH_OBJ = 5;
+ | const FETCH_GROUP = 65536;
|
100 |
- const FETCH_ORI_ABS = 4;
+ | const FETCH_INTO = 9;
|
101 |
- const FETCH_ORI_FIRST = 2;
+ | const FETCH_LAZY = 1;
|
102 |
- const FETCH_ORI_LAST = 3;
+ | const FETCH_NAMED = 11;
|
103 |
- const FETCH_ORI_NEXT = 0;
+ | const FETCH_NUM = 3;
|
104 |
- const FETCH_ORI_PRIOR = 1;
+ | const FETCH_OBJ = 5;
|
105 |
- const FETCH_ORI_REL = 5;
+ | const FETCH_ORI_ABS = 4;
|
106 |
- const FETCH_SERIALIZE = 524288;
+ | const FETCH_ORI_FIRST = 2;
|
107 |
- const FETCH_UNIQUE = 196608;
+ | const FETCH_ORI_LAST = 3;
|
108 |
- const NULL_EMPTY_STRING = 1;
+ | const FETCH_ORI_NEXT = 0;
|
109 |
- const NULL_NATURAL = 0;
+ | const FETCH_ORI_PRIOR = 1;
|
110 |
- const NULL_TO_STRING = NULL;
+ | const FETCH_ORI_REL = 5;
|
111 |
- const PARAM_BOOL = 5;
+ | const FETCH_SERIALIZE = 524288;
|
112 |
- const PARAM_INPUT_OUTPUT = -2147483648;
+ | const FETCH_UNIQUE = 196608;
|
113 |
- const PARAM_INT = 1;
+ | const NULL_EMPTY_STRING = 1;
|
114 |
- const PARAM_LOB = 3;
+ | const NULL_NATURAL = 0;
|
115 |
- const PARAM_NULL = 0;
+ | const NULL_TO_STRING = NULL;
|
116 |
- const PARAM_STMT = 4;
+ | const PARAM_BOOL = 5;
|
117 |
- const PARAM_STR = 2;
+ | const PARAM_INPUT_OUTPUT = -2147483648;
|
118 |
-
+ | const PARAM_INT = 1;
|
119 |
- /**
+ | const PARAM_LOB = 3;
|
120 |
- * ATTRIBUTE CONSTANTS
+ | const PARAM_NULL = 0;
|
121 |
- */
+ | const PARAM_STMT = 4;
|
122 |
-
+ | const PARAM_STR = 2;
|
123 |
- /**
+ |
|
124 |
- * PDO derived attributes
- |
-125 |
- */
- |
-126 |
- const ATTR_AUTOCOMMIT = 0;
- |
-127 |
- const ATTR_PREFETCH = 1;
- |
-128 |
- const ATTR_TIMEOUT = 2;
- |
-129 |
- const ATTR_ERRMODE = 3;
- |
-130 |
- const ATTR_SERVER_VERSION = 4;
- |
-131 |
- const ATTR_CLIENT_VERSION = 5;
- |
-132 |
- const ATTR_SERVER_INFO = 6;
- |
-133 |
- const ATTR_CONNECTION_STATUS = 7;
- |
-134 |
- const ATTR_CASE = 8;
- |
-135 |
- const ATTR_CURSOR_NAME = 9;
- |
-136 |
- const ATTR_CURSOR = 10;
- |
-137 |
- const ATTR_ORACLE_NULLS = 11;
- |
-138 |
- const ATTR_PERSISTENT = 12;
- |
-139 |
- const ATTR_STATEMENT_CLASS = 13;
- |
-140 |
- const ATTR_FETCH_TABLE_NAMES = 14;
- |
-141 |
- const ATTR_FETCH_CATALOG_NAMES = 15;
- |
-142 |
- const ATTR_DRIVER_NAME = 16;
- |
-143 |
- const ATTR_STRINGIFY_FETCHES = 17;
- |
-144 |
- const ATTR_MAX_COLUMN_LEN = 18;
- |
-145 |
-
- |
-146 |
/**
|
-147 |
- * Doctrine constants
+ |
125 |
+ * ATTRIBUTE CONSTANTS
|
-148 |
+
126 |
*/
|
+127 |
+
+ |
+128 |
+ /**
+ |
+129 |
+ * PDO derived attributes
+ |
+130 |
+ */
+ |
+131 |
+ const ATTR_AUTOCOMMIT = 0;
+ |
+132 |
+ const ATTR_PREFETCH = 1;
+ |
+133 |
+ const ATTR_TIMEOUT = 2;
+ |
+134 |
+ const ATTR_ERRMODE = 3;
+ |
+135 |
+ const ATTR_SERVER_VERSION = 4;
+ |
+136 |
+ const ATTR_CLIENT_VERSION = 5;
+ |
+137 |
+ const ATTR_SERVER_INFO = 6;
+ |
+138 |
+ const ATTR_CONNECTION_STATUS = 7;
+ |
+139 |
+ const ATTR_CASE = 8;
+ |
+140 |
+ const ATTR_CURSOR_NAME = 9;
+ |
+141 |
+ const ATTR_CURSOR = 10;
+ |
+142 |
+ const ATTR_ORACLE_NULLS = 11;
+ |
+143 |
+ const ATTR_PERSISTENT = 12;
+ |
+144 |
+ const ATTR_STATEMENT_CLASS = 13;
+ |
+145 |
+ const ATTR_FETCH_TABLE_NAMES = 14;
+ |
+146 |
+ const ATTR_FETCH_CATALOG_NAMES = 15;
+ |
+147 |
+ const ATTR_DRIVER_NAME = 16;
+ |
+148 |
+ const ATTR_STRINGIFY_FETCHES = 17;
+ |
149 |
- const ATTR_LISTENER = 100;
+ | const ATTR_MAX_COLUMN_LEN = 18;
|
150 |
- const ATTR_QUOTE_IDENTIFIER = 101;
+ |
|
151 |
- const ATTR_FIELD_CASE = 102;
+ | /**
|
152 |
- const ATTR_IDXNAME_FORMAT = 103;
+ | * Doctrine constants
|
153 |
- const ATTR_SEQNAME_FORMAT = 104;
+ | */
|
154 |
- const ATTR_SEQCOL_NAME = 105;
+ | const ATTR_LISTENER = 100;
|
155 |
- const ATTR_CMPNAME_FORMAT = 118;
+ | const ATTR_QUOTE_IDENTIFIER = 101;
|
156 |
- const ATTR_DBNAME_FORMAT = 117;
+ | const ATTR_FIELD_CASE = 102;
|
157 |
- const ATTR_TBLCLASS_FORMAT = 119;
+ | const ATTR_IDXNAME_FORMAT = 103;
|
158 |
- const ATTR_EXPORT = 140;
+ | const ATTR_SEQNAME_FORMAT = 104;
|
159 |
- const ATTR_DECIMAL_PLACES = 141;
+ | const ATTR_SEQCOL_NAME = 105;
|
160 |
-
+ | const ATTR_CMPNAME_FORMAT = 118;
|
161 |
- const ATTR_PORTABILITY = 106;
+ | const ATTR_DBNAME_FORMAT = 117;
|
162 |
- const ATTR_VALIDATE = 107;
+ | const ATTR_TBLCLASS_FORMAT = 119;
|
163 |
- const ATTR_COLL_KEY = 108;
+ | const ATTR_EXPORT = 140;
|
164 |
- const ATTR_QUERY_LIMIT = 109;
+ | const ATTR_DECIMAL_PLACES = 141;
|
165 |
- const ATTR_DEFAULT_TABLE_TYPE = 112;
- |
-166 |
- const ATTR_DEF_TEXT_LENGTH = 113;
- |
-167 |
- const ATTR_DEF_VARCHAR_LENGTH = 114;
- |
-168 |
- const ATTR_DEF_TABLESPACE = 115;
- |
-169 |
- const ATTR_EMULATE_DATABASE = 116;
- |
-170 |
- const ATTR_USE_NATIVE_ENUM = 117;
- |
-171 |
- const ATTR_DEFAULT_SEQUENCE = 133;
- |
-172 |
|
+166 |
+ const ATTR_PORTABILITY = 106;
+ |
+167 |
+ const ATTR_VALIDATE = 107;
+ |
+168 |
+ const ATTR_COLL_KEY = 108;
+ |
+169 |
+ const ATTR_QUERY_LIMIT = 109;
+ |
+170 |
+ const ATTR_DEFAULT_TABLE_TYPE = 112;
+ |
+171 |
+ const ATTR_DEF_TEXT_LENGTH = 113;
+ |
+172 |
+ const ATTR_DEF_VARCHAR_LENGTH = 114;
+ |
173 |
- const ATTR_FETCHMODE = 118;
+ | const ATTR_DEF_TABLESPACE = 115;
|
174 |
- const ATTR_NAME_PREFIX = 121;
+ | const ATTR_EMULATE_DATABASE = 116;
|
175 |
- const ATTR_CREATE_TABLES = 122;
+ | const ATTR_USE_NATIVE_ENUM = 117;
|
176 |
- const ATTR_COLL_LIMIT = 123;
+ | const ATTR_DEFAULT_SEQUENCE = 133;
|
177 |
|
178 |
- const ATTR_CACHE = 150;
+ | const ATTR_FETCHMODE = 118;
|
179 |
- const ATTR_CACHE_LIFESPAN = 151;
+ | const ATTR_NAME_PREFIX = 121;
|
180 |
- const ATTR_LOAD_REFERENCES = 153;
+ | const ATTR_CREATE_TABLES = 122;
|
181 |
- const ATTR_RECORD_LISTENER = 154;
+ | const ATTR_COLL_LIMIT = 123;
|
182 |
- const ATTR_THROW_EXCEPTIONS = 155;
+ |
|
183 |
-
+ | const ATTR_CACHE = 150;
|
184 |
- /**
+ | const ATTR_CACHE_LIFESPAN = 151;
|
185 |
- * LIMIT CONSTANTS
+ | const ATTR_LOAD_REFERENCES = 153;
|
186 |
- */
+ | const ATTR_RECORD_LISTENER = 154;
|
187 |
-
+ | const ATTR_THROW_EXCEPTIONS = 155;
|
188 |
- /**
+ |
|
189 |
- * constant for row limiting
+ | /**
|
190 |
- */
+ | * LIMIT CONSTANTS
|
191 |
- const LIMIT_ROWS = 1;
+ | */
|
192 |
@@ -589,13 +589,13 @@
| /**
|
194 |
- * constant for record limiting
+ | * constant for row limiting
|
195 |
*/
|
196 |
- const LIMIT_RECORDS = 2;
+ | const LIMIT_ROWS = 1;
|
197 |
@@ -604,97 +604,97 @@
| /**
|
199 |
- * FETCHMODE CONSTANTS
+ | * constant for record limiting
|
200 |
*/
|
201 |
-
+ | const LIMIT_RECORDS = 2;
|
202 |
- /**
+ |
|
203 |
- * IMMEDIATE FETCHING
+ | /**
|
204 |
- * mode for immediate fetching
+ | * FETCHMODE CONSTANTS
|
205 |
*/
|
206 |
- const FETCH_IMMEDIATE = 0;
+ |
|
207 |
-
+ | /**
|
208 |
- /**
+ | * IMMEDIATE FETCHING
|
209 |
- * BATCH FETCHING
+ | * mode for immediate fetching
|
210 |
- * mode for batch fetching
+ | */
|
211 |
- */
+ | const FETCH_IMMEDIATE = 0;
|
212 |
- const FETCH_BATCH = 1;
+ |
|
213 |
-
+ | /**
|
214 |
- /**
+ | * BATCH FETCHING
|
215 |
- * LAZY FETCHING
+ | * mode for batch fetching
|
216 |
- * mode for offset fetching
+ | */
|
217 |
- */
+ | const FETCH_BATCH = 1;
|
218 |
- const FETCH_OFFSET = 3;
+ |
|
219 |
-
+ | /**
|
220 |
- /**
+ | * LAZY FETCHING
|
221 |
- * LAZY OFFSET FETCHING
+ | * mode for offset fetching
|
222 |
- * mode for lazy offset fetching
- |
-223 |
*/
|
-224 |
- const FETCH_LAZY_OFFSET = 4;
+ |
223 |
+ const FETCH_OFFSET = 3;
|
-225 |
+
224 |
|
-226 |
+
225 |
/**
|
+226 |
+ * LAZY OFFSET FETCHING
+ |
227 |
- * FETCH CONSTANTS
+ | * mode for lazy offset fetching
|
228 |
*/
|
229 |
-
+ | const FETCH_LAZY_OFFSET = 4;
|
230 |
@@ -703,13 +703,13 @@
| /**
|
232 |
- * FETCH VALUEHOLDER
+ | * FETCH CONSTANTS
|
233 |
*/
|
234 |
- const FETCH_VHOLDER = 1;
+ |
|
235 |
@@ -718,43 +718,43 @@
| /**
|
237 |
- * FETCH RECORD
+ | * FETCH VALUEHOLDER
|
238 |
- *
- |
-239 |
- * Specifies that the fetch method shall return Doctrine_Record
- |
-240 |
- * objects as the elements of the result set.
- |
-241 |
- *
- |
-242 |
- * This is the default fetchmode.
- |
-243 |
*/
|
-244 |
- const FETCH_RECORD = 2;
+ |
239 |
+ const FETCH_VHOLDER = 1;
|
-245 |
+
240 |
|
-246 |
+
241 |
/**
|
+242 |
+ * FETCH RECORD
+ |
+243 |
+ *
+ |
+244 |
+ * Specifies that the fetch method shall return Doctrine_Record
+ |
+245 |
+ * objects as the elements of the result set.
+ |
+246 |
+ *
+ |
247 |
- * FETCH ARRAY
+ | * This is the default fetchmode.
|
248 |
*/
|
249 |
- const FETCH_ARRAY = 3;
+ | const FETCH_RECORD = 2;
|
250 |
@@ -763,187 +763,187 @@
| /**
|
252 |
- * PORTABILITY CONSTANTS
+ | * FETCH ARRAY
|
253 |
*/
|
254 |
-
+ | const FETCH_ARRAY = 3;
|
255 |
- /**
+ |
|
256 |
- * Portability: turn off all portability features.
+ | /**
|
257 |
- * @see self::ATTR_PORTABILITY
+ | * PORTABILITY CONSTANTS
|
258 |
*/
|
259 |
- const PORTABILITY_NONE = 0;
+ |
|
260 |
-
+ | /**
|
261 |
- /**
+ | * Portability: turn off all portability features.
|
262 |
- * Portability: convert names of tables and fields to case defined in the
+ | * @see self::ATTR_PORTABILITY
|
263 |
- * "field_case" option when using the query*(), fetch*() methods.
+ | */
|
264 |
- * @see self::ATTR_PORTABILITY
+ | const PORTABILITY_NONE = 0;
|
265 |
- */
+ |
|
266 |
- const PORTABILITY_FIX_CASE = 1;
+ | /**
|
267 |
-
+ | * Portability: convert names of tables and fields to case defined in the
|
268 |
- /**
+ | * "field_case" option when using the query*(), fetch*() methods.
|
269 |
- * Portability: right trim the data output by query*() and fetch*().
+ | * @see self::ATTR_PORTABILITY
|
270 |
- * @see self::ATTR_PORTABILITY
+ | */
|
271 |
- */
+ | const PORTABILITY_FIX_CASE = 1;
|
272 |
- const PORTABILITY_RTRIM = 2;
+ |
|
273 |
-
+ | /**
|
274 |
- /**
+ | * Portability: right trim the data output by query*() and fetch*().
|
275 |
- * Portability: force reporting the number of rows deleted.
+ | * @see self::ATTR_PORTABILITY
|
276 |
- * @see self::ATTR_PORTABILITY
+ | */
|
277 |
- */
+ | const PORTABILITY_RTRIM = 2;
|
278 |
- const PORTABILITY_DELETE_COUNT = 4;
+ |
|
279 |
-
+ | /**
|
280 |
- /**
+ | * Portability: force reporting the number of rows deleted.
|
281 |
- * Portability: convert empty values to null strings in data output by
+ | * @see self::ATTR_PORTABILITY
|
282 |
- * query*() and fetch*().
+ | */
|
283 |
- * @see self::ATTR_PORTABILITY
+ | const PORTABILITY_DELETE_COUNT = 4;
|
284 |
- */
+ |
|
285 |
- const PORTABILITY_EMPTY_TO_NULL = 8;
+ | /**
|
286 |
-
+ | * Portability: convert empty values to null strings in data output by
|
287 |
- /**
+ | * query*() and fetch*().
|
288 |
- * Portability: removes database/table qualifiers from associative indexes
+ | * @see self::ATTR_PORTABILITY
|
289 |
- * @see self::ATTR_PORTABILITY
+ | */
|
290 |
- */
+ | const PORTABILITY_EMPTY_TO_NULL = 8;
|
291 |
- const PORTABILITY_FIX_ASSOC_FIELD_NAMES = 16;
+ |
|
292 |
-
+ | /**
|
293 |
- /**
+ | * Portability: removes database/table qualifiers from associative indexes
|
294 |
- * Portability: makes Doctrine_Expression throw exception for unportable RDBMS expressions
+ | * @see self::ATTR_PORTABILITY
|
295 |
- * @see self::ATTR_PORTABILITY
+ | */
|
296 |
- */
+ | const PORTABILITY_FIX_ASSOC_FIELD_NAMES = 16;
|
297 |
- const PORTABILITY_EXPR = 32;
+ |
|
298 |
-
+ | /**
|
299 |
- /**
+ | * Portability: makes Doctrine_Expression throw exception for unportable RDBMS expressions
|
300 |
- * Portability: turn on all portability features.
- |
-301 |
* @see self::ATTR_PORTABILITY
|
-302 |
+
301 |
*/
|
-303 |
- const PORTABILITY_ALL = 63;
+ |
302 |
+ const PORTABILITY_EXPR = 32;
|
-304 |
+
303 |
|
-305 |
+
304 |
/**
|
+305 |
+ * Portability: turn on all portability features.
+ |
306 |
- * LOCKMODE CONSTANTS
+ | * @see self::ATTR_PORTABILITY
|
307 |
*/
|
308 |
-
+ | const PORTABILITY_ALL = 63;
|
309 |
- /**
+ |
|
310 |
- * mode for optimistic locking
+ | /**
|
311 |
- */
+ | * LOCKMODE CONSTANTS
|
312 |
- const LOCK_OPTIMISTIC = 0;
+ | */
|
313 |
@@ -952,13 +952,13 @@
| /**
|
315 |
- * mode for pessimistic locking
+ | * mode for optimistic locking
|
316 |
*/
|
317 |
- const LOCK_PESSIMISTIC = 1;
+ | const LOCK_OPTIMISTIC = 0;
|
318 |
@@ -967,25 +967,25 @@
| /**
|
320 |
- * EXPORT CONSTANTS
+ | * mode for pessimistic locking
|
321 |
*/
|
322 |
-
+ | const LOCK_PESSIMISTIC = 1;
|
323 |
- /**
+ |
|
324 |
- * EXPORT_NONE
+ | /**
|
325 |
- */
+ | * EXPORT CONSTANTS
|
326 |
- const EXPORT_NONE = 0;
+ | */
|
327 |
@@ -994,13 +994,13 @@
| /**
|
329 |
- * EXPORT_TABLES
+ | * EXPORT_NONE
|
330 |
*/
|
331 |
- const EXPORT_TABLES = 1;
+ | const EXPORT_NONE = 0;
|
332 |
@@ -1009,13 +1009,13 @@
| /**
|
334 |
- * EXPORT_CONSTRAINTS
+ | * EXPORT_TABLES
|
335 |
*/
|
336 |
- const EXPORT_CONSTRAINTS = 2;
+ | const EXPORT_TABLES = 1;
|
337 |
@@ -1024,13 +1024,13 @@
| /**
|
339 |
- * EXPORT_PLUGINS
+ | * EXPORT_CONSTRAINTS
|
340 |
*/
|
341 |
- const EXPORT_PLUGINS = 4;
+ | const EXPORT_CONSTRAINTS = 2;
|
342 |
@@ -1039,13 +1039,13 @@
| /**
|
344 |
- * EXPORT_ALL
+ | * EXPORT_PLUGINS
|
345 |
*/
|
346 |
- const EXPORT_ALL = 7;
+ | const EXPORT_PLUGINS = 4;
|
347 |
@@ -1054,13 +1054,13 @@
| /**
|
349 |
- * HYDRATION CONSTANTS
+ | * EXPORT_ALL
|
350 |
*/
|
351 |
- const HYDRATE_RECORD = 2;
+ | const EXPORT_ALL = 7;
|
352 |
@@ -1069,13 +1069,13 @@
| /**
|
354 |
- * HYDRATE_ARRAY
+ | * HYDRATION CONSTANTS
|
355 |
*/
|
356 |
- const HYDRATE_ARRAY = 3;
+ | const HYDRATE_RECORD = 2;
|
357 |
@@ -1084,13 +1084,13 @@
| /**
|
359 |
- * VALIDATION CONSTANTS
+ | * HYDRATE_ARRAY
|
360 |
*/
|
361 |
- const VALIDATE_NONE = 0;
+ | const HYDRATE_ARRAY = 3;
|
362 |
@@ -1099,13 +1099,13 @@
| /**
|
364 |
- * VALIDATE_LENGTHS
+ | * VALIDATION CONSTANTS
|
365 |
*/
|
366 |
- const VALIDATE_LENGTHS = 1;
+ | const VALIDATE_NONE = 0;
|
367 |
@@ -1114,13 +1114,13 @@
| /**
|
369 |
- * VALIDATE_TYPES
+ | * VALIDATE_LENGTHS
|
370 |
*/
|
371 |
- const VALIDATE_TYPES = 2;
+ | const VALIDATE_LENGTHS = 1;
|
372 |
@@ -1129,13 +1129,13 @@
| /**
|
374 |
- * VALIDATE_CONSTRAINTS
+ | * VALIDATE_TYPES
|
375 |
*/
|
376 |
- const VALIDATE_CONSTRAINTS = 4;
+ | const VALIDATE_TYPES = 2;
|
377 |
@@ -1144,13 +1144,13 @@
| /**
|
379 |
- * VALIDATE_ALL
+ | * VALIDATE_CONSTRAINTS
|
380 |
*/
|
381 |
- const VALIDATE_ALL = 7;
+ | const VALIDATE_CONSTRAINTS = 4;
|
382 |
@@ -1159,2096 +1159,2112 @@
| /**
|
384 |
- * IDENTIFIER_AUTOINC
+ | * VALIDATE_ALL
|
385 |
- *
+ | */
|
386 |
- * constant for auto_increment identifier
+ | const VALIDATE_ALL = 7;
|
387 |
- */
+ |
|
388 |
- const IDENTIFIER_AUTOINC = 1;
+ | /**
|
389 |
-
+ | * IDENTIFIER_AUTOINC
|
390 |
- /**
+ | *
|
391 |
- * IDENTIFIER_SEQUENCE
+ | * constant for auto_increment identifier
|
392 |
- *
+ | */
|
393 |
- * constant for sequence identifier
+ | const IDENTIFIER_AUTOINC = 1;
|
394 |
- */
+ |
|
395 |
- const IDENTIFIER_SEQUENCE = 2;
+ | /**
|
396 |
-
+ | * IDENTIFIER_SEQUENCE
|
397 |
- /**
+ | *
|
398 |
- * IDENTIFIER_NATURAL
+ | * constant for sequence identifier
|
399 |
- *
+ | */
|
400 |
- * constant for normal identifier
+ | const IDENTIFIER_SEQUENCE = 2;
|
401 |
- */
+ |
|
402 |
- const IDENTIFIER_NATURAL = 3;
+ | /**
|
403 |
-
+ | * IDENTIFIER_NATURAL
|
404 |
- /**
+ | *
|
405 |
- * IDENTIFIER_COMPOSITE
+ | * constant for normal identifier
|
406 |
- *
+ | */
|
407 |
- * constant for composite identifier
+ | const IDENTIFIER_NATURAL = 3;
|
408 |
- */
+ |
|
409 |
- const IDENTIFIER_COMPOSITE = 4;
+ | /**
|
410 |
-
+ | * IDENTIFIER_COMPOSITE
|
411 |
- /**
+ | *
|
412 |
- * Path
+ | * constant for composite identifier
|
413 |
- *
+ | */
|
414 |
- * @var string $path doctrine root directory
+ | const IDENTIFIER_COMPOSITE = 4;
|
415 |
- */
+ |
|
416 |
- private static $_path;
+ | /**
|
417 |
-
+ | * Path
|
418 |
- /**
+ | *
|
419 |
- * Debug
+ | * @var string $path doctrine root directory
|
420 |
- *
+ | */
|
421 |
- * Bool true/false
+ | private static $_path;
|
422 |
- *
+ |
|
423 |
- * @var boolean $_debug
+ | /**
|
424 |
- */
+ | * Debug
|
425 |
- private static $_debug = false;
+ | *
|
426 |
-
+ | * Bool true/false
|
427 |
- /**
+ | *
|
428 |
- * __construct
+ | * @var boolean $_debug
|
429 |
- *
+ | */
|
430 |
- * @return void
+ | private static $_debug = false;
|
431 |
- * @throws Doctrine_Exception
+ |
|
432 |
- */
+ | /**
|
433 |
- public function __construct()
+ | * __construct
|
434 |
- {
+ | *
|
435 |
- throw new Doctrine_Exception('Doctrine is static class. No instances can be created.');
+ | * @return void
|
436 |
- }
+ | * @throws Doctrine_Exception
|
437 |
-
+ | */
|
438 |
- /**
+ | public function __construct()
|
439 |
- * debug
+ | {
|
440 |
- *
+ | throw new Doctrine_Exception('Doctrine is static class. No instances can be created.');
|
441 |
- * @param string $bool
+ | }
|
442 |
- * @return void
+ |
|
443 |
- */
+ | /**
|
444 |
- public static function debug($bool = null)
+ | * debug
|
445 |
- {
+ | *
|
446 |
- if ($bool !== null) {
+ | * @param string $bool
|
447 |
- self::$_debug = (bool) $bool;
+ | * @return void
|
448 |
- }
+ | */
|
449 |
-
+ | public static function debug($bool = null)
|
450 |
- return self::$_debug;
+ | {
|
451 |
- }
+ | if ($bool !== null) {
|
452 |
-
+ | self::$_debug = (bool) $bool;
|
453 |
- /**
+ | }
|
454 |
- * getPath
- |
-455 |
- * returns the doctrine root
- |
-456 |
- *
- |
-457 |
- * @return string
- |
-458 |
- */
- |
-459 |
- public static function getPath()
- |
-460 |
- {
- |
-461 |
- if ( ! self::$_path) {
- |
-462 |
- self::$_path = dirname(__FILE__);
- |
-463 |
- }
- |
-464 |
|
+455 |
+ return self::$_debug;
+ |
+456 |
+ }
+ |
+457 |
+
+ |
+458 |
+ /**
+ |
+459 |
+ * getPath
+ |
+460 |
+ * returns the doctrine root
+ |
+461 |
+ *
+ |
+462 |
+ * @return string
+ |
+463 |
+ */
+ |
+464 |
+ public static function getPath()
+ |
465 |
- return self::$_path;
+ | {
|
466 |
- }
+ | if ( ! self::$_path) {
|
467 |
-
+ | self::$_path = dirname(__FILE__);
|
468 |
- /**
- |
-469 |
- * loadAll
- |
-470 |
- * loads all runtime classes
- |
-471 |
- *
- |
-472 |
- * @return void
- |
-473 |
- */
- |
-474 |
- public static function loadAll()
- |
-475 |
- {
- |
-476 |
- return self::loadAllRuntimeClasses();
- |
-477 |
- }
- |
-478 |
-
- |
-479 |
- /**
- |
-480 |
- * importSchema
- |
-481 |
- * method for importing existing schema to Doctrine_Record classes
- |
-482 |
- *
- |
-483 |
- * @param string $directory Directory to write your models to
- |
-484 |
- * @param array $databases Array of databases to generate models for
- |
-485 |
- * @return boolean
- |
-486 |
- */
- |
-487 |
- public static function importSchema($directory, array $databases = array())
- |
-488 |
- {
- |
-489 |
- return self::generateModelsFromDb($directory, $databases);
- |
-490 |
- }
- |
-491 |
-
- |
-492 |
- /**
- |
-493 |
- * exportSchema
- |
-494 |
- * method for exporting Doctrine_Record classes to a schema
- |
-495 |
- *
- |
-496 |
- * @param string $directory Directory containing your models
- |
-497 |
- * @return void
- |
-498 |
- */
- |
-499 |
- public static function exportSchema($directory = null)
- |
-500 |
- {
- |
-501 |
- return self::createTablesFromModels($directory);
- |
-502 |
- }
- |
-503 |
-
- |
-504 |
- /**
- |
-505 |
- * exportSql
- |
-506 |
- * method for exporting Doctrine_Record classes to a schema
- |
-507 |
- *
- |
-508 |
- * @param string $directory
- |
-509 |
- */
- |
-510 |
- public static function exportSql($directory = null)
- |
-511 |
- {
- |
-512 |
- return self::generateSqlFromModels($directory);
- |
-513 |
- }
- |
-514 |
-
- |
-515 |
- /**
- |
-516 |
- * loadAllRuntimeClasses
- |
-517 |
- *
- |
-518 |
- * loads all runtime classes
- |
-519 |
- *
- |
-520 |
- * @return void
- |
-521 |
- */
- |
-522 |
- public static function loadAllRuntimeClasses()
- |
-523 |
- {
- |
-524 |
- $classes = Doctrine_Compiler::getRuntimeClasses();
- |
-525 |
-
- |
-526 |
- foreach ($classes as $class) {
- |
-527 |
- self::autoload($class);
- |
-528 |
}
|
+469 |
+
+ |
+470 |
+ return self::$_path;
+ |
+471 |
+ }
+ |
+472 |
+
+ |
+473 |
+ /**
+ |
+474 |
+ * loadAll
+ |
+475 |
+ * loads all runtime classes
+ |
+476 |
+ *
+ |
+477 |
+ * @return void
+ |
+478 |
+ */
+ |
+479 |
+ public static function loadAll()
+ |
+480 |
+ {
+ |
+481 |
+ return self::loadAllRuntimeClasses();
+ |
+482 |
+ }
+ |
+483 |
+
+ |
+484 |
+ /**
+ |
+485 |
+ * importSchema
+ |
+486 |
+ * method for importing existing schema to Doctrine_Record classes
+ |
+487 |
+ *
+ |
+488 |
+ * @param string $directory Directory to write your models to
+ |
+489 |
+ * @param array $databases Array of databases to generate models for
+ |
+490 |
+ * @return boolean
+ |
+491 |
+ */
+ |
+492 |
+ public static function importSchema($directory, array $databases = array())
+ |
+493 |
+ {
+ |
+494 |
+ return self::generateModelsFromDb($directory, $databases);
+ |
+495 |
+ }
+ |
+496 |
+
+ |
+497 |
+ /**
+ |
+498 |
+ * exportSchema
+ |
+499 |
+ * method for exporting Doctrine_Record classes to a schema
+ |
+500 |
+ *
+ |
+501 |
+ * @param string $directory Directory containing your models
+ |
+502 |
+ * @return void
+ |
+503 |
+ */
+ |
+504 |
+ public static function exportSchema($directory = null)
+ |
+505 |
+ {
+ |
+506 |
+ return self::createTablesFromModels($directory);
+ |
+507 |
+ }
+ |
+508 |
+
+ |
+509 |
+ /**
+ |
+510 |
+ * exportSql
+ |
+511 |
+ * method for exporting Doctrine_Record classes to a schema
+ |
+512 |
+ *
+ |
+513 |
+ * @param string $directory
+ |
+514 |
+ */
+ |
+515 |
+ public static function exportSql($directory = null)
+ |
+516 |
+ {
+ |
+517 |
+ return self::generateSqlFromModels($directory);
+ |
+518 |
+ }
+ |
+519 |
+
+ |
+520 |
+ /**
+ |
+521 |
+ * loadAllRuntimeClasses
+ |
+522 |
+ *
+ |
+523 |
+ * loads all runtime classes
+ |
+524 |
+ *
+ |
+525 |
+ * @return void
+ |
+526 |
+ */
+ |
+527 |
+ public static function loadAllRuntimeClasses()
+ |
+528 |
+ {
+ |
529 |
- }
+ | $classes = Doctrine_Compiler::getRuntimeClasses();
|
530 |
|
531 |
- /**
+ | foreach ($classes as $class) {
|
532 |
- * loadModels
+ | self::autoload($class);
|
533 |
- *
+ | }
|
534 |
- * Recursively load all models from a directory or array of directories
+ | }
|
535 |
- *
+ |
|
536 |
- * @param string $directory Path to directory of models or array of directory paths
- |
-537 |
- * @return array $loadedModels
- |
-538 |
- */
- |
-539 |
- public static function loadModels($directory)
- |
-540 |
- {
- |
-541 |
- $declared = get_declared_classes();
- |
-542 |
-
- |
-543 |
- if ($directory !== null) {
- |
-544 |
- foreach ((array) $directory as $dir) {
- |
-545 |
- $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir),
- |
-546 |
- RecursiveIteratorIterator::LEAVES_ONLY);
- |
-547 |
-
- |
-548 |
- foreach ($it as $file) {
- |
-549 |
- $e = explode('.', $file->getFileName());
- |
-550 |
- if (end($e) === 'php' && strpos($file->getFileName(), '.inc') === false) {
- |
-551 |
- require_once $file->getPathName();
- |
-552 |
- }
- |
-553 |
- }
- |
-554 |
- }
- |
-555 |
-
- |
-556 |
- $declared = array_diff(get_declared_classes(), $declared);
- |
-557 |
- }
- |
-558 |
-
- |
-559 |
- return self::getLoadedModels($declared);
- |
-560 |
- }
- |
-561 |
-
- |
-562 |
/**
|
-563 |
- * getLoadedModels
+ |
537 |
+ * loadModels
|
-564 |
+
538 |
*
|
-565 |
- * Get all the loaded models, you can provide an array of classes or it will use get_declared_classes()
+ |
539 |
+ * Recursively load all models from a directory or array of directories
|
-566 |
+
540 |
*
|
+541 |
+ * @param string $directory Path to directory of models or array of directory paths
+ |
+542 |
+ * @return array $loadedModels
+ |
+543 |
+ */
+ |
+544 |
+ public static function loadModels($directory)
+ |
+545 |
+ {
+ |
+546 |
+ $declared = get_declared_classes();
+ |
+547 |
+
+ |
+548 |
+ if ($directory !== null) {
+ |
+549 |
+ foreach ((array) $directory as $dir) {
+ |
+550 |
+ $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir),
+ |
+551 |
+ RecursiveIteratorIterator::LEAVES_ONLY);
+ |
+552 |
+
+ |
+553 |
+ foreach ($it as $file) {
+ |
+554 |
+ $e = explode('.', $file->getFileName());
+ |
+555 |
+ if (end($e) === 'php' && strpos($file->getFileName(), '.inc') === false) {
+ |
+556 |
+ require_once $file->getPathName();
+ |
+557 |
+ }
+ |
+558 |
+ }
+ |
+559 |
+ }
+ |
+560 |
+
+ |
+561 |
+ $declared = array_diff(get_declared_classes(), $declared);
+ |
+562 |
+ }
+ |
+563 |
+
+ |
+564 |
+ return self::getLoadedModels($declared);
+ |
+565 |
+ }
+ |
+566 |
+
+ |
567 |
- * Will filter through an array of classes and return the Doctrine_Records out of them.
+ | /**
|
568 |
- * If you do not specify $classes it will return all of the currently loaded Doctrine_Records
+ | * getLoadedModels
|
569 |
*
|
570 |
- * @param $classes Array of classes to filter through, otherwise uses get_declared_classes()
+ | * Get all the loaded models, you can provide an array of classes or it will use get_declared_classes()
|
571 |
- * @return array $loadedModels
- |
-572 |
- */
- |
-573 |
- public static function getLoadedModels($classes = null)
- |
-574 |
- {
- |
-575 |
- if ($classes === null) {
- |
-576 |
- $classes = get_declared_classes();
- |
-577 |
- }
- |
-578 |
-
- |
-579 |
- $parent = new ReflectionClass('Doctrine_Record');
- |
-580 |
-
- |
-581 |
- $loadedModels = array();
- |
-582 |
-
- |
-583 |
- foreach ((array) $classes as $name) {
- |
-584 |
- $class = new ReflectionClass($name);
- |
-585 |
-
- |
-586 |
- // Skip the following classes
- |
-587 |
- // - abstract classes
- |
-588 |
- // - not a subclass of Doctrine_Record
- |
-589 |
- // - don't have a setTableDefinition method
- |
-590 |
- if ($class->isAbstract() ||
- |
-591 |
- !$class->isSubClassOf($parent) ||
- |
-592 |
- !$class->hasMethod('setTableDefinition')) {
- |
-593 |
- continue;
- |
-594 |
- }
- |
-595 |
-
- |
-596 |
- $loadedModels[] = $name;
- |
-597 |
- }
- |
-598 |
-
- |
-599 |
- return $loadedModels;
- |
-600 |
- }
- |
-601 |
-
- |
-602 |
- /**
- |
-603 |
- * getConnectionByTableName
- |
-604 |
- *
- |
-605 |
- * Get the connection object for a table by the actual table name
- |
-606 |
*
|
-607 |
- * @param string $tableName
+ |
572 |
+ * Will filter through an array of classes and return the Doctrine_Records out of them.
|
-608 |
- * @return object Doctrine_Connection
+ |
573 |
+ * If you do not specify $classes it will return all of the currently loaded Doctrine_Records
|
-609 |
+
574 |
+ *
+ |
+575 |
+ * @param $classes Array of classes to filter through, otherwise uses get_declared_classes()
+ |
+576 |
+ * @return array $loadedModels
+ |
+577 |
*/
|
-610 |
- public static function getConnectionByTableName($tableName)
+ |
578 |
+ public static function getLoadedModels($classes = null)
|
-611 |
+
579 |
{
|
-612 |
- $loadedModels = self::getLoadedModels();
+ |
580 |
+ if ($classes === null) {
|
-613 |
-
+ |
581 |
+ $classes = get_declared_classes();
|
-614 |
- foreach ($loadedModels as $name) {
- |
-615 |
- $model = new $name();
- |
-616 |
- $table = $model->getTable();
- |
-617 |
-
- |
-618 |
- if ($table->getTableName() == $tableName) {
- |
-619 |
- return $table->getConnection();
- |
-620 |
- }
- |
-621 |
+
582 |
}
|
-622 |
+
583 |
|
+584 |
+ $parent = new ReflectionClass('Doctrine_Record');
+ |
+585 |
+
+ |
+586 |
+ $loadedModels = array();
+ |
+587 |
+
+ |
+588 |
+ foreach ((array) $classes as $name) {
+ |
+589 |
+ $class = new ReflectionClass($name);
+ |
+590 |
+
+ |
+591 |
+ // Skip the following classes
+ |
+592 |
+ // - abstract classes
+ |
+593 |
+ // - not a subclass of Doctrine_Record
+ |
+594 |
+ // - don't have a setTableDefinition method
+ |
+595 |
+ if ($class->isAbstract() ||
+ |
+596 |
+ !$class->isSubClassOf($parent) ||
+ |
+597 |
+ !$class->hasMethod('setTableDefinition')) {
+ |
+598 |
+ continue;
+ |
+599 |
+ }
+ |
+600 |
+
+ |
+601 |
+ $loadedModels[] = $name;
+ |
+602 |
+ }
+ |
+603 |
+
+ |
+604 |
+ return $loadedModels;
+ |
+605 |
+ }
+ |
+606 |
+
+ |
+607 |
+ /**
+ |
+608 |
+ * getConnectionByTableName
+ |
+609 |
+ *
+ |
+610 |
+ * Get the connection object for a table by the actual table name
+ |
+611 |
+ *
+ |
+612 |
+ * @param string $tableName
+ |
+613 |
+ * @return object Doctrine_Connection
+ |
+614 |
+ */
+ |
+615 |
+ public static function getConnectionByTableName($tableName)
+ |
+616 |
+ {
+ |
+617 |
+ $loadedModels = self::getLoadedModels();
+ |
+618 |
+
+ |
+619 |
+ foreach ($loadedModels as $name) {
+ |
+620 |
+ $model = new $name();
+ |
+621 |
+ $table = $model->getTable();
+ |
+622 |
+
+ |
623 |
- return Doctrine_Manager::connection();
+ | if ($table->getTableName() == $tableName) {
|
624 |
- }
+ | return $table->getConnection();
|
625 |
-
+ | }
|
626 |
- /**
+ | }
|
627 |
- * generateModelsFromDb
+ |
|
628 |
- *
+ | return Doctrine_Manager::connection();
|
629 |
- * method for importing existing schema to Doctrine_Record classes
+ | }
|
630 |
- *
+ |
|
631 |
- * @param string $directory Directory to write your models to
+ | /**
|
632 |
- * @param array $databases Array of databases to generate models for
+ | * generateModelsFromDb
|
633 |
- * @return boolean
+ | *
|
634 |
- * @throws Exception
+ | * method for importing existing schema to Doctrine_Record classes
|
635 |
- */
+ | *
|
636 |
- public static function generateModelsFromDb($directory, array $databases = array())
+ | * @param string $directory Directory to write your models to
|
637 |
- {
+ | * @param array $databases Array of databases to generate models for
|
638 |
- return Doctrine_Manager::connection()->import->importSchema($directory, $databases);
+ | * @return boolean
|
639 |
- }
+ | * @throws Exception
|
640 |
-
+ | */
|
641 |
- /**
+ | public static function generateModelsFromDb($directory, array $databases = array())
|
642 |
- * generateYamlFromDb
+ | {
|
643 |
- *
+ | return Doctrine_Manager::connection()->import->importSchema($directory, $databases);
|
644 |
- * Generates models from database to temporary location then uses those models to generate a yaml schema file.
+ | }
|
645 |
- * This should probably be fixed. We should write something to generate a yaml schema file directly from the database.
+ |
|
646 |
- *
+ | /**
|
647 |
- * @param string $yamlPath Path to write oyur yaml schema file to
+ | * generateYamlFromDb
|
648 |
- * @return void
+ | *
|
649 |
- */
+ | * Generates models from database to temporary location then uses those models to generate a yaml schema file.
|
650 |
- public static function generateYamlFromDb($yamlPath)
+ | * This should probably be fixed. We should write something to generate a yaml schema file directly from the database.
|
651 |
- {
+ | *
|
652 |
- $directory = '/tmp/tmp_doctrine_models';
+ | * @param string $yamlPath Path to write oyur yaml schema file to
|
653 |
-
+ | * @return void
|
654 |
- Doctrine::generateModelsFromDb($directory);
+ | */
|
655 |
-
+ | public static function generateYamlFromDb($yamlPath)
|
656 |
- $export = new Doctrine_Export_Schema();
+ | {
|
657 |
-
+ | $directory = '/tmp/tmp_doctrine_models';
|
658 |
- $result = $export->exportSchema($yamlPath, 'yml', $directory);
+ |
|
659 |
-
+ | Doctrine::generateModelsFromDb($directory);
|
660 |
- exec('rm -rf ' . $directory);
+ |
|
661 |
-
+ | $export = new Doctrine_Export_Schema();
|
662 |
- return $result;
+ |
|
663 |
- }
+ | $result = $export->exportSchema($yamlPath, 'yml', $directory);
|
664 |
-
+ |
|
665 |
- /**
+ | exec('rm -rf ' . $directory);
|
666 |
- * generateModelsFromYaml
+ |
|
667 |
- *
+ | return $result;
|
668 |
- * Generate a yaml schema file from an existing directory of models
+ | }
|
669 |
- *
+ |
|
670 |
- * @param string $yamlPath Path to your yaml schema files
+ | /**
|
671 |
- * @param string $directory Directory to generate your models in
+ | * generateModelsFromYaml
|
672 |
- * @return void
+ | *
|
673 |
- */
+ | * Generate a yaml schema file from an existing directory of models
|
674 |
- public static function generateModelsFromYaml($yamlPath, $directory)
+ | *
|
675 |
- {
+ | * @param string $yamlPath Path to your yaml schema files
|
676 |
- $import = new Doctrine_Import_Schema();
+ | * @param string $directory Directory to generate your models in
|
677 |
- $import->generateBaseClasses(true);
- |
-678 |
-
- |
-679 |
- return $import->importSchema($yamlPath, 'yml', $directory);
- |
-680 |
- }
- |
-681 |
-
- |
-682 |
- /**
- |
-683 |
- * createTablesFromModels
- |
-684 |
- *
- |
-685 |
- * Creates database tables for the models in the specified directory
- |
-686 |
- *
- |
-687 |
- * @param string $directory Directory containing your models
- |
-688 |
* @return void
|
-689 |
+
678 |
*/
|
-690 |
- public static function createTablesFromModels($directory = null)
+ |
679 |
+ public static function generateModelsFromYaml($yamlPath, $directory)
|
-691 |
+
680 |
{
|
-692 |
- return Doctrine_Manager::connection()->export->exportSchema($directory);
+ |
681 |
+ $import = new Doctrine_Import_Schema();
|
-693 |
- }
+ |
682 |
+ $import->generateBaseClasses(true);
|
-694 |
-
- |
-695 |
- /**
- |
-696 |
- * generateSqlFromModels
- |
-697 |
- *
- |
-698 |
- * @param string $directory
- |
-699 |
- * @return string $build String of sql queries. One query per line
- |
-700 |
- */
- |
-701 |
- public static function generateSqlFromModels($directory = null)
- |
-702 |
- {
- |
-703 |
- $sql = Doctrine_Manager::connection()->export->exportSql($directory);
- |
-704 |
+
683 |
|
+684 |
+ return $import->importSchema($yamlPath, 'yml', $directory);
+ |
+685 |
+ }
+ |
+686 |
+
+ |
+687 |
+ /**
+ |
+688 |
+ * createTablesFromModels
+ |
+689 |
+ *
+ |
+690 |
+ * Creates database tables for the models in the specified directory
+ |
+691 |
+ *
+ |
+692 |
+ * @param string $directory Directory containing your models
+ |
+693 |
+ * @return void
+ |
+694 |
+ */
+ |
+695 |
+ public static function createTablesFromModels($directory = null)
+ |
+696 |
+ {
+ |
+697 |
+ return Doctrine_Manager::connection()->export->exportSchema($directory);
+ |
+698 |
+ }
+ |
+699 |
+
+ |
+700 |
+ /**
+ |
+701 |
+ * generateSqlFromModels
+ |
+702 |
+ *
+ |
+703 |
+ * @param string $directory
+ |
+704 |
+ * @return string $build String of sql queries. One query per line
+ |
705 |
- $build = '';
+ | */
|
706 |
- foreach ($sql as $query) {
+ | public static function generateSqlFromModels($directory = null)
|
707 |
- $build .= $query.";\n";
+ | {
|
708 |
- }
+ | $sql = Doctrine_Manager::connection()->export->exportSql($directory);
|
709 |
|
710 |
- return $build;
+ | $build = '';
|
711 |
- }
+ | foreach ($sql as $query) {
|
712 |
-
+ | $build .= $query.";\n";
|
713 |
- /**
+ | }
|
714 |
- * generateYamlFromModels
+ |
|
715 |
- *
+ | return $build;
|
716 |
- * Generate yaml schema file for the models in the specified directory
+ | }
|
717 |
- *
+ |
|
718 |
- * @param string $yamlPath Path to your yaml schema files
+ | /**
|
719 |
- * @param string $directory Directory to generate your models in
+ | * generateYamlFromModels
|
720 |
- * @return void
+ | *
|
721 |
- */
+ | * Generate yaml schema file for the models in the specified directory
|
722 |
- public static function generateYamlFromModels($yamlPath, $directory)
+ | *
|
723 |
- {
+ | * @param string $yamlPath Path to your yaml schema files
|
724 |
- $export = new Doctrine_Export_Schema();
+ | * @param string $directory Directory to generate your models in
|
725 |
-
+ | * @return void
|
726 |
- return $export->exportSchema($yamlPath, 'yml', $directory);
+ | */
|
727 |
- }
+ | public static function generateYamlFromModels($yamlPath, $directory)
|
728 |
-
+ | {
|
729 |
- /**
+ | $export = new Doctrine_Export_Schema();
|
730 |
- * createDatabases
+ |
|
731 |
- *
+ | return $export->exportSchema($yamlPath, 'yml', $directory);
|
732 |
- * Creates databases for connections
+ | }
|
733 |
- *
+ |
|
734 |
- * @param string $specifiedConnections Array of connections you wish to create the database for
+ | /**
|
735 |
- * @return void
+ | * createDatabases
|
736 |
- */
+ | *
|
737 |
- public static function createDatabases($specifiedConnections = array())
+ | * Creates databases for connections
|
738 |
- {
+ | *
|
739 |
- if ( ! is_array($specifiedConnections)) {
+ | * @param string $specifiedConnections Array of connections you wish to create the database for
|
740 |
- $specifiedConnections = (array) $specifiedConnections;
+ | * @return void
|
741 |
- }
+ | */
|
742 |
-
+ | public static function createDatabases($specifiedConnections = array())
|
743 |
- $manager = Doctrine_Manager::getInstance();
+ | {
|
744 |
- $connections = $manager->getConnections();
- |
-745 |
-
- |
-746 |
- foreach ($connections as $name => $connection) {
- |
-747 |
- if ( ! empty($specifiedConnections) && !in_array($name, $specifiedConnections)) {
- |
-748 |
- continue;
- |
-749 |
- }
- |
-750 |
-
- |
-751 |
- $info = $manager->parsePdoDsn($connection->getOption('dsn'));
- |
-752 |
- $username = $connection->getOption('username');
- |
-753 |
- $password = $connection->getOption('password');
- |
-754 |
-
- |
-755 |
- // Make connection without database specified so we can create it
- |
-756 |
- $connect = $manager->openConnection(new PDO($info['scheme'] . ':host=' . $info['host'], $username, $password), 'tmp_connection', false);
- |
-757 |
-
- |
-758 |
- try {
- |
-759 |
- // Create database
- |
-760 |
- $connect->export->createDatabase($name);
- |
-761 |
-
- |
-762 |
- // Close the tmp connection with no database
- |
-763 |
- $manager->closeConnection($connect);
- |
-764 |
-
- |
-765 |
- // Close original connection
- |
-766 |
- $manager->closeConnection($connection);
- |
-767 |
-
- |
-768 |
- // Reopen original connection with newly created database
- |
-769 |
- $manager->openConnection(new PDO($info['dsn'], $username, $password), $name, true);
- |
-770 |
- } catch (Exception $e) {
- |
-771 |
-
- |
-772 |
- }
- |
-773 |
- }
- |
-774 |
- }
- |
-775 |
-
- |
-776 |
- /**
- |
-777 |
- * dropDatabases
- |
-778 |
- *
- |
-779 |
- * Drops databases for connections
- |
-780 |
- *
- |
-781 |
- * @param string $specifiedConnections Array of connections you wish to drop the database for
- |
-782 |
- * @return void
- |
-783 |
- */
- |
-784 |
- public static function dropDatabases($specifiedConnections = array())
- |
-785 |
- {
- |
-786 |
if ( ! is_array($specifiedConnections)) {
|
-787 |
+
745 |
$specifiedConnections = (array) $specifiedConnections;
|
-788 |
+
746 |
}
|
-789 |
+
747 |
|
-790 |
+
748 |
$manager = Doctrine_Manager::getInstance();
|
-791 |
-
- |
-792 |
+
749 |
$connections = $manager->getConnections();
|
-793 |
+
750 |
|
-794 |
+
751 |
foreach ($connections as $name => $connection) {
|
-795 |
+
752 |
if ( ! empty($specifiedConnections) && !in_array($name, $specifiedConnections)) {
|
-796 |
+
753 |
continue;
|
-797 |
+
754 |
}
|
-798 |
+
755 |
|
-799 |
+
756 |
+ $info = $manager->parsePdoDsn($connection->getOption('dsn'));
+ |
+757 |
+ $username = $connection->getOption('username');
+ |
+758 |
+ $password = $connection->getOption('password');
+ |
+759 |
+
+ |
+760 |
+ // Make connection without database specified so we can create it
+ |
+761 |
+ $connect = $manager->openConnection(new PDO($info['scheme'] . ':host=' . $info['host'], $username, $password), 'tmp_connection', false);
+ |
+762 |
+
+ |
+763 |
try {
|
-800 |
- $connection->export->dropDatabase($name);
+ |
764 |
+ // Create database
|
-801 |
- } catch (Exception $e) {
+ |
765 |
+ $connect->export->createDatabase($name);
|
-802 |
+
766 |
|
-803 |
+
767 |
+ // Close the tmp connection with no database
+ |
+768 |
+ $manager->closeConnection($connect);
+ |
+769 |
+
+ |
+770 |
+ // Close original connection
+ |
+771 |
+ $manager->closeConnection($connection);
+ |
+772 |
+
+ |
+773 |
+ // Reopen original connection with newly created database
+ |
+774 |
+ $manager->openConnection(new PDO($info['dsn'], $username, $password), $name, true);
+ |
+775 |
+ } catch (Exception $e) {
+ |
+776 |
+
+ |
+777 |
}
|
-804 |
+
778 |
}
|
-805 |
+
779 |
}
|
-806 |
+
780 |
|
+781 |
+ /**
+ |
+782 |
+ * dropDatabases
+ |
+783 |
+ *
+ |
+784 |
+ * Drops databases for connections
+ |
+785 |
+ *
+ |
+786 |
+ * @param string $specifiedConnections Array of connections you wish to drop the database for
+ |
+787 |
+ * @return void
+ |
+788 |
+ */
+ |
+789 |
+ public static function dropDatabases($specifiedConnections = array())
+ |
+790 |
+ {
+ |
+791 |
+ if ( ! is_array($specifiedConnections)) {
+ |
+792 |
+ $specifiedConnections = (array) $specifiedConnections;
+ |
+793 |
+ }
+ |
+794 |
+
+ |
+795 |
+ $manager = Doctrine_Manager::getInstance();
+ |
+796 |
+
+ |
+797 |
+ $connections = $manager->getConnections();
+ |
+798 |
+
+ |
+799 |
+ foreach ($connections as $name => $connection) {
+ |
+800 |
+ if ( ! empty($specifiedConnections) && !in_array($name, $specifiedConnections)) {
+ |
+801 |
+ continue;
+ |
+802 |
+ }
+ |
+803 |
+
+ |
+804 |
+ try {
+ |
+805 |
+ $connection->export->dropDatabase($name);
+ |
+806 |
+ } catch (Exception $e) {
+ |
807 |
- /**
+ |
|
808 |
- * dumpData
+ | }
|
809 |
- *
+ | }
|
810 |
- * Dump data to a yaml fixtures file
+ | }
|
811 |
- *
+ |
|
812 |
- * @param string $yamlPath Path to write the yaml data fixtures to
+ | /**
|
813 |
- * @param string $individualFiles Whether or not to dump data to individual fixtures files
+ | * dumpData
|
814 |
- * @return void
+ | *
|
815 |
- */
+ | * Dump data to a yaml fixtures file
|
816 |
- public static function dumpData($yamlPath, $individualFiles = false)
+ | *
|
817 |
- {
+ | * @param string $yamlPath Path to write the yaml data fixtures to
|
818 |
- $data = new Doctrine_Data();
+ | * @param string $individualFiles Whether or not to dump data to individual fixtures files
|
819 |
-
+ | * @return void
|
820 |
- return $data->exportData($yamlPath, 'yml', array(), $individualFiles);
+ | */
|
821 |
- }
+ | public static function dumpData($yamlPath, $individualFiles = false)
|
822 |
-
+ | {
|
823 |
- /**
+ | $data = new Doctrine_Data();
|
824 |
- * loadData
+ |
|
825 |
- *
+ | return $data->exportData($yamlPath, 'yml', array(), $individualFiles);
|
826 |
- * Load data from a yaml fixtures file.
+ | }
|
827 |
- * The output of dumpData can be fed to loadData
+ |
|
828 |
- *
+ | /**
|
829 |
- * @param string $yamlPath Path to your yaml data fixtures
+ | * loadData
|
830 |
- * @param string $append Whether or not to append the data
+ | *
|
831 |
- * @return void
+ | * Load data from a yaml fixtures file.
|
832 |
- */
+ | * The output of dumpData can be fed to loadData
|
833 |
- public static function loadData($yamlPath, $append = false)
+ | *
|
834 |
- {
+ | * @param string $yamlPath Path to your yaml data fixtures
|
835 |
- $data = new Doctrine_Data();
- |
-836 |
-
- |
-837 |
- if ( ! $append) {
- |
-838 |
- $data->purge();
- |
-839 |
- }
- |
-840 |
-
- |
-841 |
- return $data->importData($yamlPath, 'yml');
- |
-842 |
- }
- |
-843 |
-
- |
-844 |
- /**
- |
-845 |
- * loadDummyData
- |
-846 |
- *
- |
-847 |
- * Populdate your models with dummy data
- |
-848 |
- *
- |
-849 |
* @param string $append Whether or not to append the data
|
-850 |
- * @param string $num Number of records to populate
- |
-851 |
+
836 |
* @return void
|
-852 |
+
837 |
*/
|
-853 |
- public static function loadDummyData($append, $num = 5)
+ |
838 |
+ public static function loadData($yamlPath, $append = false)
|
-854 |
+
839 |
{
|
-855 |
+
840 |
$data = new Doctrine_Data();
|
-856 |
-
+ |
841 |
+
|
-857 |
+
842 |
if ( ! $append) {
|
+843 |
+ $data->purge();
+ |
+844 |
+ }
+ |
+845 |
+
+ |
+846 |
+ return $data->importData($yamlPath, 'yml');
+ |
+847 |
+ }
+ |
+848 |
+
+ |
+849 |
+ /**
+ |
+850 |
+ * loadDummyData
+ |
+851 |
+ *
+ |
+852 |
+ * Populdate your models with dummy data
+ |
+853 |
+ *
+ |
+854 |
+ * @param string $append Whether or not to append the data
+ |
+855 |
+ * @param string $num Number of records to populate
+ |
+856 |
+ * @return void
+ |
+857 |
+ */
+ |
858 |
- $data->purge();
+ | public static function loadDummyData($append, $num = 5)
|
859 |
- }
+ | {
|
860 |
-
+ | $data = new Doctrine_Data();
|
861 |
- return $data->importDummyData($num);
+ |
|
862 |
- }
+ | if ( ! $append) {
|
863 |
-
+ | $data->purge();
|
864 |
- /**
- |
-865 |
- * migrate
- |
-866 |
- *
- |
-867 |
- * Migrate database to specified $to version. Migrates from current to latest if you do not specify.
- |
-868 |
- *
- |
-869 |
- * @param string $migrationsPath Path to migrations directory which contains your migration classes
- |
-870 |
- * @param string $to Version you wish to migrate to.
- |
-871 |
- * @return bool true
- |
-872 |
- * @throws new Doctrine_Migration_Exception
- |
-873 |
- */
- |
-874 |
- public static function migrate($migrationsPath, $to = null)
- |
-875 |
- {
- |
-876 |
- $migration = new Doctrine_Migration($migrationsPath);
- |
-877 |
-
- |
-878 |
- return $migration->migrate($to);
- |
-879 |
- }
- |
-880 |
-
- |
-881 |
- /**
- |
-882 |
- * generateMigrationClass
- |
-883 |
- *
- |
-884 |
- * Generate new migration class skeleton
- |
-885 |
- *
- |
-886 |
- * @param string $className Name of the Migration class to generate
- |
-887 |
- * @param string $migrationsPath Path to directory which contains your migration classes
- |
-888 |
- */
- |
-889 |
- public static function generateMigrationClass($className, $migrationsPath)
- |
-890 |
- {
- |
-891 |
- $builder = new Doctrine_Migration_Builder($migrationsPath);
- |
-892 |
-
- |
-893 |
- return $builder->generateMigrationClass($className);
- |
-894 |
- }
- |
-895 |
-
- |
-896 |
- /**
- |
-897 |
- * generateMigrationsFromDb
- |
-898 |
- *
- |
-899 |
- * @param string $migrationsPath
- |
-900 |
- * @return void
- |
-901 |
- * @throws new Doctrine_Migration_Exception
- |
-902 |
- */
- |
-903 |
- public static function generateMigrationsFromDb($migrationsPath)
- |
-904 |
- {
- |
-905 |
- $builder = new Doctrine_Migration_Builder($migrationsPath);
- |
-906 |
-
- |
-907 |
- return $builder->generateMigrationsFromDb();
- |
-908 |
- }
- |
-909 |
-
- |
-910 |
- /**
- |
-911 |
- * generateMigrationsFromModels
- |
-912 |
- *
- |
-913 |
- * @param string $migrationsPath
- |
-914 |
- * @param string $modelsPath
- |
-915 |
- * @return void
- |
-916 |
- */
- |
-917 |
- public static function generateMigrationsFromModels($migrationsPath, $modelsPath = null)
- |
-918 |
- {
- |
-919 |
- $builder = new Doctrine_Migration_Builder($migrationsPath);
- |
-920 |
-
- |
-921 |
- return $builder->generateMigrationsFromModels($modelsPath);
- |
-922 |
- }
- |
-923 |
-
- |
-924 |
- /**
- |
-925 |
- * getTable
- |
-926 |
- *
- |
-927 |
- * @param string $tableName
- |
-928 |
- * @return void
- |
-929 |
- */
- |
-930 |
- public static function getTable($tableName)
- |
-931 |
- {
- |
-932 |
- return Doctrine_Manager::table($tableName);
- |
-933 |
- }
- |
-934 |
-
- |
-935 |
- /**
- |
-936 |
- * connection
- |
-937 |
- *
- |
-938 |
- * @param string $adapter
- |
-939 |
- * @param string $name
- |
-940 |
- * @return void
- |
-941 |
- */
- |
-942 |
- public static function connection($adapter, $name = null)
- |
-943 |
- {
- |
-944 |
- return Doctrine_Manager::connection($adapter, $name);
- |
-945 |
- }
- |
-946 |
-
- |
-947 |
- /**
- |
-948 |
- * fileFinder
- |
-949 |
- *
- |
-950 |
- * @param string $type
- |
-951 |
- * @return void
- |
-952 |
- */
- |
-953 |
- public static function fileFinder($type)
- |
-954 |
- {
- |
-955 |
- return Doctrine_FileFinder::type($type);
- |
-956 |
- }
- |
-957 |
-
- |
-958 |
- /**
- |
-959 |
- * compile
- |
-960 |
- * method for making a single file of most used doctrine runtime components
- |
-961 |
- * including the compiled file instead of multiple files (in worst
- |
-962 |
- * cases dozens of files) can improve performance by an order of magnitude
- |
-963 |
- *
- |
-964 |
- * @param string $target
- |
-965 |
- *
- |
-966 |
- * @throws Doctrine_Exception
- |
-967 |
- * @return void
- |
-968 |
- */
- |
-969 |
- public static function compile($target = null, $includedDrivers = array())
- |
-970 |
- {
- |
-971 |
- return Doctrine_Compiler::compile($target, $includedDrivers);
- |
-972 |
- }
- |
-973 |
-
- |
-974 |
- /**
- |
-975 |
- * simple autoload function
- |
-976 |
- * returns true if the class was loaded, otherwise false
- |
-977 |
- *
- |
-978 |
- * @param string $classname
- |
-979 |
- * @return boolean
- |
-980 |
- */
- |
-981 |
- public static function autoload($classname)
- |
-982 |
- {
- |
-983 |
- if (class_exists($classname, false)) {
- |
-984 |
- return false;
- |
-985 |
- }
- |
-986 |
-
- |
-987 |
- if ( ! self::$_path) {
- |
-988 |
- self::$_path = dirname(__FILE__);
- |
-989 |
}
|
-990 |
+
865 |
|
-991 |
- $class = self::$_path . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $classname) . '.php';
+ |
866 |
+ return $data->importDummyData($num);
|
-992 |
+
867 |
+ }
+ |
+868 |
|
-993 |
- if ( ! file_exists($class)) {
+ |
869 |
+ /**
|
-994 |
+
870 |
+ * migrate
+ |
+871 |
+ *
+ |
+872 |
+ * Migrate database to specified $to version. Migrates from current to latest if you do not specify.
+ |
+873 |
+ *
+ |
+874 |
+ * @param string $migrationsPath Path to migrations directory which contains your migration classes
+ |
+875 |
+ * @param string $to Version you wish to migrate to.
+ |
+876 |
+ * @return bool true
+ |
+877 |
+ * @throws new Doctrine_Migration_Exception
+ |
+878 |
+ */
+ |
+879 |
+ public static function migrate($migrationsPath, $to = null)
+ |
+880 |
+ {
+ |
+881 |
+ $migration = new Doctrine_Migration($migrationsPath);
+ |
+882 |
+
+ |
+883 |
+ return $migration->migrate($to);
+ |
+884 |
+ }
+ |
+885 |
+
+ |
+886 |
+ /**
+ |
+887 |
+ * generateMigrationClass
+ |
+888 |
+ *
+ |
+889 |
+ * Generate new migration class skeleton
+ |
+890 |
+ *
+ |
+891 |
+ * @param string $className Name of the Migration class to generate
+ |
+892 |
+ * @param string $migrationsPath Path to directory which contains your migration classes
+ |
+893 |
+ */
+ |
+894 |
+ public static function generateMigrationClass($className, $migrationsPath)
+ |
+895 |
+ {
+ |
+896 |
+ $builder = new Doctrine_Migration_Builder($migrationsPath);
+ |
+897 |
+
+ |
+898 |
+ return $builder->generateMigrationClass($className);
+ |
+899 |
+ }
+ |
+900 |
+
+ |
+901 |
+ /**
+ |
+902 |
+ * generateMigrationsFromDb
+ |
+903 |
+ *
+ |
+904 |
+ * @param string $migrationsPath
+ |
+905 |
+ * @return void
+ |
+906 |
+ * @throws new Doctrine_Migration_Exception
+ |
+907 |
+ */
+ |
+908 |
+ public static function generateMigrationsFromDb($migrationsPath)
+ |
+909 |
+ {
+ |
+910 |
+ $builder = new Doctrine_Migration_Builder($migrationsPath);
+ |
+911 |
+
+ |
+912 |
+ return $builder->generateMigrationsFromDb();
+ |
+913 |
+ }
+ |
+914 |
+
+ |
+915 |
+ /**
+ |
+916 |
+ * generateMigrationsFromModels
+ |
+917 |
+ *
+ |
+918 |
+ * @param string $migrationsPath
+ |
+919 |
+ * @param string $modelsPath
+ |
+920 |
+ * @return void
+ |
+921 |
+ */
+ |
+922 |
+ public static function generateMigrationsFromModels($migrationsPath, $modelsPath = null)
+ |
+923 |
+ {
+ |
+924 |
+ $builder = new Doctrine_Migration_Builder($migrationsPath);
+ |
+925 |
+
+ |
+926 |
+ return $builder->generateMigrationsFromModels($modelsPath);
+ |
+927 |
+ }
+ |
+928 |
+
+ |
+929 |
+ /**
+ |
+930 |
+ * getTable
+ |
+931 |
+ *
+ |
+932 |
+ * @param string $tableName
+ |
+933 |
+ * @return void
+ |
+934 |
+ */
+ |
+935 |
+ public static function getTable($tableName)
+ |
+936 |
+ {
+ |
+937 |
+ return Doctrine_Manager::table($tableName);
+ |
+938 |
+ }
+ |
+939 |
+
+ |
+940 |
+ /**
+ |
+941 |
+ * connection
+ |
+942 |
+ *
+ |
+943 |
+ * @param string $adapter
+ |
+944 |
+ * @param string $name
+ |
+945 |
+ * @return void
+ |
+946 |
+ */
+ |
+947 |
+ public static function connection($adapter, $name = null)
+ |
+948 |
+ {
+ |
+949 |
+ return Doctrine_Manager::connection($adapter, $name);
+ |
+950 |
+ }
+ |
+951 |
+
+ |
+952 |
+ /**
+ |
+953 |
+ * fileFinder
+ |
+954 |
+ *
+ |
+955 |
+ * @param string $type
+ |
+956 |
+ * @return void
+ |
+957 |
+ */
+ |
+958 |
+ public static function fileFinder($type)
+ |
+959 |
+ {
+ |
+960 |
+ return Doctrine_FileFinder::type($type);
+ |
+961 |
+ }
+ |
+962 |
+
+ |
+963 |
+ /**
+ |
+964 |
+ * compile
+ |
+965 |
+ * method for making a single file of most used doctrine runtime components
+ |
+966 |
+ * including the compiled file instead of multiple files (in worst
+ |
+967 |
+ * cases dozens of files) can improve performance by an order of magnitude
+ |
+968 |
+ *
+ |
+969 |
+ * @param string $target
+ |
+970 |
+ *
+ |
+971 |
+ * @throws Doctrine_Exception
+ |
+972 |
+ * @return void
+ |
+973 |
+ */
+ |
+974 |
+ public static function compile($target = null, $includedDrivers = array())
+ |
+975 |
+ {
+ |
+976 |
+ return Doctrine_Compiler::compile($target, $includedDrivers);
+ |
+977 |
+ }
+ |
+978 |
+
+ |
+979 |
+ /**
+ |
+980 |
+ * simple autoload function
+ |
+981 |
+ * returns true if the class was loaded, otherwise false
+ |
+982 |
+ *
+ |
+983 |
+ * @param string $classname
+ |
+984 |
+ * @return boolean
+ |
+985 |
+ */
+ |
+986 |
+ public static function autoload($classname)
+ |
+987 |
+ {
+ |
+988 |
+ if (class_exists($classname, false)) {
+ |
+989 |
return false;
|
-995 |
+
990 |
}
|
+991 |
+
+ |
+992 |
+ if ( ! self::$_path) {
+ |
+993 |
+ self::$_path = dirname(__FILE__);
+ |
+994 |
+ }
+ |
+995 |
+
+ |
996 |
-
+ | $class = self::$_path . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $classname) . '.php';
|
997 |
- require_once($class);
- |
-998 |
|
+998 |
+ if ( ! file_exists($class)) {
+ |
999 |
- return true;
+ | return false;
|
1000 |
- }
+ | }
|
1001 |
|
1002 |
- /**
+ | require_once($class);
|
1003 |
- * dump
+ |
|
1004 |
- *
+ | return true;
|
1005 |
- * dumps a given variable
+ | }
|
1006 |
- *
+ |
|
1007 |
- * @param mixed $var a variable of any type
+ | /**
|
1008 |
- * @param boolean $output whether to output the content
+ | * dump
|
1009 |
- * @return void|string
+ | *
|
1010 |
- */
+ | * dumps a given variable
|
1011 |
- public static function dump($var, $output = true)
+ | *
|
1012 |
- {
+ | * @param mixed $var a variable of any type
|
1013 |
- $ret = array();
+ | * @param boolean $output whether to output the content
|
1014 |
- switch (gettype($var)) {
+ | * @return void|string
|
1015 |
- case 'array':
+ | */
|
1016 |
- $ret[] = 'Array(';
+ | public static function dump($var, $output = true)
|
1017 |
- foreach ($var as $k => $v) {
+ | {
|
1018 |
- $ret[] = $k . ' : ' . self::dump($v, false);
+ | $ret = array();
|
1019 |
- }
+ | switch (gettype($var)) {
|
1020 |
- $ret[] = ")";
+ | case 'array':
|
1021 |
- break;
+ | $ret[] = 'Array(';
|
1022 |
- case 'object':
+ | foreach ($var as $k => $v) {
|
1023 |
- $ret[] = 'Object(' . get_class($var) . ')';
+ | $ret[] = $k . ' : ' . self::dump($v, false);
|
1024 |
- break;
+ | }
|
1025 |
- default:
+ | $ret[] = ")";
|
1026 |
- $ret[] = var_export($var, true);
+ | break;
|
1027 |
- }
+ | case 'object':
|
1028 |
- if ($output) {
+ | $ret[] = 'Object(' . get_class($var) . ')';
|
1029 |
- print implode("\n", $ret);
+ | break;
|
1030 |
- }
+ | default:
|
1031 |
- return implode("\n", $ret);
+ | $ret[] = var_export($var, true);
|
1032 |
- }
+ | }
|
1033 |
-
+ | if ($output) {
|
1034 |
- /**
+ | print implode("\n", $ret);
|
1035 |
- * returns table name from class name
+ | }
|
1036 |
- *
+ | return implode("\n", $ret);
|
1037 |
- * @param string $classname
+ | }
|
1038 |
- * @return string
+ |
|
1039 |
- */
+ | /**
|
1040 |
- public static function tableize($classname)
+ | * returns table name from class name
|
1041 |
- {
+ | *
|
1042 |
- return strtolower(preg_replace('~(?<=\\w)([A-Z])~', '_$1', $classname));
- |
-1043 |
- }
- |
-1044 |
-
- |
-1045 |
- /**
- |
-1046 |
- * returns class name from table name
- |
-1047 |
- *
- |
-1048 |
- * @param string $tablename
- |
-1049 |
- * @return string
- |
-1050 |
- */
- |
-1051 |
- public static function classify($tablename)
- |
-1052 |
- {
- |
-1053 |
- return preg_replace_callback('~(_?)(_)([\w])~', array("Doctrine", "classifyCallback"), ucfirst($tablename));
- |
-1054 |
- }
- |
-1055 |
-
- |
-1056 |
- /**
- |
-1057 |
- * Callback function to classify a classname propperly.
- |
-1058 |
- *
- |
-1059 |
- * @param array $matches An array of matches from a pcre_replace call
- |
-1060 |
- * @return string A string with matches 1 and mathces 3 in upper case.
- |
-1061 |
- */
- |
-1062 |
- public static function classifyCallback($matches)
- |
-1063 |
- {
- |
-1064 |
- return $matches[1] . strtoupper($matches[3]);
- |
-1065 |
- }
- |
-1066 |
-
- |
-1067 |
- /**
- |
-1068 |
- * checks for valid class name (uses camel case and underscores)
- |
-1069 |
- *
- |
-1070 |
* @param string $classname
|
-1071 |
- * @return boolean
+ |
1043 |
+ * @return string
|
-1072 |
+
1044 |
*/
|
-1073 |
- public static function isValidClassname($classname)
+ |
1045 |
+ public static function tableize($classname)
|
-1074 |
+
1046 |
{
|
-1075 |
- if (preg_match('~(^[a-z])|(_[a-z])|([\W])|(_{2})~', $classname)) {
+ |
1047 |
+ return strtolower(preg_replace('~(?<=\\w)([A-Z])~', '_$1', $classname));
|
-1076 |
- return false;
- |
-1077 |
- }
- |
-1078 |
-
- |
-1079 |
- return true;
- |
-1080 |
+
1048 |
}
|
+1049 |
+
+ |
+1050 |
+ /**
+ |
+1051 |
+ * returns class name from table name
+ |
+1052 |
+ *
+ |
+1053 |
+ * @param string $tablename
+ |
+1054 |
+ * @return string
+ |
+1055 |
+ */
+ |
+1056 |
+ public static function classify($tablename)
+ |
+1057 |
+ {
+ |
+1058 |
+ return preg_replace_callback('~(_?)(_)([\w])~', array("Doctrine", "classifyCallback"), ucfirst($tablename));
+ |
+1059 |
+ }
+ |
+1060 |
+
+ |
+1061 |
+ /**
+ |
+1062 |
+ * Callback function to classify a classname propperly.
+ |
+1063 |
+ *
+ |
+1064 |
+ * @param array $matches An array of matches from a pcre_replace call
+ |
+1065 |
+ * @return string A string with matches 1 and mathces 3 in upper case.
+ |
+1066 |
+ */
+ |
+1067 |
+ public static function classifyCallback($matches)
+ |
+1068 |
+ {
+ |
+1069 |
+ return $matches[1] . strtoupper($matches[3]);
+ |
+1070 |
+ }
+ |
+1071 |
+
+ |
+1072 |
+ /**
+ |
+1073 |
+ * checks for valid class name (uses camel case and underscores)
+ |
+1074 |
+ *
+ |
+1075 |
+ * @param string $classname
+ |
+1076 |
+ * @return boolean
+ |
+1077 |
+ */
+ |
+1078 |
+ public static function isValidClassname($classname)
+ |
+1079 |
+ {
+ |
+1080 |
+ if (preg_match('~(^[a-z])|(_[a-z])|([\W])|(_{2})~', $classname)) {
+ |
1081 |
-} |
+ return false;
+ |
+1082 |
+ }
+ |
+1083 |
+
+ |
+1084 |
+ return true;
+ |
+1085 |
+ }
+ |
+1086 |
+}
+ |