Skip to content

Commit

Permalink
Using latest Zephir
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgutierrez committed May 31, 2015
1 parent 3054f38 commit 418eb29
Show file tree
Hide file tree
Showing 229 changed files with 6,728 additions and 2,056 deletions.
4 changes: 4 additions & 0 deletions ext/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,10 @@ if test "$PHP_PHALCON" = "yes"; then
phalcon/mvc/application.zep.c
phalcon/mvc/application/exception.zep.c
phalcon/mvc/collection.zep.c
phalcon/mvc/collection/behavior.zep.c
phalcon/mvc/collection/behavior/softdelete.zep.c
phalcon/mvc/collection/behavior/timestampable.zep.c
phalcon/mvc/collection/behaviorinterface.zep.c
phalcon/mvc/collection/document.zep.c
phalcon/mvc/collection/exception.zep.c
phalcon/mvc/collection/manager.zep.c
Expand Down
3 changes: 2 additions & 1 deletion ext/config.w32
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if (PHP_PHALCON != "no") {
ADD_SOURCES(configure_module_dirname + "/phalcon/logger/formatter", "firephp.zep.c json.zep.c line.zep.c syslog.zep.c", "phalcon");
ADD_SOURCES(configure_module_dirname + "/phalcon/mvc", "application.zep.c collection.zep.c collectioninterface.zep.c controller.zep.c controllerinterface.zep.c dispatcher.zep.c dispatcherinterface.zep.c micro.zep.c model.zep.c modelinterface.zep.c moduledefinitioninterface.zep.c router.zep.c routerinterface.zep.c url.zep.c urlinterface.zep.c view.zep.c viewbaseinterface.zep.c viewinterface.zep.c", "phalcon");
ADD_SOURCES(configure_module_dirname + "/phalcon/mvc/application", "exception.zep.c", "phalcon");
ADD_SOURCES(configure_module_dirname + "/phalcon/mvc/collection", "document.zep.c exception.zep.c manager.zep.c managerinterface.zep.c", "phalcon");
ADD_SOURCES(configure_module_dirname + "/phalcon/mvc/collection", "behavior.zep.c behaviorinterface.zep.c document.zep.c exception.zep.c manager.zep.c managerinterface.zep.c", "phalcon");
ADD_SOURCES(configure_module_dirname + "/phalcon/mvc/collection/behavior", "softdelete.zep.c timestampable.zep.c", "phalcon");
ADD_SOURCES(configure_module_dirname + "/phalcon/mvc/dispatcher", "exception.zep.c", "phalcon");
ADD_SOURCES(configure_module_dirname + "/phalcon/mvc/micro", "collection.zep.c collectioninterface.zep.c exception.zep.c lazyloader.zep.c middlewareinterface.zep.c", "phalcon");
ADD_SOURCES(configure_module_dirname + "/phalcon/mvc/model", "behavior.zep.c behaviorinterface.zep.c criteria.zep.c criteriainterface.zep.c exception.zep.c manager.zep.c managerinterface.zep.c message.zep.c messageinterface.zep.c metadata.zep.c metadatainterface.zep.c query.zep.c queryinterface.zep.c relation.zep.c relationinterface.zep.c resultinterface.zep.c resultset.zep.c resultsetinterface.zep.c row.zep.c transaction.zep.c transactioninterface.zep.c validationfailed.zep.c validator.zep.c validatorinterface.zep.c", "phalcon");
Expand Down
8 changes: 8 additions & 0 deletions ext/phalcon.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ zend_class_entry *phalcon_translate_adapterinterface_ce;
zend_class_entry *phalcon_acl_adapterinterface_ce;
zend_class_entry *phalcon_flashinterface_ce;
zend_class_entry *phalcon_image_adapterinterface_ce;
zend_class_entry *phalcon_mvc_collection_behaviorinterface_ce;
zend_class_entry *phalcon_mvc_model_behaviorinterface_ce;
zend_class_entry *phalcon_mvc_model_metadata_strategyinterface_ce;
zend_class_entry *phalcon_mvc_model_resultinterface_ce;
Expand Down Expand Up @@ -121,6 +122,7 @@ zend_class_entry *phalcon_di_ce;
zend_class_entry *phalcon_dispatcher_ce;
zend_class_entry *phalcon_flash_ce;
zend_class_entry *phalcon_image_adapter_ce;
zend_class_entry *phalcon_mvc_collection_behavior_ce;
zend_class_entry *phalcon_mvc_model_behavior_ce;
zend_class_entry *phalcon_mvc_model_resultset_ce;
zend_class_entry *phalcon_mvc_view_engine_ce;
Expand Down Expand Up @@ -262,6 +264,8 @@ zend_class_entry *phalcon_logger_item_ce;
zend_class_entry *phalcon_logger_multiple_ce;
zend_class_entry *phalcon_mvc_application_ce;
zend_class_entry *phalcon_mvc_application_exception_ce;
zend_class_entry *phalcon_mvc_collection_behavior_softdelete_ce;
zend_class_entry *phalcon_mvc_collection_behavior_timestampable_ce;
zend_class_entry *phalcon_mvc_collection_ce;
zend_class_entry *phalcon_mvc_collection_document_ce;
zend_class_entry *phalcon_mvc_collection_exception_ce;
Expand Down Expand Up @@ -412,6 +416,7 @@ static PHP_MINIT_FUNCTION(phalcon)
ZEPHIR_INIT(Phalcon_Acl_AdapterInterface);
ZEPHIR_INIT(Phalcon_FlashInterface);
ZEPHIR_INIT(Phalcon_Image_AdapterInterface);
ZEPHIR_INIT(Phalcon_Mvc_Collection_BehaviorInterface);
ZEPHIR_INIT(Phalcon_Mvc_Model_BehaviorInterface);
ZEPHIR_INIT(Phalcon_Mvc_Model_MetaData_StrategyInterface);
ZEPHIR_INIT(Phalcon_Mvc_Model_ResultInterface);
Expand Down Expand Up @@ -482,6 +487,7 @@ static PHP_MINIT_FUNCTION(phalcon)
ZEPHIR_INIT(Phalcon_Dispatcher);
ZEPHIR_INIT(Phalcon_Flash);
ZEPHIR_INIT(Phalcon_Image_Adapter);
ZEPHIR_INIT(Phalcon_Mvc_Collection_Behavior);
ZEPHIR_INIT(Phalcon_Mvc_Model_Behavior);
ZEPHIR_INIT(Phalcon_Mvc_Model_Resultset);
ZEPHIR_INIT(Phalcon_Mvc_View_Engine);
Expand Down Expand Up @@ -624,6 +630,8 @@ static PHP_MINIT_FUNCTION(phalcon)
ZEPHIR_INIT(Phalcon_Mvc_Application);
ZEPHIR_INIT(Phalcon_Mvc_Application_Exception);
ZEPHIR_INIT(Phalcon_Mvc_Collection);
ZEPHIR_INIT(Phalcon_Mvc_Collection_Behavior_SoftDelete);
ZEPHIR_INIT(Phalcon_Mvc_Collection_Behavior_Timestampable);
ZEPHIR_INIT(Phalcon_Mvc_Collection_Document);
ZEPHIR_INIT(Phalcon_Mvc_Collection_Exception);
ZEPHIR_INIT(Phalcon_Mvc_Collection_Manager);
Expand Down
4 changes: 4 additions & 0 deletions ext/phalcon.h
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,10 @@
#include "phalcon/mvc/application.zep.h"
#include "phalcon/mvc/application/exception.zep.h"
#include "phalcon/mvc/collection.zep.h"
#include "phalcon/mvc/collection/behavior.zep.h"
#include "phalcon/mvc/collection/behavior/softdelete.zep.h"
#include "phalcon/mvc/collection/behavior/timestampable.zep.h"
#include "phalcon/mvc/collection/behaviorinterface.zep.h"
#include "phalcon/mvc/collection/document.zep.h"
#include "phalcon/mvc/collection/exception.zep.h"
#include "phalcon/mvc/collection/manager.zep.h"
Expand Down
21 changes: 21 additions & 0 deletions ext/phalcon/acl/adapter/memory.zep.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions ext/phalcon/annotations/adapter.zep.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions ext/phalcon/annotations/adapter/apc.zep.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions ext/phalcon/annotations/adapter/xcache.zep.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 418eb29

Please sign in to comment.