Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | reverted at Andi's request. replaced with more generic wrapper. | George Schlossnagle | 2003-07-21 | 1 | -16/+2 | |
| | ||||||
* | Rework zend_do_declare_property and related code into one code base | Zeev Suraski | 2003-07-07 | 1 | -16/+17 | |
| | ||||||
* | add convenience functions or adding class properties. Ok'd for commit by Andi. | George Schlossnagle | 2003-07-06 | 1 | -0/+22 | |
| | ||||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -1/+1 | |
| | ||||||
* | rm namespace leftovers | Stanislav Malyshev | 2003-06-04 | 1 | -2/+0 | |
| | ||||||
* | MEGA-patch: namespaces are R.I.P. | Stanislav Malyshev | 2003-06-02 | 1 | -7/+0 | |
| | ||||||
* | Revert to sizeof() | Marcus Boerger | 2003-05-23 | 1 | -1/+1 | |
| | ||||||
* | add fast_call_user_function() | Sterling Hughes | 2003-05-20 | 1 | -0/+1 | |
| | ||||||
* | C++ compile fixes | Hartmut Holzgraefe | 2003-05-20 | 1 | -1/+3 | |
| | ||||||
* | Allow functions in internal namespaces (for example factories) | Marcus Boerger | 2003-05-04 | 1 | -0/+1 | |
| | ||||||
* | Change get_class() so that it returns qualified names for namespaced | Stanislav Malyshev | 2003-04-21 | 1 | -0/+2 | |
| | | | | | | | | | | | | classes. *HEADS UP*: get_class_name() handler interface is changed, now it should allocate the space it returns with emalloc, and the users free it. If anyone has problems with it or has suggestions how to do it without this - please tell. Also: make function_exists() understand namespaces. | |||||
* | Rename zend_register_internal_class_in_ns() to a better, less filling, | Andrei Zmievski | 2003-04-08 | 1 | -1/+1 | |
| | | | | | but with the same great taste zend_register_internal_ns_class(). | |||||
* | Introduce ZEND_ME() and ZEND_METHOD() macros. Use these for declaring | Andrei Zmievski | 2003-04-04 | 1 | -0/+2 | |
| | | | | | class methods to avoid name collisions. | |||||
* | Fix namespace issues | Stanislav Malyshev | 2003-04-04 | 1 | -0/+1 | |
| | ||||||
* | - Add zend_register_internal_namespace() API function. | Andrei Zmievski | 2003-04-02 | 1 | -0/+4 | |
| | | | | | - Add zend_register_internal_class_in_ns() API function. | |||||
* | Eliminate TSRMLS_FETCH() calls in destroy_op_array() and zend_get_class_entry(). | Sebastian Bergmann | 2003-03-26 | 1 | -1/+1 | |
| | ||||||
* | commiting zend_disable_class patch for George: | Harald Radi | 2003-03-03 | 1 | -1/+3 | |
| | | | | | | disabled classes will be replaced by dummy classes that print a warning upon instanciation | |||||
* | Removed zend_get_module(), this function is not used by anything and more | Ilia Alshanetsky | 2003-02-12 | 1 | -1/+0 | |
| | | | | | | importantly. it does not work. It tries to find data based on numeric keys in hash table using string keys. | |||||
* | fixed zend_parse_method_param | Georg Richter | 2003-02-08 | 1 | -1/+1 | |
| | ||||||
* | Build fix. | Sebastian Bergmann | 2003-02-03 | 1 | -1/+1 | |
| | ||||||
* | extend the parameter parsing API by two functions | Harald Radi | 2003-02-02 | 1 | -0/+3 | |
| | | | | | | | | | | | | | for parsing method parameters with automatic detection if the function was called as such or as a class method (with a valid this ptr). if called as a function the first parameter has to be the object it is operating on, if called as a method this is used. #not yet testet, only commiting so that georg can #continue working on ext/mysqli | |||||
* | - Added some missing CVS $Id$ tags, headers and footers. | foobar | 2003-02-01 | 1 | -0/+2 | |
| | ||||||
* | Make add_property_ functions work via write_property handler | Stanislav Malyshev | 2003-01-14 | 1 | -17/+17 | |
| | ||||||
* | Remove handle_property from here too | Stanislav Malyshev | 2003-01-12 | 1 | -3/+3 | |
| | ||||||
* | Unify and make it easy to add code into the broken-string error handler | Zeev Suraski | 2003-01-09 | 1 | -2/+2 | |
| | ||||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 | |
| | ||||||
* | - Commit Marcus' cleanup of abstract and static inheritance and improve | Andi Gutmans | 2002-11-23 | 1 | -1/+1 | |
| | | | | | - error messages | |||||
* | MFZE1 | Andrei Zmievski | 2002-09-16 | 1 | -0/+2 | |
| | ||||||
* | only check for an available class entry instead of | Harald Radi | 2002-06-09 | 1 | -13/+1 | |
| | | | | | | | the std_object_handlers on some places #some linuxtag work | |||||
* | MFZE1 (Expose more C++ APIs) | Zeev Suraski | 2002-05-20 | 1 | -0/+4 | |
| | ||||||
* | Make OBJCE return zend_class_entry*, also some cleanups | Stanislav Malyshev | 2002-04-30 | 1 | -1/+1 | |
| | ||||||
* | some type cleanup work | Harald Radi | 2002-04-23 | 1 | -1/+1 | |
| | ||||||
* | added get_class_entry callback handler to the | Harald Radi | 2002-04-22 | 1 | -0/+2 | |
| | | | | | object handlers structure | |||||
* | Mega-commit: Enter the new object model | Stanislav Malyshev | 2002-02-07 | 1 | -1/+3 | |
| | | | | | | | Note: only standard Zend objects are working now. This is definitely going to break custom objects like COM, Java, etc. - this will be fixed later. Also, this may break other things that access objects' internals directly. | |||||
* | Happy New Year. | Sebastian Bergmann | 2002-01-06 | 1 | -1/+1 | |
| | ||||||
* | - MFZE1 for exit fix, exposing current function name in error messages and | Derick Rethans | 2002-01-03 | 1 | -0/+1 | |
| | | | | | exposing zend_zval_type_name(). | |||||
* | - Experimental support for destructors. We need to see if destructors | Andi Gutmans | 2001-12-27 | 1 | -0/+2 | |
| | | | | | | | - will actually work well in the context of PHP so we should consider this - as experimental. Possible problems might be that when the constructor is - run PHP might not be in a stable state. | |||||
* | - Pretty much finish _clone() support | Andi Gutmans | 2001-12-26 | 1 | -0/+2 | |
| | ||||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 | |
| | ||||||
* | - Add some initializations | Andi Gutmans | 2001-11-03 | 1 | -0/+2 | |
| | ||||||
* | MFZE1: Introduced extension version numbers (Stig) | Sebastian Bergmann | 2001-10-12 | 1 | -0/+1 | |
| | ||||||
* | _FUNCTION is used in definition, so use _D | Stanislav Malyshev | 2001-08-12 | 1 | -4/+4 | |
| | ||||||
* | - More work on making objects work | Andi Gutmans | 2001-08-11 | 1 | -0/+2 | |
| | ||||||
* | Whitespace | Zeev Suraski | 2001-08-11 | 1 | -30/+30 | |
| | ||||||
* | - Merge from Engine 1 | Andi Gutmans | 2001-08-10 | 1 | -11/+27 | |
| | ||||||
* | - Merge from Engine 1 CVS | Andi Gutmans | 2001-08-10 | 1 | -0/+1 | |
| | ||||||
* | - Use Z_ macros | Andi Gutmans | 2001-08-06 | 1 | -1/+1 | |
| | ||||||
* | TSRMLS_FETCH work | Zeev Suraski | 2001-08-05 | 1 | -4/+4 | |
| | ||||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 1 | -1/+1 | |
| | ||||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-30 | 1 | -5/+5 | |
| |