PHP Classes

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

Recommend this page to a friend!
  Classes of Alien Fernandez   Phady Framework   ext/phady/security/core/models/entities/roles.zep.c   Download  
File: ext/phady/security/core/models/entities/roles.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: 4,171 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\Roles * * Model for Users */ ZEPHIR_INIT_CLASS(Phady_Security_Core_Models_Entities_Roles) { ZEPHIR_REGISTER_CLASS_EX(Phady\\Security\\Core\\Models\\Entities, Roles, phady, security_core_models_entities_roles, phady_common_entities_modelbase_ce, phady_security_core_models_entities_roles_method_entry, 0); /** * @Primary * @var integer */ zend_declare_property_null(phady_security_core_models_entities_roles_ce, SL("role_id"), ZEND_ACC_PROTECTED TSRMLS_CC); /** * @var string */ zend_declare_property_null(phady_security_core_models_entities_roles_ce, SL("name"), ZEND_ACC_PROTECTED TSRMLS_CC); /** * @var string */ zend_declare_property_null(phady_security_core_models_entities_roles_ce, SL("alias"), ZEND_ACC_PROTECTED TSRMLS_CC); /** * @var string */ zend_declare_property_null(phady_security_core_models_entities_roles_ce, SL("description"), ZEND_ACC_PROTECTED TSRMLS_CC); /** * @var string */ zend_declare_property_null(phady_security_core_models_entities_roles_ce, SL("role_code"), ZEND_ACC_PROTECTED TSRMLS_CC); /** * @var string */ zend_declare_property_null(phady_security_core_models_entities_roles_ce, SL("init_path"), ZEND_ACC_PROTECTED TSRMLS_CC); return SUCCESS; } PHP_METHOD(Phady_Security_Core_Models_Entities_Roles, initialize) { } /** * Physics returns the table name in the database engine * * @return string */ PHP_METHOD(Phady_Security_Core_Models_Entities_Roles, getSource) { RETURN_STRING("phd_sec_roles", 1); } /** * Initializes the class. It assigns the attributes that can be obtained and modified. */ PHP_METHOD(Phady_Security_Core_Models_Entities_Roles, init) { zval *_1, *_2 = NULL, *_3 = NULL, *_4 = NULL, *_5 = NULL, *_6 = NULL, *_7 = NULL, *_9; int ZEPHIR_LAST_CALL_STATUS; zephir_fcall_cache_entry *_0 = NULL, *_8 = NULL; ZEPHIR_MM_GROW(); ZEPHIR_CALL_PARENT(NULL, phady_security_core_models_entities_roles_ce, this_ptr, "init", &_0, 91); zephir_check_call_status(); _1 = zephir_fetch_nproperty_this(this_ptr, SL("_set"), PH_NOISY_CC); ZEPHIR_INIT_VAR(_2); ZVAL_STRING(_2, "role_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); ZEPHIR_INIT_VAR(_6); ZVAL_STRING(_6, "role_code", ZEPHIR_TEMP_PARAM_COPY); ZEPHIR_INIT_VAR(_7); ZVAL_STRING(_7, "init_path", ZEPHIR_TEMP_PARAM_COPY); Z_SET_ISREF_P(_1); ZEPHIR_CALL_FUNCTION(NULL, "array_push", &_8, 92, _1, _2, _3, _4, _5, _6, _7); zephir_check_temp_parameter(_2); zephir_check_temp_parameter(_3); zephir_check_temp_parameter(_4); zephir_check_temp_parameter(_5); zephir_check_temp_parameter(_6); zephir_check_temp_parameter(_7); Z_UNSET_ISREF_P(_1); zephir_check_call_status(); _9 = zephir_fetch_nproperty_this(this_ptr, SL("_get"), PH_NOISY_CC); ZEPHIR_INIT_NVAR(_2); ZVAL_STRING(_2, "role_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); ZEPHIR_INIT_NVAR(_6); ZVAL_STRING(_6, "role_code", ZEPHIR_TEMP_PARAM_COPY); ZEPHIR_INIT_NVAR(_7); ZVAL_STRING(_7, "init_path", ZEPHIR_TEMP_PARAM_COPY); Z_SET_ISREF_P(_9); ZEPHIR_CALL_FUNCTION(NULL, "array_push", &_8, 92, _9, _2, _3, _4, _5, _6, _7); zephir_check_temp_parameter(_2); zephir_check_temp_parameter(_3); zephir_check_temp_parameter(_4); zephir_check_temp_parameter(_5); zephir_check_temp_parameter(_6); zephir_check_temp_parameter(_7); Z_UNSET_ISREF_P(_9); zephir_check_call_status(); ZEPHIR_MM_RESTORE(); }