PHP Classes

File: ext/phady/security/core/models/entities/modules.zep.c

Recommend this page to a friend!
  Classes of Alien Fernandez   Phady Framework   ext/phady/security/core/models/entities/modules.zep.c   Download  
File: ext/phady/security/core/models/entities/modules.zep.c
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Phady Framework
Web application MVC framework based on Phalcon
Author: By
Last change:
Date: 7 years ago
Size: 3,421 bytes
 

Contents

Class file image Download
#ifdef HAVE_CONFIG_H #include "../../../../../ext_config.h" #endif #include <php.h> #include "../../../../../php_ext.h" #include "../../../../../ext.h" #include <Zend/zend_operators.h> #include <Zend/zend_exceptions.h> #include <Zend/zend_interfaces.h> #include "kernel/main.h" #include "kernel/fcall.h" #include "kernel/object.h" #include "kernel/memory.h" /** * Phady\Security\Models\Core\Entities\Modules * * Model for Users */ ZEPHIR_INIT_CLASS(Phady_Security_Core_Models_Entities_Modules) { ZEPHIR_REGISTER_CLASS_EX(Phady\\Security\\Core\\Models\\Entities, Modules, phady, security_core_models_entities_modules, phady_common_entities_modelbase_ce, phady_security_core_models_entities_modules_method_entry, 0); /** * @Primary * @var integer */ zend_declare_property_null(phady_security_core_models_entities_modules_ce, SL("module_id"), ZEND_ACC_PROTECTED TSRMLS_CC); /** * @var string */ zend_declare_property_null(phady_security_core_models_entities_modules_ce, SL("name"), ZEND_ACC_PROTECTED TSRMLS_CC); /** * @var string */ zend_declare_property_null(phady_security_core_models_entities_modules_ce, SL("alias"), ZEND_ACC_PROTECTED TSRMLS_CC); /** * @var string */ zend_declare_property_null(phady_security_core_models_entities_modules_ce, SL("description"), ZEND_ACC_PROTECTED TSRMLS_CC); return SUCCESS; } PHP_METHOD(Phady_Security_Core_Models_Entities_Modules, initialize) { } /** * Physics returns the table name in the database engine * * @return string */ PHP_METHOD(Phady_Security_Core_Models_Entities_Modules, getSource) { RETURN_STRING("phd_sec_modules", 1); } /** * Initializes the class. It assigns the attributes that can be obtained and modified. */ PHP_METHOD(Phady_Security_Core_Models_Entities_Modules, init) { zval *_1, *_2 = NULL, *_3 = NULL, *_4 = NULL, *_5 = NULL, *_7; int ZEPHIR_LAST_CALL_STATUS; zephir_fcall_cache_entry *_0 = NULL, *_6 = NULL; ZEPHIR_MM_GROW(); ZEPHIR_CALL_PARENT(NULL, phady_security_core_models_entities_modules_ce, this_ptr, "init", &_0, 56); zephir_check_call_status(); _1 = zephir_fetch_nproperty_this(this_ptr, SL("_set"), PH_NOISY_CC); ZEPHIR_INIT_VAR(_2); ZVAL_STRING(_2, "module_id", ZEPHIR_TEMP_PARAM_COPY); ZEPHIR_INIT_VAR(_3); ZVAL_STRING(_3, "name", ZEPHIR_TEMP_PARAM_COPY); ZEPHIR_INIT_VAR(_4); ZVAL_STRING(_4, "alias", ZEPHIR_TEMP_PARAM_COPY); ZEPHIR_INIT_VAR(_5); ZVAL_STRING(_5, "description", ZEPHIR_TEMP_PARAM_COPY); Z_SET_ISREF_P(_1); ZEPHIR_CALL_FUNCTION(NULL, "array_push", &_6, 57, _1, _2, _3, _4, _5); zephir_check_temp_parameter(_2); zephir_check_temp_parameter(_3); zephir_check_temp_parameter(_4); zephir_check_temp_parameter(_5); Z_UNSET_ISREF_P(_1); zephir_check_call_status(); _7 = zephir_fetch_nproperty_this(this_ptr, SL("_get"), PH_NOISY_CC); ZEPHIR_INIT_NVAR(_2); ZVAL_STRING(_2, "module_id", ZEPHIR_TEMP_PARAM_COPY); ZEPHIR_INIT_NVAR(_3); ZVAL_STRING(_3, "name", ZEPHIR_TEMP_PARAM_COPY); ZEPHIR_INIT_NVAR(_4); ZVAL_STRING(_4, "alias", ZEPHIR_TEMP_PARAM_COPY); ZEPHIR_INIT_NVAR(_5); ZVAL_STRING(_5, "description", ZEPHIR_TEMP_PARAM_COPY); Z_SET_ISREF_P(_7); ZEPHIR_CALL_FUNCTION(NULL, "array_push", &_6, 57, _7, _2, _3, _4, _5); zephir_check_temp_parameter(_2); zephir_check_temp_parameter(_3); zephir_check_temp_parameter(_4); zephir_check_temp_parameter(_5); Z_UNSET_ISREF_P(_7); zephir_check_call_status(); ZEPHIR_MM_RESTORE(); }