content
stringlengths 7
2.61M
|
---|
Ozone enhances excitabilities of pulmonary C fibers to chemical and mechanical stimuli in anesthetized rats. Acute exposure to ozone (O3) enhances pulmonary chemoreflex response to capsaicin, and an increased sensitivity of bronchopulmonary C-fiber afferent endings may be involved. The present study was aimed at determining the effect of O3 on the responses of pulmonary C fibers to chemical and mechanical stimuli. A total of 31 C fibers were studied in anesthetized, open-chest, and vagotomized rats. During control, right atrial injection of a low dose of capsaicin abruptly evoked a short and mild burst of discharge . After acute exposure to O3 (3 parts/million for 30 min), there was no significant change in arterial blood pressure, tracheal pressure, or baseline activity of C fibers. However, the stimulatory effect of the same dose of capsaicin on these fibers was markedly enhanced (6.05 +/- 0.88 impulses/s; P < 0.01) and prolonged immediately after O3 exposure, and returned toward control in 54 +/- 6 min. Similarly, the pulmonary C-fiber response to injection of a low dose of lactic acid was also elevated after O3 exposure. Furthermore, O3 exposure significantly potentiated the C-fiber response to constant-pressure (tracheal pressure = 30 cmH2O) lung inflation (control: 0.19 +/- 0.07 imp/s; after O3: 1.12 +/- 0.26 imp/s; P < 0.01). In summary, these results show that the excitabilities of pulmonary C-fiber afferents to lung inflation and injections of chemical stimulants are markedly potentiated after acute exposure to O3, suggesting a possible involvement of these afferents in the O3-induced changes in breathing pattern and chest discomfort in humans. |
from mediaimport import mediaimport
|
<gh_stars>0
#ifndef MACROS_H
#define MACROS_H
#include "defines.h"
#if DEBUG
#define SHOUT(something) (Serial.println((something)))
#else
#define SHOUT(something) ()
#endif
#define TOPIC(topic) (MQTT_ROOT_TOPIC + (topic)).c_str()
#define SENSOR_TXT(name, value, unit) (String((name)) + (value) + String((unit)))
#endif //MACROS_H |
package cz.mg.resampler.resamplers.java.scaleup;
import cz.mg.resampler.resamplers.java.Image;
import cz.mg.resampler.resamplers.java.Progress;
public interface NonuniformScaleUp extends ScaleUp {
public void scaleUpHorizontally(Image sourceImage, Image destinationImage, Progress progress) throws Exception;
public void scaleUpVertically(Image sourceImage, Image destinationImage, Progress progress) throws Exception;
public int getHorizontalProgressStepCount(int sourceImageWidth, int sourceImageHeight);
public int getVerticalProgressStepCount(int sourceImageWidth, int sourceImageHeight);
}
|
<gh_stars>1-10
// +build !ignore_autogenerated
/*
Copyright 2020 The Crossplane Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by controller-gen. DO NOT EDIT.
package v1alpha1
import (
runtime "k8s.io/apimachinery/pkg/runtime"
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Ec2TrafficMirrorSession) DeepCopyInto(out *Ec2TrafficMirrorSession) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)
in.Status.DeepCopyInto(&out.Status)
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Ec2TrafficMirrorSession.
func (in *Ec2TrafficMirrorSession) DeepCopy() *Ec2TrafficMirrorSession {
if in == nil {
return nil
}
out := new(Ec2TrafficMirrorSession)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *Ec2TrafficMirrorSession) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Ec2TrafficMirrorSessionList) DeepCopyInto(out *Ec2TrafficMirrorSessionList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]Ec2TrafficMirrorSession, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Ec2TrafficMirrorSessionList.
func (in *Ec2TrafficMirrorSessionList) DeepCopy() *Ec2TrafficMirrorSessionList {
if in == nil {
return nil
}
out := new(Ec2TrafficMirrorSessionList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *Ec2TrafficMirrorSessionList) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Ec2TrafficMirrorSessionObservation) DeepCopyInto(out *Ec2TrafficMirrorSessionObservation) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Ec2TrafficMirrorSessionObservation.
func (in *Ec2TrafficMirrorSessionObservation) DeepCopy() *Ec2TrafficMirrorSessionObservation {
if in == nil {
return nil
}
out := new(Ec2TrafficMirrorSessionObservation)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Ec2TrafficMirrorSessionParameters) DeepCopyInto(out *Ec2TrafficMirrorSessionParameters) {
*out = *in
if in.Tags != nil {
in, out := &in.Tags, &out.Tags
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Ec2TrafficMirrorSessionParameters.
func (in *Ec2TrafficMirrorSessionParameters) DeepCopy() *Ec2TrafficMirrorSessionParameters {
if in == nil {
return nil
}
out := new(Ec2TrafficMirrorSessionParameters)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Ec2TrafficMirrorSessionSpec) DeepCopyInto(out *Ec2TrafficMirrorSessionSpec) {
*out = *in
in.ResourceSpec.DeepCopyInto(&out.ResourceSpec)
in.ForProvider.DeepCopyInto(&out.ForProvider)
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Ec2TrafficMirrorSessionSpec.
func (in *Ec2TrafficMirrorSessionSpec) DeepCopy() *Ec2TrafficMirrorSessionSpec {
if in == nil {
return nil
}
out := new(Ec2TrafficMirrorSessionSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Ec2TrafficMirrorSessionStatus) DeepCopyInto(out *Ec2TrafficMirrorSessionStatus) {
*out = *in
in.ResourceStatus.DeepCopyInto(&out.ResourceStatus)
out.AtProvider = in.AtProvider
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Ec2TrafficMirrorSessionStatus.
func (in *Ec2TrafficMirrorSessionStatus) DeepCopy() *Ec2TrafficMirrorSessionStatus {
if in == nil {
return nil
}
out := new(Ec2TrafficMirrorSessionStatus)
in.DeepCopyInto(out)
return out
}
|
/**
* Handles the fading in effect of the picture (here app logo)
* in the WelcomeWindow.
*/
public void fadeTransition() {
FadeTransition fadeOut = new FadeTransition(Duration.millis(4200), appLogo);
fadeOut.setFromValue(0.0);
fadeOut.setToValue(1.0);
fadeOut.play();
} |
h, w = map(int, input().split())
a = []
for i in range(h):
a.append(str(input()))
b = '#'*(w+2)
lst = [b]
for i in range(h):
c = ['#', a[i], '#']
lst.append(''.join(c))
lst.append(b)
for i in range(h+2):
print(lst[i]) |
<filename>shelf/core/src/main/java/ch/raffael/sangria/modules/shutdown/VetoableShutdownListener.java
package ch.raffael.sangria.modules.shutdown;
import java.util.EventListener;
/**
* @author <a href="mailto:<EMAIL>"><NAME></a>
*/
public interface VetoableShutdownListener extends EventListener {
void shutdownRequested() throws ShutdownVetoException;
void shutdownVetoed(ShutdownVetoException veto);
}
|
<reponame>paullewallencom/netbeans-978-1-8495-1270-1
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.ensode.jpa;
import java.io.Serializable;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
/**
*
* @author heffel
*/
@Entity
@Table(name = "ADDRESS")
@NamedQueries({
@NamedQuery(name = "Address.findAll", query = "SELECT a FROM Address a"),
@NamedQuery(name = "Address.findByAddressId", query = "SELECT a FROM Address a WHERE a.addressId = :addressId"),
@NamedQuery(name = "Address.findByAddrLine1", query = "SELECT a FROM Address a WHERE a.addrLine1 = :addrLine1"),
@NamedQuery(name = "Address.findByAddrLine2", query = "SELECT a FROM Address a WHERE a.addrLine2 = :addrLine2"),
@NamedQuery(name = "Address.findByCity", query = "SELECT a FROM Address a WHERE a.city = :city"),
@NamedQuery(name = "Address.findByZip", query = "SELECT a FROM Address a WHERE a.zip = :zip")})
public class Address implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Basic(optional = false)
@NotNull
@Column(name = "ADDRESS_ID")
private Integer addressId;
@Size(max = 100)
@Column(name = "ADDR_LINE_1")
private String addrLine1;
@Size(max = 100)
@Column(name = "ADDR_LINE_2")
private String addrLine2;
@Size(max = 100)
@Column(name = "CITY")
private String city;
@Size(max = 5)
@Column(name = "ZIP")
private String zip;
@JoinColumn(name = "ADDRESS_TYPE_ID", referencedColumnName = "ADDRESS_TYPE_ID")
@ManyToOne
private AddressType addressType;
@JoinColumn(name = "CUSTOMER_ID", referencedColumnName = "CUSTOMER_ID")
@ManyToOne
private Customer customer;
@JoinColumn(name = "US_STATE_ID", referencedColumnName = "US_STATE_ID")
@ManyToOne
private UsState usState;
public Address() {
}
public Address(Integer addressId) {
this.addressId = addressId;
}
public Integer getAddressId() {
return addressId;
}
public void setAddressId(Integer addressId) {
this.addressId = addressId;
}
public String getAddrLine1() {
return addrLine1;
}
public void setAddrLine1(String addrLine1) {
this.addrLine1 = addrLine1;
}
public String getAddrLine2() {
return addrLine2;
}
public void setAddrLine2(String addrLine2) {
this.addrLine2 = addrLine2;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getZip() {
return zip;
}
public void setZip(String zip) {
this.zip = zip;
}
public AddressType getAddressType() {
return addressType;
}
public void setAddressType(AddressType addressType) {
this.addressType = addressType;
}
public Customer getCustomer() {
return customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
public UsState getUsState() {
return usState;
}
public void setUsState(UsState usState) {
this.usState = usState;
}
@Override
public int hashCode() {
int hash = 0;
hash += (addressId != null ? addressId.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof Address)) {
return false;
}
Address other = (Address) object;
if ((this.addressId == null && other.addressId != null) || (this.addressId != null && !this.addressId.equals(other.addressId))) {
return false;
}
return true;
}
@Override
public String toString() {
return "com.ensode.jpa.Address[ addressId=" + addressId + " ]";
}
}
|
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import { test, expect } from '@playwright/test';
test('Default', async ({ page }) => {
await page.goto('/iframe.html?id=search--default');
expect(await page.locator('jp-search').screenshot()).toMatchSnapshot(
'search-default.png'
);
});
test('With Placeholder', async ({ page }) => {
await page.goto('/iframe.html?id=search--with-placeholder');
expect(await page.locator('jp-search').screenshot()).toMatchSnapshot(
'search-with-placeholder.png'
);
});
test('With Autofocus', async ({ page }) => {
await page.goto('/iframe.html?id=search--with-autofocus');
expect(await page.locator('jp-search').screenshot()).toMatchSnapshot(
'search-with-autofocus.png'
);
});
test('With Disabled', async ({ page }) => {
await page.goto('/iframe.html?id=search--with-disabled');
expect(await page.locator('jp-search').screenshot()).toMatchSnapshot(
'search-with-disabled.png'
);
});
test('With Size', async ({ page }) => {
await page.goto('/iframe.html?id=search--with-size');
expect(await page.locator('jp-search').screenshot()).toMatchSnapshot(
'search-with-size.png'
);
});
test('With Maxlength', async ({ page }) => {
await page.goto('/iframe.html?id=search--with-max-length');
expect(await page.locator('jp-search').screenshot()).toMatchSnapshot(
'search-with-maxlength.png'
);
});
test('With Search Icon', async ({ page }) => {
await page.goto('/iframe.html?id=search--with-search-icon');
expect(await page.locator('jp-search').screenshot()).toMatchSnapshot(
'search-with-search-icon.png'
);
});
|
November 10, 2016 baylor, big 12, college football.
WACO — Former Baylor coach Art Briles announced Thursday that he was giving money and matching other donations to a local advocacy center that helps crime victims and children.
The Briles family announced the donation, saying: “First and foremost, my heart aches for all the sexual and domestic assault victims and for those that have suffered and continue to suffer.
Briles was fired from Baylor after an independent review determined that the coach believed the football team was above the rules when players were accused of sexual assault.
Briles didn’t say how much he donated. But his statement said he would match up to $8,500 made from others. He said he picked the number because it represented the 8.5 years he spent in Waco.
Briles announcement came on the same day a group of high-dollar Baylor alums spoke to about 500 people to talk about why they’re demanding the school’s board of regents be more transparent in how they dealt with the sexual assault scandal.
The regents fired Briles and president Ken Starr. Athletic director Ian McCaw was reprimanded. He resigned within a week.
John Eddie Williams, who has given “tens and tens of millions” to Baylor and its athletic department, said at Thursday’s meeting that he could reconsider future donations if the school doesn’t revamp its board of regents. The field at McLane Stadium is named for Williams.
Meanwhile, Drayton McLane, whose name is on the football stadium, acknowledged he still would be making donations to the school. Earlier this week, he gave Baylor $18 million for its nursing school. |
WASHINGTON – The September 14 primary elections in seven states and the District of Columbia brought almost the end of the primary season – with only Hawaii’s Sept. 18 primary yet to go – and the start of the last crucial six week countdown to the Nov 2 midterm election, with control of the House and Senate hanging in the balance.
In Maryland‘s primary, first-term U.S. Representative, Frank Kratovil, a Democrat, won his party’s nomination for a second term. He faces the rabid Republican extremist, Dr. Andrew Harris, in the Nov. 2 midterm election. Harris, an anesthesiologist, opposes a woman’s right to an abortion even if pregnancy threatens her life. As state senator, Harris has gained a reputation for casting the lone vote, taking positions so extreme he has been abandoned even by his fellow Republicans.
Nevertheless, the Republican Party is pouring in money to defeat Kratovil, one of three dozen Democrats in conservative, traditionally Republican districts carried into office in 2008 on President Obama’s coat tails.
With strong labor support, Kratovil defeated Harris in 2008, but by under one percent of the vote. He joined the “Blue Dog” Democrats in voting against the first version of the Obama economic stimulus although he reversed course and voted for final passage. He voted against the health care reform bill.
Labor and other progressive forces vow to defeat Harris again by working to reelect Kratovil, pointing to pro-labor votes he cast such as support for Lily Ledbetter in her plea against flagrant wage discrimination in Alabama.
In the Washington, D.C., primary, Mayor Adrian Fenty was defeated by D.C. Council Chairman, Vincent Gray. Fenty was dogged by charges of cronyism and his abrasive style of governing.
Fenty stirred anger among union school teachers when he supported School Superintendent Michelle Rhee’s arbitrary firing of 241 classroom teachers this past summer. Fenty told reporters that firing the teachers “puts us one step closer” to insuring an effective teacher in every classroom. The Washington Teachers Union (WTU) charged that Rhee violated due process in refusing to consult with the fired teachers, the union, or the Board of Education before carrying out the mass firing.
In New Hampshire‘s primary it appears that Republican former Attorney General, Kelly Ayotte has squeezed out a narrow victory over Tea Party Express candidate, Ovide Lamontagne for the GOP Senate nomination. Ayotte will face Rep. Paul Hodes, the Democratic candidate in the race to fill the seat of Republican Sen. Judd Gregg who is retiring.
Also in New Hampshire, Democratic Rep. Carol Shea Porter, who ran unopposed in the primary, will face Manchester Mayor, Frank Guinta in the Nov. 2 election. Republicans see this as one of the 39 seats they must pick up to win back majority control in the House.
In Rhode Island‘s Democratic primary race to replace Rep. Patrick Kennedy who is retiring, Providence Mayor David Cicilline won with 37 percent of the vote compared to 21 percent for his nearest rival David Segal, a consumer rights attorney.
And in New York State‘s primary, Carl Paladino, backed by the Tea Party Express won the Republican nomination for New York governor, over GOP favorite, Rick Lazio. It was another upset victories by tea party-backed candidates who defeated GOP favored machine candidates, several of them incumbents.
Alaska‘s incumbent Republican Senator, Lisa Murkowski, was picked off last month by Joe Miller, in the primary. Miller is a raving extremist backed by the tea partiers. At this writing, Murkowski is deciding whether to run as a write-in candidate. She charges that the Alaska primary was “hijacked by the Tea Party Express, an outside extremist group.”
She added that the Tea Party Express used a California front-group to pour $600,000 into Miller’s coffers. The Koch brothers, owners of Koch Oil, and longtime moneybags for the libertarian Cato Institute, have poured millions into Tea Party Express.
Some Democratic Party strategists say the defeat of more mainstream Republican candidates by tea party extremists improves the Democrats chances of holding on to the majority in the Senate and House in November.
This could be a dangerous illusion. Right now, the Rasmussen Poll shows Senate Majority Leader Harry Reid and his tea party opponent, Sharron Angle, running 48 percent to 48 percent among Nevada voters.
Angle is so extreme she called openly for privatizing Social Security, abolishing the Department of Education, the Environmental Protection Agency, IRS, and the Federal Reserve. She called the $20 billion Gulf Coast relief fund secured from BP by President Obama a “slush fund.” She even advised 13-year old girls who become pregnant by the horrific crimes of rape or incest to avoid an abortion and “make a lemon situation into lemonade.” |
import Users, { Crate } from "../../data/schemas/Users";
import genKey from "../../modules/genKey";
import { Command } from "../../structures/Command";
import { Embed } from "../../structures/Embed";
/**
* Developer - Saige#8157
* Website: https://helper.solar
* Github: https://github.com/Saigeie
* 2022
*/
export default new Command({
name: `makecrate`,
description: `👀 | Make a crate and give it to someone`,
owner: true,
exampleUsage: `/makecrate [user] [type] [name] [description]`,
category: "owner",
options: [
{
type: "USER",
name: "user",
description: `👀 | The user you wish to give the crate too`,
required: true,
},
{
type: "STRING",
name: "type",
description: `👀 | The crate type`,
required: true,
choices: [
{ name: `Unobtainable`, value: "unobtainable" },
{ name: `Legendary`, value: "legendary" },
{ name: `Epic`, value: "epic" },
{ name: `Rare`, value: "rare" },
{ name: `Uncommon`, value: "uncommon" },
{ name: `Common`, value: "common" },
],
},
{
type: "STRING",
name: "name",
description: `👀 | The crate name`,
required: true,
},
{
type: "STRING",
name: "description",
description: "👀 | The crate description",
required: false,
},
],
run: async ({ interaction, args, client }) => {
const userId = args.getUser("user");
const type = args.getString("type") as "Common" | "Uncommon" | "Rare" | "Epic" | "Legendary" | "Unobtainable";
const name = args.getString("name");
const description = args.getString("description") || "No crate description!"
let userData = await Users.findOne({ userId: userId.id })
if (!userData) await Users.create({ userId: userId.id });
const id = genKey()
const crate: Crate = {
type: type,
name: name,
description: description,
obtained: Date.now(),
gifted: true,
id: id
}
await Users.findOneAndUpdate(
{ userId: userId.id },
{
$push: {
crates: crate,
},
}
);
console.log(crate)
interaction.reply({
ephemeral: true,
embeds: [
new Embed({
title: `Crate has been made!`,
description: `Created crate has been added too <@${userId.id}>!\n\n**Crate**:\n\`\`\`js\n{\n type: "${crate.type}"\n name: "${crate.name}"\n obtained: ${crate.obtained}\n gifted: ${crate.gifted}\n description: ${crate.description}\n ID: "${id}" \n}\n\`\`\``,
}),
],
});
},
});
|
(Invited) Non-Conventional, Multimodal Strategies to Create Synergistic Effects on Electrode-Electrolyte Interphase Stabilities in Lithium-Ion Batteries Ni- or Mn-rich cathode materials have attracted great interest for electric vehicle (EV) applications due to their high gravimetric and volumetric energy densities and low- or cobalt-free compositions. For example, Ni-rich LiNi1-xCox/2Mnx/2O2 (NMC) layered cathodes can deliver > 200 mAh/g when they operate at above 4.3 Vvs.Li. Cobalt-free LiNi0.5Mn1.5O4 (LNMO) spinel operates at around 4.75 Vvs.Li and delivers an excellent rate capability due to three-dimensional Li-diffusion pathways in its lattice. However, due to lack of high-voltage stabilities of conventional, carbonate-based electrolytes, such high-voltage operation (> 4.3 Vvs.Li) led to unwanted electrolyte oxidation and simultaneous parasitic reactions occurring at CEI. Different types of cathodes have their own failure mechanisms which are often associated with side reactions occurring at solid-electrolyte interphase (SEI) on graphite anodes. This was possible because the reaction by-products from CEI could migrate and attack SEI layers on anodes. To address the high-voltage related issues, various approaches have been proposed such as tuning chemical compositions of cathode active materials, surface modification of cathodes or anodes, and stabilizing the CEI or SEI using electrolyte additives. In literature, however, there was no single solution that can resolve all the complex issues occurring in the high-voltage battery cells. For example, coated layers on active materials are prone to fail during long-term cycling due to mechanical failure (e.g., crack and pulverization) of active materials. In addition, not only active materials but carbon conductors (e.g., acetylene black) inside a cathode leads to the electrolyte oxidation, prompted by its high electronic conductivity and large surface area. Considering that such parasitic reactions originate from CEI and propagate to anode SEI, there is a dire need of multimodal strategies that can create synergistic effect on stabilizing the electrode-electrolyte interphases in cell level. In this presentation, I will introduce non-conventional strategies that can effectively enhance electrode-electrolyte interphase stabilities and improve full-cell (i.e., using graphite anodes) performances. First, formation of self-healing CEI on cathode active materials will be demonstrated. The interface of LNMO spinel oxide will be passivated by Ti-enriched shell via sacrificial transition metal dissolutions and suppress the side reactions occurring at CEI. Second, a strategy for passivating both cathode active materials and carbon black conductor by using functional binders will be demonstrated. Since the binder coating will be performed in-situ during a slurry preparation, no extra process will be required while implementing this approach to a cell manufacturing. Finally, solid-electrolyte implemented NMC or LNMO cathodes will be demonstrated as an effective approach to stabilize the high-voltage performance by offering good Li-ion conduction pathways at CEI layer. Improvement mechanism of each approach will be also presented based on physical and electrochemical characterization data. Electrochemical impedance spectroscopy (EIS) revealed a suppression of CEI interfacial resistance during cycling, suggesting the enhanced stability of the multifunctional CEI. Various microscopy and spectroscopy data acquired from cycle-aged CEI and graphite SEI will be corelated to the cell performance data and identify the CEI property-performance relationship. These unique multifunction CEI strategies will be applicable to various cathode materials for the next-generation Li-ion batteries. Figure 1 |
package io.smallrye.graphql.execution;
import static io.smallrye.graphql.SmallRyeGraphQLServerLogging.log;
import java.util.*;
import java.util.concurrent.atomic.AtomicLong;
import javax.json.JsonObject;
import org.dataloader.BatchLoaderWithContext;
import org.dataloader.DataLoader;
import org.dataloader.DataLoaderOptions;
import org.dataloader.DataLoaderRegistry;
import graphql.ExecutionInput;
import graphql.ExecutionInput.Builder;
import graphql.ExecutionResult;
import graphql.GraphQL;
import graphql.GraphQLContext;
import graphql.execution.ExecutionId;
import graphql.execution.SubscriptionExecutionStrategy;
import graphql.schema.GraphQLSchema;
import io.smallrye.graphql.api.Context;
import io.smallrye.graphql.bootstrap.DataFetcherFactory;
import io.smallrye.graphql.execution.context.SmallRyeBatchLoaderContextProvider;
import io.smallrye.graphql.execution.context.SmallRyeContext;
import io.smallrye.graphql.execution.datafetcher.helper.BatchLoaderHelper;
import io.smallrye.graphql.execution.error.ExceptionHandler;
import io.smallrye.graphql.execution.event.EventEmitter;
import io.smallrye.graphql.schema.model.Operation;
import io.smallrye.graphql.spi.config.Config;
import io.smallrye.graphql.spi.config.LogPayloadOption;
/**
* Executing the GraphQL request
*
* @author <NAME> (<EMAIL>)
*/
public class ExecutionService {
private final String executionIdPrefix;
private final AtomicLong executionId = new AtomicLong();
private final GraphQLSchema graphQLSchema;
private final BatchLoaderHelper batchLoaderHelper = new BatchLoaderHelper();
private final DataFetcherFactory dataFetcherFactory = new DataFetcherFactory();
private final List<Operation> batchOperations;
private final EventEmitter eventEmitter = EventEmitter.getInstance();
private GraphQL graphQL;
private final boolean hasSubscription;
private final QueryCache queryCache;
private final LogPayloadOption payloadOption;
public ExecutionService(GraphQLSchema graphQLSchema, List<Operation> batchOperations,
boolean hasSubscription) {
this.graphQLSchema = graphQLSchema;
this.batchOperations = batchOperations;
// use schema's hash as prefix to differentiate between multiple apps
this.executionIdPrefix = Integer.toString(Objects.hashCode(graphQLSchema));
this.hasSubscription = hasSubscription;
this.queryCache = new QueryCache();
Config config = Config.get();
this.payloadOption = config.logPayload();
}
public ExecutionResponse execute(JsonObject jsonInput) {
SmallRyeContext context = new SmallRyeContext(jsonInput);
// ExecutionId
ExecutionId finalExecutionId = ExecutionId.from(executionIdPrefix + executionId.getAndIncrement());
try {
String query = context.getQuery();
Optional<Map<String, Object>> variables = context.getVariables();
if (query == null || query.isEmpty()) {
throw new RuntimeException("Query can not be null");
}
if (payloadOption.equals(LogPayloadOption.queryOnly)) {
log.payloadIn(query);
} else if (payloadOption.equals(LogPayloadOption.queryAndVariables)) {
log.payloadIn(query);
log.payloadIn(variables.toString());
}
GraphQL g = getGraphQL();
if (g != null) {
// Query
Builder executionBuilder = ExecutionInput.newExecutionInput()
.query(query)
.executionId(finalExecutionId);
// Variables
context.getVariables().ifPresent(executionBuilder::variables);
// Operation name
context.getOperationName().ifPresent(executionBuilder::operationName);
// Context
executionBuilder.context(toGraphQLContext(context));
// DataLoaders
if (batchOperations != null && !batchOperations.isEmpty()) {
DataLoaderRegistry dataLoaderRegistry = getDataLoaderRegistry(batchOperations);
executionBuilder.dataLoaderRegistry(dataLoaderRegistry);
}
ExecutionInput executionInput = executionBuilder.build();
// Update context with execution data
context = context.withDataFromExecution(executionInput, queryCache);
((GraphQLContext) executionInput.getContext()).put("context", context);
// Notify before
eventEmitter.fireBeforeExecute(context);
// Execute
ExecutionResult executionResult = g.execute(executionInput);
// Notify after
eventEmitter.fireAfterExecute(context);
ExecutionResponse executionResponse = new ExecutionResponse(executionResult);
if (!payloadOption.equals(LogPayloadOption.off)) {
log.payloadOut(executionResponse.toString());
}
return executionResponse;
} else {
log.noGraphQLMethodsFound();
return null;
}
} catch (Throwable t) {
eventEmitter.fireOnExecuteError(finalExecutionId.toString(), t);
throw t; // TODO: can I remove that?
}
}
private <K, T> DataLoaderRegistry getDataLoaderRegistry(List<Operation> operations) {
DataLoaderRegistry dataLoaderRegistry = new DataLoaderRegistry();
for (Operation operation : operations) {
BatchLoaderWithContext<K, T> batchLoader = dataFetcherFactory.getSourceBatchLoader(operation);
SmallRyeBatchLoaderContextProvider ctxProvider = new SmallRyeBatchLoaderContextProvider();
DataLoaderOptions options = DataLoaderOptions.newOptions()
.setBatchLoaderContextProvider(ctxProvider);
DataLoader<K, T> dataLoader = DataLoader.newDataLoader(batchLoader, options);
ctxProvider.setDataLoader(dataLoader);
dataLoaderRegistry.register(batchLoaderHelper.getName(operation), dataLoader);
}
return dataLoaderRegistry;
}
private GraphQLContext toGraphQLContext(Context context) {
GraphQLContext.Builder builder = GraphQLContext.newContext();
builder = builder.of("context", context);
return builder.build();
}
private GraphQL getGraphQL() {
if (this.graphQL == null) {
if (graphQLSchema != null) {
GraphQL.Builder graphqlBuilder = GraphQL.newGraphQL(graphQLSchema);
graphqlBuilder = graphqlBuilder.defaultDataFetcherExceptionHandler(new ExceptionHandler());
graphqlBuilder = graphqlBuilder.instrumentation(queryCache);
graphqlBuilder = graphqlBuilder.preparsedDocumentProvider(queryCache);
if (hasSubscription) {
graphqlBuilder = graphqlBuilder.subscriptionExecutionStrategy(new SubscriptionExecutionStrategy());
}
// Allow custom extension
graphqlBuilder = eventEmitter.fireBeforeGraphQLBuild(graphqlBuilder);
this.graphQL = graphqlBuilder.build();
} else {
log.noGraphQLMethodsFound();
}
}
return this.graphQL;
}
}
|
I was doing what everyone does with their phones when they’re bored – refreshing social media feeds to the point where minutes turn to hours and suddenly it’s 3am and you’re eating cereal – when I saw Chester Bennington’s name trending. I scanned for facts hoping that his reported suicide was another sick example of fake news being spread on social media.
Male suicide: Gender should not be a death sentence | Simon Gunning Read more
Bennington took his own life just months after his close friend Chris Cornell of the band Soundgarden died by suicide, and I’m sure it’s no coincidence that it also happened to be Cornell’s birthday when Bennington was found dead at his home in California. Bennington’s death prompted an outpouring of posts from fans online: many of them accounts by people whose lives were touched by his lyrics, his humanity and his passion.
They swept me back in time to a place in my past that I’d happily forget. Five years ago, I was at the tail end of being bed-bound for nine months and I’d lost all sense of rationality. My memory of this period is patchy and blurred but my severe depression and obsessive-compulsive disorder (OCD) had deteriorated and I was suicidal. I was trapped by my mind, constantly listening and falling prey to lie after lie, following the thoughts as far down as I possibly could, engulfed by their ever-growing shadow. When you’re mentally ill, “normality” becomes meaningless and the world reflects the distorted and warped version of reality you project through bloodshot eyes.
This situation became so unmanageable that my father also experienced a breakdown. He couldn’t bear to see his son, his only child, wasting away in front of him. With tears streaming down his face, unable to hug me because my OCD prevented me from touching anyone or anything, he asked if it wouldn’t be better if he ended both of our lives. He had run out of hope and was desperate for an end to my pain and suffering, as well as his own. I can’t even begin to fathom what he must have been going through as a parent; that he even briefly imagined that a suicide pact with his child was the only answer, fills me with overwhelming sadness.
Suicide is the biggest killer of men in Britain between the ages of 20 and 50, but we seem only to talk about it when famous men die. When my father’s friend – a trained counsellor who had a loving family and caring mates – stepped off the edge of a platform and took his own life, there was no outcry. OK he wasn’t famous, so no hashtags, no retweets, no vigils, memorials or concerts. But more importantly, nobody seemed to be asking how someone who had a seemingly great support network could wind up on the platform’s edge. And while it’s progress that we talk about male suicide when the Robin Williamses or the Chester Benningtons of this world take their own lives, if we don’t carry on the conversation, if the hashtags only last a day or two, then I think we’re failing. We need to open the conversation for everyone and retrain the way we all think about suicide.
We’re being told to do an awful lot of waiting when we frankly don’t have much time to waste
Men who speak up about depression or illness and talk about what’s going on in their heads are usually the exceptions. But a lot of the blame for the silence lies with us as more broadly as a society. Online, behind the comfort of a screen, people will say that it’s OK for young men to cry – it’s OK not to be OK seems to be the buzz phrase of late – but when it comes to listening to men or giving them practical help, the support is non-existent. Aside from the Samaritans and Calm , I can’t think of anywhere you can go to seek urgent help when you’re feeling suicidal without becoming caught up in the NHS conveyor belt of woe and misery. I’ve been on the seemingly endless waiting lists, I’ve sat in dreary GP waiting rooms and been told that “a place in a support group is waiting for me”. We’re being told to do an awful lot of waiting when we frankly don’t have much time to waste. What’s the point in telling men it’s OK not to be OK if we fail to lift them out of the fog?
In my case, I now know that talking with my father about our joint experience of a life event that was truly horrific will be the beginning of a recovery process and the best way to start healing the intangible wounds.
Only months before taking his own life, Chester Bennington gave an interview in which he was clearly articulating that he was suffering, that he needed help. However, no one seemed to notice until it was too late.
The bold new fight to eradicate suicide Read more
Where are we going wrong? Do we fear seeing the men in our lives as weak and vulnerable? Is the problem the ongoing taboo and stigma attached to discussing suicide? Is it that human compassion is sometimes so absent that people complain about their train being late rather than trying to imagine how hopeless, desperate and isolated the person on the tracks must have felt before they jumped? I think it’s a sorrowful cocktail of all the above. Yet one thing I know from my bones, is that everyone has a duty to talk to the men in their lives and let them know that you will listen. Let them know that talking about suicidal feelings isn’t cowardly. Talking about your feelings is an incredibly brave thing to do. Let them know there is always hope, there is always another way.
In the UK and Ireland, the Samaritans can be contacted on 116 123. Papyrus are contactable on 0800 068 41 41 or by texting 07786 209 697, or emailing pat@papyrus-uk.org. In the US, the National Suicide Prevention Hotline is 1-800-273-8255. In Australia, the crisis support service Lifeline is on 13 11 14. Hotlines in other countries can be found here.
• Richard Taylor is chair of the youth advisory panel at OCD Action (voluntary) |
Trump added: “President Obama, you are a complete and total disaster, but you have a chance to do something great and important: STOP THE FLIGHTS!” That was a reference to what appeared to be the GOP strategy at the time: Let Ebola destroy Africa and much of the rest of the world, but try to seal off the United States from infection.
In the 2014 elections, Republican candidates ran hundreds of ads denouncing the Obama administration’s handling of Ebola.
Meanwhile, Gov. Chris Christie of New Jersey forcibly confined Kaci Hickox, a nurse returning from West Africa, as she passed through Newark’s airport on her way to Maine. By quarantining her in a tent though she tested negative for Ebola, he complicated initiatives to send health workers to fight the disease in Africa.
In contrast, Obama’s approach was spectacularly successful. With crucial support from Britain and France, and heroic efforts by groups such as Doctors Without Borders and Samaritan’s Purse, Obama deployed troops to West Africa and was able to pretty much extinguish the virus there, averting a global humanitarian and economic catastrophe.
The Centers for Disease Control and Prevention had calculated that without an intervention there might be 1.4 million cases of Ebola in Liberia and Sierra Leone by January 2015. From there it could have catapulted around the world, killing millions, entering the United States, devastating the global economy and becoming impossible to eradicate in some places.
It’s tragic that 11,300 West Africans died from Ebola, but the toll would have been incomparably higher – in Africa and in America – if not for Obama’s actions.
Hey, Trump, do you still think that Obama should resign for his handling of Ebola?
All of that is worth reviewing because congressional Republicans are again trying to block a sensible effort to address a public health crisis – this time a Zika virus outbreak that is steadily moving to the continental U.S., bringing with it calamitous birth defects.
In February, Obama urgently requested more than $1.8 billion to address Zika, and Congress since then has done nothing but talk. Republicans have protested that the administration doesn’t need the money, that they have questions that haven’t been answered or that the request is vague. These objections are absurd.
We don’t know how badly Zika will hit the U.S. But the first American has just died of it, and federal health professionals are debating whether to counsel women in Zika areas to avoid pregnancy – and to me, that sounds serious.
The larger mistake is that budget cutters have systematically cut public health budgets that address Zika, Ebola and other ailments. The best bargain in government may be public health, and Republicans have slashed funding for it while Democrats have shrugged. |
'''
Animation
=========
:class:`Animation` and :class:`AnimationTransition` are used to animate
:class:`~kivy.uix.widget.Widget` properties. You must specify at least a
property name and target value. To use an Animation, follow these steps:
* Setup an Animation object
* Use the Animation object on a Widget
Simple animation
----------------
To animate a Widget's x or y position, simply specify the target x/y values
where you want the widget positioned at the end of the animation::
anim = Animation(x=100, y=100)
anim.start(widget)
The animation will last for 1 second unless :attr:`duration` is specified.
When anim.start() is called, the Widget will move smoothly from the current
x/y position to (100, 100).
Multiple properties and transitions
-----------------------------------
You can animate multiple properties and use built-in or custom transition
functions using :attr:`transition` (or the `t=` shortcut). For example,
to animate the position and size using the 'in_quad' transition::
anim = Animation(x=50, size=(80, 80), t='in_quad')
anim.start(widget)
Note that the `t=` parameter can be the string name of a method in the
:class:`AnimationTransition` class or your own animation function.
Sequential animation
--------------------
To join animations sequentially, use the '+' operator. The following example
will animate to x=50 over 1 second, then animate the size to (80, 80) over the
next two seconds::
anim = Animation(x=50) + Animation(size=(80, 80), duration=2.)
anim.start(widget)
Parallel animation
------------------
To join animations in parallel, use the '&' operator. The following example
will animate the position to (80, 10) over 1 second, whilst in parallel
animating the size to (800, 800)::
anim = Animation(pos=(80, 10))
anim &= Animation(size=(800, 800), duration=2.)
anim.start(widget)
Repeating animation
-------------------
.. versionadded:: 1.8.0
.. note::
This is currently only implemented for 'Sequence' animations.
To set an animation to repeat, simply set the :attr:`Sequence.repeat`
property to `True`::
anim = Animation(...) + Animation(...)
anim.repeat = True
anim.start(widget)
For flow control of animations such as stopping and cancelling, use the methods
already in place in the animation module.
'''
__all__ = ('Animation', 'AnimationTransition')
from math import sqrt, cos, sin, pi
from kivy.event import EventDispatcher
from kivy.clock import Clock
from kivy.compat import string_types, iterkeys
class Animation(EventDispatcher):
'''Create an animation definition that can be used to animate a Widget.
:Parameters:
`duration` or `d`: float, defaults to 1.
Duration of the animation, in seconds.
`transition` or `t`: str or func
Transition function for animate properties. It can be the name of a
method from :class:`AnimationTransition`.
`step` or `s`: float
Step in milliseconds of the animation. Defaults to 1 / 60.
:Events:
`on_start`: widget
Fired when the animation is started on a widget.
`on_complete`: widget
Fired when the animation is completed or stopped on a widget.
`on_progress`: widget, progression
Fired when the progression of the animation is changing.
.. versionchanged:: 1.4.0
Added s/step parameter.
'''
_instances = set()
__events__ = ('on_start', 'on_progress', 'on_complete')
def __init__(self, **kw):
super(Animation, self).__init__(**kw)
# Initialize
self._clock_installed = False
self._duration = kw.get('d', kw.get('duration', 1.))
self._transition = kw.get('t', kw.get('transition', 'linear'))
self._step = kw.get('s', kw.get('step', 1. / 60.))
if isinstance(self._transition, string_types):
self._transition = getattr(AnimationTransition, self._transition)
for key in ('d', 't', 's', 'step', 'duration', 'transition'):
kw.pop(key, None)
self._animated_properties = kw
self._widgets = {}
@property
def duration(self):
'''Return the duration of the animation.
'''
return self._duration
@property
def transition(self):
'''Return the transition of the animation.
'''
return self._transition
@property
def animated_properties(self):
'''Return the properties used to animate.
'''
return self._animated_properties
@staticmethod
def stop_all(widget, *largs):
'''Stop all animations that concern a specific widget / list of
properties.
Example::
anim = Animation(x=50)
anim.start(widget)
# and later
Animation.stop_all(widget, 'x')
'''
if len(largs):
for animation in list(Animation._instances):
for x in largs:
animation.stop_property(widget, x)
else:
for animation in set(Animation._instances):
animation.stop(widget)
@staticmethod
def cancel_all(widget, *largs):
'''Cancel all animations that concern a specific widget / list of
properties. See :attr:`cancel`.
Example::
anim = Animation(x=50)
anim.start(widget)
# and later
Animation.cancel_all(widget, 'x')
.. versionadded:: 1.4.0
'''
if len(largs):
for animation in list(Animation._instances):
for x in largs:
animation.cancel_property(widget, x)
else:
for animation in set(Animation._instances):
animation.cancel(widget)
def start(self, widget):
'''Start the animation on a widget.
'''
self.stop(widget)
self._initialize(widget)
self._register()
self.dispatch('on_start', widget)
def stop(self, widget):
'''Stop the animation previously applied to a widget, triggering the
`on_complete` event.'''
props = self._widgets.pop(widget.uid, None)
if props:
self.dispatch('on_complete', widget)
self.cancel(widget)
def cancel(self, widget):
'''Cancel the animation previously applied to a widget. Same
effect as :attr:`stop`, except the `on_complete` event will
*not* be triggered!
.. versionadded:: 1.4.0
'''
self._widgets.pop(widget.uid, None)
self._clock_uninstall()
if not self._widgets:
self._unregister()
def stop_property(self, widget, prop):
'''Even if an animation is running, remove a property. It will not be
animated futher. If it was the only/last property being animated,
the animation will be stopped (see :attr:`stop`).
'''
props = self._widgets.get(widget.uid, None)
if not props:
return
props['properties'].pop(prop, None)
# no more properties to animation ? kill the animation.
if not props['properties']:
self.stop(widget)
def cancel_property(self, widget, prop):
'''Even if an animation is running, remove a property. It will not be
animated further. If it was the only/last property being animated,
the animation will be canceled (see :attr:`cancel`)
.. versionadded:: 1.4.0
'''
props = self._widgets.get(widget.uid, None)
if not props:
return
props['properties'].pop(prop, None)
# no more properties to animation ? kill the animation.
if not props['properties']:
self.cancel(widget)
def have_properties_to_animate(self, widget):
'''Return True if a widget still has properties to animate.
.. versionadded:: 1.8.0
'''
props = self._widgets.get(widget.uid, None)
if props and props['properties']:
return True
#
# Private
#
def _register(self):
Animation._instances.add(self)
def _unregister(self):
if self in Animation._instances:
Animation._instances.remove(self)
def _initialize(self, widget):
d = self._widgets[widget.uid] = {
'widget': widget,
'properties': {},
'time': None}
# get current values
p = d['properties']
for key, value in self._animated_properties.items():
p[key] = (getattr(widget, key), value)
# install clock
self._clock_install()
def _clock_install(self):
if self._clock_installed:
return
Clock.schedule_interval(self._update, self._step)
self._clock_installed = True
def _clock_uninstall(self):
if self._widgets or not self._clock_installed:
return
self._clock_installed = False
Clock.unschedule(self._update)
def _update(self, dt):
widgets = self._widgets
transition = self._transition
calculate = self._calculate
for uid in list(widgets.keys())[:]:
anim = widgets[uid]
widget = anim['widget']
if anim['time'] is None:
anim['time'] = 0.
else:
anim['time'] += dt
# calculate progression
if self._duration:
progress = min(1., anim['time'] / self._duration)
else:
progress = 1
t = transition(progress)
# apply progression on widget
for key, values in anim['properties'].items():
a, b = values
value = calculate(a, b, t)
setattr(widget, key, value)
self.dispatch('on_progress', widget, progress)
# time to stop ?
if progress >= 1.:
self.stop(widget)
def _calculate(self, a, b, t):
_calculate = self._calculate
if isinstance(a, list) or isinstance(a, tuple):
if isinstance(a, list):
tp = list
else:
tp = tuple
return tp([_calculate(a[x], b[x], t) for x in range(len(a))])
elif isinstance(a, dict):
d = {}
for x in iterkeys(a):
if x not in b:
# User requested to animate only part of the dict.
# Copy the rest
d[x] = a[x]
else:
d[x] = _calculate(a[x], b[x], t)
return d
else:
return (a * (1. - t)) + (b * t)
#
# Default handlers
#
def on_start(self, widget):
pass
def on_progress(self, widget, progress):
pass
def on_complete(self, widget):
pass
def __add__(self, animation):
return Sequence(self, animation)
def __and__(self, animation):
return Parallel(self, animation)
class Sequence(Animation):
def __init__(self, anim1, anim2):
super(Sequence, self).__init__()
#: Repeat the sequence. See 'Repeating animation' in the header
#: documentation.
self.repeat = False
self.anim1 = anim1
self.anim2 = anim2
self.anim1.bind(on_start=self.on_anim1_start,
on_complete=self.on_anim1_complete,
on_progress=self.on_anim1_progress)
self.anim2.bind(on_complete=self.on_anim2_complete,
on_progress=self.on_anim2_progress)
@property
def duration(self):
return self.anim1.duration + self.anim2.duration
def start(self, widget):
self.stop(widget)
self._widgets[widget.uid] = True
self._register()
self.anim1.start(widget)
def stop(self, widget):
self.anim1.stop(widget)
self.anim2.stop(widget)
props = self._widgets.pop(widget.uid, None)
if props:
self.dispatch('on_complete', widget)
super(Sequence, self).cancel(widget)
def stop_property(self, widget, prop):
self.anim1.stop_property(widget, prop)
self.anim2.stop_property(widget, prop)
if (not self.anim1.have_properties_to_animate(widget) and
not self.anim2.have_properties_to_animate(widget)):
self.stop(widget)
def cancel(self, widget):
self.anim1.cancel(widget)
self.anim2.cancel(widget)
super(Sequence, self).cancel(widget)
def on_anim1_start(self, instance, widget):
self.dispatch('on_start', widget)
def on_anim1_complete(self, instance, widget):
self.anim2.start(widget)
def on_anim1_progress(self, instance, widget, progress):
self.dispatch('on_progress', widget, progress / 2.)
def on_anim2_complete(self, instance, widget):
'''Repeating logic used with boolean variable "repeat".
.. versionadded:: 1.7.1
'''
if self.repeat:
self.anim1.start(widget)
else:
self.dispatch('on_complete', widget)
def on_anim2_progress(self, instance, widget, progress):
self.dispatch('on_progress', widget, .5 + progress / 2.)
class Parallel(Animation):
def __init__(self, anim1, anim2):
super(Parallel, self).__init__()
self.anim1 = anim1
self.anim2 = anim2
self.anim1.bind(on_complete=self.on_anim_complete)
self.anim2.bind(on_complete=self.on_anim_complete)
@property
def duration(self):
return max(self.anim1.duration, self.anim2.duration)
def start(self, widget):
self.stop(widget)
self.anim1.start(widget)
self.anim2.start(widget)
self._widgets[widget.uid] = {'complete': 0}
self._register()
self.dispatch('on_start', widget)
def stop(self, widget):
self.anim1.stop(widget)
self.anim2.stop(widget)
props = self._widgets.pop(widget.uid, None)
if props:
self.dispatch('on_complete', widget)
super(Parallel, self).cancel(widget)
def stop_property(self, widget, prop):
self.anim1.stop_property(widget, prop)
self.anim2.stop_property(widget, prop)
if (not self.anim1.have_properties_to_animate(widget) and
not self.anim2.have_properties_to_animate(widget)):
self.stop(widget)
def cancel(self, widget):
self.anim1.cancel(widget)
self.anim2.cancel(widget)
super(Parallel, self).cancel(widget)
def on_anim_complete(self, instance, widget):
self._widgets[widget.uid]['complete'] += 1
if self._widgets[widget.uid]['complete'] == 2:
self.stop(widget)
class AnimationTransition(object):
'''Collection of animation functions to be used with the Animation object.
Easing Functions ported to Kivy from the Clutter Project
http://www.clutter-project.org/docs/clutter/stable/ClutterAlpha.html
The `progress` parameter in each animation function is in the range 0-1.
'''
@staticmethod
def linear(progress):
'''.. image:: images/anim_linear.png'''
return progress
@staticmethod
def in_quad(progress):
'''.. image:: images/anim_in_quad.png
'''
return progress * progress
@staticmethod
def out_quad(progress):
'''.. image:: images/anim_out_quad.png
'''
return -1.0 * progress * (progress - 2.0)
@staticmethod
def in_out_quad(progress):
'''.. image:: images/anim_in_out_quad.png
'''
p = progress * 2
if p < 1:
return 0.5 * p * p
p -= 1.0
return -0.5 * (p * (p - 2.0) - 1.0)
@staticmethod
def in_cubic(progress):
'''.. image:: images/anim_in_cubic.png
'''
return progress * progress * progress
@staticmethod
def out_cubic(progress):
'''.. image:: images/anim_out_cubic.png
'''
p = progress - 1.0
return p * p * p + 1.0
@staticmethod
def in_out_cubic(progress):
'''.. image:: images/anim_in_out_cubic.png
'''
p = progress * 2
if p < 1:
return 0.5 * p * p * p
p -= 2
return 0.5 * (p * p * p + 2.0)
@staticmethod
def in_quart(progress):
'''.. image:: images/anim_in_quart.png
'''
return progress * progress * progress * progress
@staticmethod
def out_quart(progress):
'''.. image:: images/anim_out_quart.png
'''
p = progress - 1.0
return -1.0 * (p * p * p * p - 1.0)
@staticmethod
def in_out_quart(progress):
'''.. image:: images/anim_in_out_quart.png
'''
p = progress * 2
if p < 1:
return 0.5 * p * p * p * p
p -= 2
return -0.5 * (p * p * p * p - 2.0)
@staticmethod
def in_quint(progress):
'''.. image:: images/anim_in_quint.png
'''
return progress * progress * progress * progress * progress
@staticmethod
def out_quint(progress):
'''.. image:: images/anim_out_quint.png
'''
p = progress - 1.0
return p * p * p * p * p + 1.0
@staticmethod
def in_out_quint(progress):
'''.. image:: images/anim_in_out_quint.png
'''
p = progress * 2
if p < 1:
return 0.5 * p * p * p * p * p
p -= 2.0
return 0.5 * (p * p * p * p * p + 2.0)
@staticmethod
def in_sine(progress):
'''.. image:: images/anim_in_sine.png
'''
return -1.0 * cos(progress * (pi / 2.0)) + 1.0
@staticmethod
def out_sine(progress):
'''.. image:: images/anim_out_sine.png
'''
return sin(progress * (pi / 2.0))
@staticmethod
def in_out_sine(progress):
'''.. image:: images/anim_in_out_sine.png
'''
return -0.5 * (cos(pi * progress) - 1.0)
@staticmethod
def in_expo(progress):
'''.. image:: images/anim_in_expo.png
'''
if progress == 0:
return 0.0
return pow(2, 10 * (progress - 1.0))
@staticmethod
def out_expo(progress):
'''.. image:: images/anim_out_expo.png
'''
if progress == 1.0:
return 1.0
return -pow(2, -10 * progress) + 1.0
@staticmethod
def in_out_expo(progress):
'''.. image:: images/anim_in_out_expo.png
'''
if progress == 0:
return 0.0
if progress == 1.:
return 1.0
p = progress * 2
if p < 1:
return 0.5 * pow(2, 10 * (p - 1.0))
p -= 1.0
return 0.5 * (-pow(2, -10 * p) + 2.0)
@staticmethod
def in_circ(progress):
'''.. image:: images/anim_in_circ.png
'''
return -1.0 * (sqrt(1.0 - progress * progress) - 1.0)
@staticmethod
def out_circ(progress):
'''.. image:: images/anim_out_circ.png
'''
p = progress - 1.0
return sqrt(1.0 - p * p)
@staticmethod
def in_out_circ(progress):
'''.. image:: images/anim_in_out_circ.png
'''
p = progress * 2
if p < 1:
return -0.5 * (sqrt(1.0 - p * p) - 1.0)
p -= 2.0
return 0.5 * (sqrt(1.0 - p * p) + 1.0)
@staticmethod
def in_elastic(progress):
'''.. image:: images/anim_in_elastic.png
'''
p = .3
s = p / 4.0
q = progress
if q == 1:
return 1.0
q -= 1.0
return -(pow(2, 10 * q) * sin((q - s) * (2 * pi) / p))
@staticmethod
def out_elastic(progress):
'''.. image:: images/anim_out_elastic.png
'''
p = .3
s = p / 4.0
q = progress
if q == 1:
return 1.0
return pow(2, -10 * q) * sin((q - s) * (2 * pi) / p) + 1.0
@staticmethod
def in_out_elastic(progress):
'''.. image:: images/anim_in_out_elastic.png
'''
p = .3 * 1.5
s = p / 4.0
q = progress * 2
if q == 2:
return 1.0
if q < 1:
q -= 1.0
return -.5 * (pow(2, 10 * q) * sin((q - s) * (2.0 * pi) / p))
else:
q -= 1.0
return pow(2, -10 * q) * sin((q - s) * (2.0 * pi) / p) * .5 + 1.0
@staticmethod
def in_back(progress):
'''.. image:: images/anim_in_back.png
'''
return progress * progress * ((1.70158 + 1.0) * progress - 1.70158)
@staticmethod
def out_back(progress):
'''.. image:: images/anim_out_back.png
'''
p = progress - 1.0
return p * p * ((1.70158 + 1) * p + 1.70158) + 1.0
@staticmethod
def in_out_back(progress):
'''.. image:: images/anim_in_out_back.png
'''
p = progress * 2.
s = 1.70158 * 1.525
if p < 1:
return 0.5 * (p * p * ((s + 1.0) * p - s))
p -= 2.0
return 0.5 * (p * p * ((s + 1.0) * p + s) + 2.0)
@staticmethod
def _out_bounce_internal(t, d):
p = t / d
if p < (1.0 / 2.75):
return 7.5625 * p * p
elif p < (2.0 / 2.75):
p -= (1.5 / 2.75)
return 7.5625 * p * p + .75
elif p < (2.5 / 2.75):
p -= (2.25 / 2.75)
return 7.5625 * p * p + .9375
else:
p -= (2.625 / 2.75)
return 7.5625 * p * p + .984375
@staticmethod
def _in_bounce_internal(t, d):
return 1.0 - AnimationTransition._out_bounce_internal(d - t, d)
@staticmethod
def in_bounce(progress):
'''.. image:: images/anim_in_bounce.png
'''
return AnimationTransition._in_bounce_internal(progress, 1.)
@staticmethod
def out_bounce(progress):
'''.. image:: images/anim_out_bounce.png
'''
return AnimationTransition._out_bounce_internal(progress, 1.)
@staticmethod
def in_out_bounce(progress):
'''.. image:: images/anim_in_out_bounce.png
'''
p = progress * 2.
if p < 1.:
return AnimationTransition._in_bounce_internal(p, 1.) * .5
return AnimationTransition._out_bounce_internal(p - 1., 1.) * .5 + .5
|
Effect of mechanical trauma on the tooth germ of rat molar--a scanning electron microscope study. OBJECTIVE Clinical and histopathological evaluation of mechanical trauma on the development of maxillary first molar with Scanning Electron Microscope. DESIGN Experimental study with four newborn Wistar rats. Trauma induced on 1st, 3rd, 7th and 10th postnatal days with dental K file. Right first molar region of the maxilla was the experimental side and the left side as control. Animals were sacrificed on the 42nd Postnatal day when the teeth came into functional occlusion. Teeth were evaluated clinically and SEM study of the crown was performed. RESULTS Marked disfigurement of cusps, roughened defective, enamel, crown dilacerations and enamel hypoplasia were observed. Damage was less severe to the tooth subjected to trauma on the 10th postnatal day. |
// Complete the designerPdfViewer function below.
static int designerPdfViewer(int[] h, String word) {
int max = h[0];
for(int i =0; i < word.length(); i++) {
int ascii = word.charAt(i);
int index = ascii - 97;
if(max < h[index])
max = h[index];
}
return(max * word.length());
} |
Professional Notes and Comment FILLM Congress. The MLA is one of the sponsors of the Fifteenth International Congress of the International Federation for Modern Languages and Literatures (FILLM), which will be held in the Phoenix, Arizona, area from 28 August to 9 September 1981. The theme of the Congress will be "Adjoining Cultures as Reflected in Literature and Languages," and separate sessions will be held on the following topics: "Nationalism Reflected or Transcended in Literature," "Regional Reflections in Language and Literature," "The Role of Adjoining Cultures in Determining Literary Forms," "Permanence of Literary Patterns and Genres," "Literature, Language, and Politics," and "Literature of Imagination and Documentary Literature." In addition to the sectional meetings, there will be eight plenary sessions, at which invited scholars will speak, and a one-day symposium devoted to the life and works of Andres Bello (the bicentennial of whose birth occurs in 1981). This notice is a cordial invitation for MLA members to participate. Papers for any of the six sections are welcome. Those who wish to submit a paper should specify the section they wish to address and send the proposed title and a brief description (approximately six sentences) to the Congress Secretary, Peter Howarth (Dept. of Foreign Languages, Arizona State Univ., Tempe 85281) by 15 October 1979. Correspondence concerning estimated costs and housing should also be addressed to him, and persons who are contemplating participation in the Congress should so inform him by 15 October 1979. |
mod selectpass;
pub use selectpass::Query;
pub use selectpass::SelectId;
pub use selectpass::SelectPass;
|
Frequency Diverse Array Signal Optimization: From Non-Cognitive to Cognitive Radar This paper addresses the problem of frequency diverse array (FDA) signal design for target localization in both non-cognitive and cognitive radars. For the non-cognitive case, the Cramr-Rao bound (CRB) for target localization in FDA radar is derived and optimized with respect to the transmit signal parameters. It is shown that FDA transmission introduces coupling between range and direction-of-arrival (DOA) estimation, and that the DOA estimation accuracy can be improved by increasing the signal bandwidth. Since the CRB ignores the threshold phenomenon, we propose to minimize it under a constraint which assures that the steered gain toward the target yields sufficiently large output signal-to-noise ratio (SNR). This method together with the FDA transmission properties establish the basis for developing the proposed cognitive FDA configuration, which is derived in the Bayesian approach. Based on the Bayesian CRB (BCRB) and the expected CRB (ECRB) for target localization, we propose a new criterion called the semi-ECRB (SECRB), and we prove that it is higher than the BCRB and lower than the ECRB. The SECRB is optimized with respect to the FDA signal parameters subject to mean SNR constraint. The target localization performances of the proposed methods in the non-cognitive and cognitive problems are analyzed via simulations and it is shown that they exhibit superior performance in terms of both threshold behavior and estimation accuracy, compared to other transmission methods. |
Microsoft is going to have to rename its SkyDrive cloud storage service after agreeing to submit to a British court's ruling over ownership of the brand name.
British Sky Broadcasting Group, the European satellite broadcasting arm of Rupert Murdoch's media empire, took on Redmond over the rights to the SkyDrive name, pointing out that BSkyB had got there in advance of Microsoft's marketing cohorts. In June, UK High Court Judge Sarah Asplin found against Microsoft, and Redmond has submitted to the verdict.
"We are pleased to have reached a settlement after Microsoft agreed not to appeal the trade mark infringement judgment in relation to its SkyDrive service," said Sky in a statement to El Reg.
"We will remain vigilant in protecting the Sky brand and will continue to take appropriate action against those companies who seek to use our trade mark without consent."
It's another embarrassing trademark failure for Microsoft. The much-touted Metro interface that was the marketing push behind Windows 8 is rumored to have been renamed as "Modern UI" after intellectual property lawyers got involved. With the billions Microsoft spends on marketing, you'd think the company would have this kind of slip sorted by now. It seems not, however.
"We're glad to have resolution of this naming dispute, and will continue to deliver the great service our hundreds of millions of customers expect, providing the best way to always have your files with you," Microsoft said in a statement.
This still leaves the name for the new service to decide. El Reg is sure the readers will have some suitable suggestions on our forum boards. ® |
<gh_stars>1-10
package fr.mrmicky.worldeditselectionvisualizer.selection;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.time.Instant;
import java.util.Objects;
public class PlayerSelection {
@NotNull
private final SelectionType selectionType;
@Nullable
private SelectionPoints selectionPoints;
@Nullable
private Instant expireTime;
@Nullable
private RegionInfos lastSelectedRegion;
private boolean lastSelectionTooLarge;
public PlayerSelection(@NotNull SelectionType selectionType) {
this.selectionType = Objects.requireNonNull(selectionType, "selectionType");
}
@Nullable
public SelectionPoints getSelectionPoints() {
return selectionPoints;
}
public void setSelectionPoints(@Nullable SelectionPoints selectionPoints) {
this.selectionPoints = selectionPoints;
}
@Nullable
public Instant getExpireTime() {
return expireTime;
}
public void setExpireTime(@Nullable Instant expireTime) {
this.expireTime = expireTime;
}
@Nullable
public RegionInfos getLastSelectedRegion() {
return lastSelectedRegion;
}
public void setLastSelectedRegion(@Nullable RegionInfos lastSelectedRegion) {
this.lastSelectedRegion = lastSelectedRegion;
}
public boolean isLastSelectionTooLarge() {
return lastSelectionTooLarge;
}
public void setLastSelectionTooLarge(boolean lastSelectionTooLarge) {
this.lastSelectionTooLarge = lastSelectionTooLarge;
}
@NotNull
public SelectionType getSelectionType() {
return selectionType;
}
public void checkExpireTime() {
if (expireTime != null && expireTime.isBefore(Instant.now())) {
expireTime = null;
selectionPoints = null;
}
}
public void updateSelection(@Nullable SelectionPoints selectionPoints, @Nullable RegionInfos lastSelectedRegion, int expireSeconds) {
this.selectionPoints = selectionPoints;
this.lastSelectedRegion = lastSelectedRegion;
lastSelectionTooLarge = false;
expireTime = expireSeconds > 0 ? Instant.now().plusSeconds(expireSeconds) : null;
}
public void resetSelection() {
resetSelection(null);
}
public void resetSelection(RegionInfos lastSelectedRegion) {
this.lastSelectedRegion = lastSelectedRegion;
selectionPoints = null;
expireTime = null;
lastSelectionTooLarge = false;
}
}
|
// MustURL returns a 'named' URL or panics
func MustURL(r *mux.Route, pairs ...string) *url.URL {
url, err := r.URL(pairs...)
if err != nil {
log.Fatalf("Error r.URL failed with error: %v", err)
}
return url
} |
January 5, 2015 5 min read
Opinions expressed by Entrepreneur contributors are their own.
Meetings. The word has almost become synonymous with wasting time. To quote Captain Kirk, “A meeting is an event at which the minutes are kept and the hours are lost.” Call a meeting and you could almost hear the collective groan from down the hall.
As an executive or a manager, if you are calling a meeting, here are five rules to ensure that your meeting does not end up wasting time, resources and money.
Related: 7 Secrets of the Most Productive Meetings
1. Before you schedule a meeting, justify it.
We are under the impression that meetings are, per se, productive. What if it were the opposite? What if meetings are mostly unproductive, and advisable only under specific conditions?
Before you call a meeting, justify it. Ask yourself, "What is my intended outcome? What am I trying to accomplish? Why do I need to put people in a room together?”
If you can not articulate the need for a meeting, don’t convene it. If you can, the process of articulation will enable you to sharpen your focus of what you want the meeting to accomplish and increase the chances of the meeting achieving your goals.
2. Invite players, not spectators.
We tend to over invite people to meetings. Just as we over “cc” people to emails, we assume it’s better to over-invite to a meeting then miss someone. That way of thinking may make sense for the annual holiday party, but it doesn’t for corporate meetings.
As a kid, I remember hearing a story about a village that wanted to honor their king with a barrel of wine. The townsmen mandated that everyone bring a pitcher of wine and collectively they will fill up the barrel. Each villager, assuming that everyone else would bring wine, filled his pitcher with water. The king received the gift only to find that the wine barrel consisted entirely of water.
The more people in a meeting, the less responsibility each person has. If each person does not feel necessary, they won't be as diligent to follow up on discussed items. They will assume that others will do it. By limiting ‘spectators’, you keep the meetings shorter, more engaging and easier to have effective follow up. In short, you get more wine.
Related: Want More Productive Meetings? Try Getting Rid of the Chairs.
3. Meetings should not fill allotted time, allot time to fulfill the meeting.
We tend to meet for blocks of time that fit neatly into our calendars. That is a backwards way of looking at time allocation. You don’t fit the meeting into the calendar; you use the calendar to capture the time needed for the meeting.
Meetings should go only as long as they need to accomplish the specified goal. When you schedule a meeting, ask yourself how long you would it will take to accomplish the intended outcomes. Plan the meeting for that time, even if not in blocks of hours, half hours or even tens of minutes. Schedule an 18-minute meeting if you feel that’s what you need. Should you accomplish your goals in a shorter time, adjourn earlier.
Most of the unproductive time comes when people feel like there is more time allocated than necessary. Show your colleagues you respect their time by allocating what you anticipate is necessary and then end early if the task was accomplished sooner.
4. You called it, you own it.
Whoever called the meeting, needs to be responsible to drive the agenda and keep the meeting focused and action oriented.
Many times, a meeting is called and there is a lack of clarity as to who is in charge. One person starts and then another chimes in and redirects the conversation. While everyone should be able to participate, only one person should be responsible for the overall flow of the meeting. The “owner” should begin with an agenda and take responsibility to shepherd the meeting along in an efficient manner. At the end, the owner should be the one to allocate, and record, the action items.
5. End with action steps.
Meetings are a place to talk, but talk is cheap unless it’s followed by action. At the end of every meeting, there should be an announcement of action items that emerged from the discussion.
Those actions items should be circulated to the group and then discussed at the beginning of the next meeting. Meeting participants should know what they should be doing and that there will be a time where their actions will be reviewed.
Meetings can be the most powerful tool in the success of your business. However, like any tool, you can only fully reap the benefits when you use it properly.
Related: For More Productive Meetings, Throw Out Your Conference Table |
The ad may look appealing, but all is not what it seems.
As New Zealand house prices and rents continue to skyrocket, those in financially vulnerable situations are turning to prostitution.
New Zealand Union of Students' Associations national president Rory McCourt said many students facing financial hardship turned to sex work in order to cover living costs.
International students were at the greatest risk, McCourt said.
And with rents in New Zealand up $25 a week over the year to April advertisements offering "free rent for services" are springing up across mainstream house-sharing sites.
An ad posted on Craigslist in Auckland offers a free bedroom in the suburb of Glen Eden in exchange for "sexual favours."
An advertisement for a room in Auckland in exchange for sexual favours that was posted on Craigslist.
McCourt said he had not heard that students, who were unable to afford accommodation, were living rent free in exchange for sex.
However, it was not uncommon for students to enter the sex industry to cover mounting living costs and a lack of student allowance and loan increases.
This arrangement worked out well for some students, but not for everyone, he said.
BEEN HAPPENING HERE 'SINCE TIME BEGAN'
Further accommodation support from the government was needed for tertiary students, especially those in the main centres, McCourt said.
Increases in student allowances and living costs introduced in April were not enough to cover student rents, which put students in financially vulnerable situations.
Some financially vulnerable students were forced to buy less food and sacrifice their health in order to pay rising rent costs, he said.
New Zealand Prostitutes' Collective (NZPC) national coordinator Catherine Healy said sex in exchange for accommodation could be considered prostitution, but that it was not a new phenomenon.
It came down to whether the person providing the sexual services felt they were engaging commercial sexual activities, Healy said.
It was a grey area, which became less clear the longer the people lived together, she said.
Once the people had been living together for a while it could be considered to be a de facto relationship rather than a commercial one, she said.
Healy said while she had not heard of sex for rent arrangements in New Zealand, she had no doubt this did occur.
"I'm sure people have been hooking up together since time began for mutual needs."
If the person did feel they were engaging in commercial sexual activity and their rights had been breached they would be covered under the Prostitution Reform Act, she said.
Healy said she knew of many students, including international students, who turned to sex work in order to finance their way through university.
LISTINGS ON TRADE ME
Trade Me spokesman Jeff Hunkin said listings of accommodation for sex were not common on the online auction site.
There had been an "extremely small handful" of similar listings that had been removed in the past on the grounds of "bad taste", Hunkin said.
Trade Me did not have a specific policy in relation to accommodation in exchange for services, including sex, but when listings overstepped the mark they were removed by a policing team that monitored the site 24/7.
The public was good at alerting Trade Me to any listings that crossed the line or were in breach of the sites terms and conditions, he said.
"We'd also encourage anyone renting accommodation to familiarise themselves with their rights under the Residential Tenancies Act, in particular when it comes to lodging bond and arranging rent."
ALSO HAPPENING IN OZ
The same thing is happening across the ditch as Sydney house prices creep towards a median of AU$1 million (NZ$1.07 million).
One advertisement for Sydney accommodation on Craigslist read: "Are you a lovely female needing a room for a night or two . . don't want to pay over the top hotel fees?"
The advertisement continued, "My place is clean, close to transport and CBD ... the only catch is there is one bed only."
"A friends with benefits arrangement?"
Another advertisement is more detailed: "You've probably figured out the arrangement already, so let's get down to specifics."
"ME: Handsome, tall, in great shape, generous, self-employed, late 30's,"
"YOU: Young (under 21), gorgeous, adventurous, looking for free rent ... "
CAN BE MISINTERPRETED
In several Australian ads, subtext can be lost on the vulnerable, particularly those with limited English.
*Tom has "a free room available in kings cross area for the right Guest...Obviously looking to make an arrangement. But flexible in what that is".
Alison Ye, 26, is an international student from China, who was shocked by Sydney's high rent.
"The equivalent in Beijing was around $150 a week, and here is so difficult," she said.
Two days after placing an advertisement on Gumtree for "cheap or free rent in exchange for cleaning and cooking", a young couple asked Ms Ye to share her body instead.
"It was so creepy and kind of scary because it was in person, and there have been lots of emails from older single men, which I find weird.
"I am scared sometimes I will agree to something I don't fully understand in English," she said.
Professor Bill Randolph, of the Australian Housing and Urban Research Institute, says the phenomenon is driven by housing cost, combined with a culture of anonymity.
"Years ago, you couldn't have this kind of access to people and be hidden.
"Now, this is the opportunity for people to exploit the vulnerable, who desperately need housing they can afford," Professor Randolph said.
Terry Bincett has offered space in his queen-sized bed in Matraville for $22 a day, through a Craigslist advertisement for those who "aren't shy". He likens the offer to meeting in a bar and taking them home, but says sex isn't a necessary part of the deal. "It is whatever people are comfortable with, and they can choose to have their own room," Mr Bincett said. In one year, he has attracted eight guests; two women and six men, all but one of whom have been unperturbed by the intimate sleeping arrangements.
"One guy in the US spoke to me at 12.30pm on a Wednesday, and was at my door by 6am that Friday!" he said.
As a co-founder of independent share site Flatmatesfinders.com, Guy Mitchell has made it a policy not to publish posts that allude to exchanging sexual services.
"We read and monitor all submissions and watch for this kind of thing.
"We want our site to be a reliable and safe place for people to find housing," Mr Mitchell said.
OR ... BIBLE STUDY
A more wholesome alternative could be this offer by an unnamed Gumtree poster in Ramsgate, seeking Christians only.
The way tenants make rent is to "cook and clean a little", but Bible study is compulsory.
The landlord, who wishes to remain anonymous, said he had a number of people move in and "profess to be Christians, who have found excuses to not join in Bible studies".
"It's only an hour and a half a fortnight, it's not asking a lot," he said.
The site LoveRoom offers a similar arrangement but with a dating twist.
LoveRoom is similar to Couchsurfing but users connect with people they are attracted to and stay at their house for free. LoveRoom launched in November 2014 and at the time claimed to have more than 10,000 members in 90 countries, including about 800 Kiwis.
- Have you seen ads like this here in NZ? If so, let us know at newstips@stuff.co.nz.
- Sydney Morning Herald & Stuff.co.nz |
Optimization on Personal Fall Arrest Systems. Experimental Dynamic Studies on Lanyard Prototypes Tens of thousands of fall-from-height accidents take place at construction sites every year. These types of accidents range from minor to fatal, causing a significant financial burden to enterprises, personal and family traumatic experiences, high medical costs, as well as hard compensation claim settlements. It makes sense then, that some sort of effective personal protective equipment (PPE) be devised to stop these types of accidents from happening. This article aims to explain how PPE can be used to minimize personal injury and the costs implied. The main contribution of this study is that the prototypes made with dynamic ropes and terminals knottedwithout an energy absorbercould safely retain falls. Results show that standards EN 354 and EN 364 need to incorporate dynamic test requirements, for the reason that a high loading rate significantly reduces the resistance in static tests that manufacturing companies claim they have. Surprisingly, more than 90 percent of work at heights use PPE without any absorber. Finally, this study calls for the need to accurately determine the dynamic response of PPE in order to further advance in improvements of these fall arrest systems with no energy absorber. Introduction Falls from a height are the main causes of serious and fatal workplace accidents in almost every country. In the USA, fatal workplace injuries from falls, slips and trips have continued a general upward trend, with an increase of 6 percent, and an overall increment of 25 percent in the last 10 years. A study of occupational activity fatalities per year in different countries describes quite a similar scenario. Generally speaking, the year 2016 showed an increase in fatalities of over 25 percent in production sectors, such as roofers, carpenters, tree trimmers and others. In the United Kingdom, the statistics for the construction sector show that falls from a height have represented roughly 50 percent of the total fatal accidents. Taking the construction sector in the USA as a reference, accidents due to falls from heights are the cause of the greatest number of deaths for the years 1990 and 2001. These accidents seem to correlate with the number of workers in the sector. This trend persisted in the period between 1997 and 2012, where accidents due to falls from heights went from 36.3 percent in the Huang study to 44.6. In Australia, the fall-from-height fatality rate was 14 percent in 2016, and was only surpassed by motor collision casualties. In Singapore, falls from heights have been the greatest cause of fatal injuries-31.9 percent-in the last ten years. In Spain, statistics for the year 2017 reveal that construction sector accidents represent 17.66 percent of all serious accidents, of which 10.64 percent reveal that construction sector accidents represent 17.66 percent of all serious accidents, of which 10.64 percent end in the workers' deaths. Specifically, to reduce the number of accidents due to falls from heights, the correct use of fall protection equipment is indispensable. Currently, the use of personal protective equipment (PPE) against falls remains a pending subject. Analysis of nearaccidents and dangerous behaviors shows the need to simplify this equipment, if the correct use of it by workers is to be increased. For this equipment to be used correctly, it must be not only simple but also easy to use. Choi et al. published a detailed, comparative study on accidents from 2011 to 2015 in the United States, Korea and China. Results showed that the construction industry had consistently high fatal occupational injuries, and the top most common accident types were "fall from a higher level" and "struck by". The typical temporary work in the construction sector has a negative impact on the injury frequency index, so much so that the index for temporary workers increases between 136.4% and 175.2% more than the value found for direct employees in the most hazardous industrial sector. Previous collective protection equipment studies, such as the one carried out by that complements PPE is also considered, even though its approach is presented from a different perspective. In this general context, PPE against falls from a height, in particular fall arrest systems, have become a must to control the safety of workers where each of the components in the system is critical to protect the worker. The simplest system consists of (a) a full-body harness, (b) connectors, (c) lanyards, (d) a shock absorber, and (e) an anchor. Different papers have specifically focused on each of the components. For example, shock absorbers, harnesses, connectors, anchor devices and even a multi-component system. Destructive experiments frequently use small sample sizes due to the cost of test specimens and the time and resources involved. Goh and Peter evaluated seven types of energy absorbers. Baszczynski studied four types, using two or three samples for each simulated condition. Riches used only one fall arrest sample in seven different configurations. Authors like Baszczynski tackled adjustable lanyards of low elongation. In the tests performed for this paper, fall factor (FF) has been considered as the ratio between the height of fall H, before the equipment is put into tension, and the length L of the equipment that absorbs the fall energy: FF = H/L. This criterion is used by American National Standards Institute (ANSI) A10. 32:2004 and it is perfectly adapted to the needs of the studies carried out, and it also allows for a correct exposure of the results. Therefore, in a lanyard where the length is constant, the FF will oscillate between the values 0 and 2. In Figure 1 different FFs have been represented with fall arrest equipment with a length of 1 m. The main function of a fall arrest system is to safely arrest the fall. To achieve this purpose, different standards are set to limit the force of impact. These limits represent the assumed maximum impact that a person can withstand without undergoing much harm. Table 1 shows the maximum admissible forces for each standard. Table 2 shows standards in terms of static resistance of lanyards, which must necessarily be equal to or greater than 22 kN. Other safety problems in work at heights, detected by several authors, include unawareness on how to use energy absorbers properly, thus making the system unsafe. Studies conducted by the Spanish National Institute of Occupational Health and Safety by Jimnez et al. show that of the 1117 construction sites visited, 17 percent made proper use of the fall arrest system. Shockingly, they also found that 81% placed the anchor point incorrectly; 21% made use of an anchor line; 13% made use of a sliding fall arrest system, which was inadequate, and 6.7% incorporated an energy absorber. Surprisingly, more than 90 percent of work at heights, with risk of falling, use PPE without any absorber. This study aims to determine what a lanyard of a low stretch kernmantle and dynamic ropes needs to absorb the required energy to arrest a fall safely. This article focuses on the design of the lanyards with ropes from the world of sport (with a higher energy absorption capacity) as a replacement of energy absorbers. The main point of this design is to improve the safety of PPE, without any absorber, used during a hypothetical fall of a worker. Lanyards Studied In terms of materials used and terminations, lanyards can be of four types ( Figure 2): Webbings, commercialized and prototype textile rope, steel wire and steel chain. Webbings are mainly made of polyamide (PA) and polyester (PTA). Their terminations are made in the form of a gauze where connectors fasten the anchor point and the harness. The dimensions of the lanyards under consideration are: Diameter of the ropes between 9-12 mm, webbing width between 15-40 mm, and lengths between 0.50-1.8 m, leaving connectors out. The main characteristics of the low stretch kernmantle and dynamic ropes stated by EN 1891 and EN 892 are shown in Table 3. Ropes used for canyoneering, caving or rope access and positioning, with low stretch kernmantle behavior, are regulated by EN 1891. Ropes used for mountaineering and climbing, with dynamic behavior, are regulated by EN 892 in Europe. Both types of ropes are made of natural raw fibers which are marketed without manufactured terminals. It is the user who makes a knot as a terminal. The most common and recommended knots are type "eight" for its simplicity of construction and ease of undoing when the lanyards are subjected to loads. This type of eight knot when used as an anchor knot shows a residual static resistance (Ro) in the range of 62-67% of nominal rope resistance without knots (with a diameter of 10.5 mm). This study aims to determine if it is possible to make lanyards of a low stretch kernmantle or dynamic rope that absorb the required energy to arrest a fall safely. Sixteen specimens were produced for testing, eight for FF = 1 and eight for FF = 2. Two rope prototypes 1 (PT1) in compliance with the European Standard EN 1891 A, braided ropes with sheath, low stretch kernmantle; and two rope prototypes 2 (PT2) in conformity with the European Standard EN 892, dynamic ropes, safety requirements and test methods, with knotted terminals. Both, PT1 and PT2, were designed by the authors of this paper. With regard to the certificate lanyards selected by the authors, they are of two types: T1 rope, complying with the European Standard EN 354, and two T2 webbing, in conformity with EN 354. Both, T1 and T2, were selected from manufacturing companies. The dimensions of the lanyards under consideration are: Diameter of the ropes between 9-12 mm, webbing width between 15-40 mm, and lengths between 0.50-1.8 m, leaving connectors out. The main characteristics of the low stretch kernmantle and dynamic ropes stated by EN 1891 and EN 892 are shown in Table 3. Ropes used for canyoneering, caving or rope access and positioning, with low stretch kernmantle behavior, are regulated by EN 1891. Ropes used for mountaineering and climbing, with dynamic behavior, are regulated by EN 892 in Europe. Both types of ropes are made of natural raw fibers which are marketed without manufactured terminals. It is the user who makes a knot as a terminal. The most common and recommended knots are type "eight" for its simplicity of construction and ease of undoing when the lanyards are subjected to loads. This type of eight knot when used as an anchor knot shows a residual static resistance (Ro) in the range of 62-67% of nominal rope resistance without knots (with a diameter of 10.5 mm). This study aims to determine if it is possible to make lanyards of a low stretch kernmantle or dynamic rope that absorb the required energy to arrest a fall safely. Sixteen specimens were produced for testing, eight for FF = 1 and eight for FF = 2. Two rope prototypes 1 (PT1) in compliance with the European Standard EN 1891 A, braided ropes with sheath, low stretch kernmantle; and two rope prototypes 2 (PT2) in conformity with the European Standard EN 892, dynamic ropes, safety requirements and test methods, with knotted terminals. Both, PT1 and PT2, were designed by the authors of this paper. With regard to the certificate lanyards selected by the authors, they are of two types: T1 rope, complying with the European Standard EN 354, and two T2 webbing, in conformity with EN 354. Both, T1 and T2, were selected from manufacturing companies. The connectors used in the tests meet the standard EN 362 requirements, which describe technical specifications for connector requirements, test apparatus, test methods, marking, and manufacturing-companies-supplied information for connectors (static strength of major axis is 25 kN). Unused test samples have been engaged in every dynamic test. The data was recorded automatically through a force measuring apparatus at every 2 ms. All tested lanyards and prototypes were checked 24 h in temperature and humidity-controlled chambers, in accordance with EN 364. Table 4 shows the main specimen specifications. Figure 3 illustrates a figure-of-eight knot terminal at both ends of the prototypes, featured with rope following recommendations of several authors since this type of knot is not only easy to make but also easy to check. The connectors used in the tests meet the standard EN 362 requirements, which describe technical specifications for connector requirements, test apparatus, test methods, marking, and manufacturing-companies-supplied information for connectors (static strength of major axis is 25 kN). Unused test samples have been engaged in every dynamic test. The data was recorded automatically through a force measuring apparatus at every 2 ms. All tested lanyards and prototypes were checked 24 h in temperature and humidity-controlled chambers, in accordance with EN 364. Table 4 shows the main specimen specifications. Figure 3 illustrates a figure-of-eight knot terminal at both ends of the prototypes, featured with rope following recommendations of several authors since this type of knot is not only easy to make but also easy to check. The connectors used in the tests meet the standard EN 362 requirements, which describe technical specifications for connector requirements, test apparatus, test methods, marking, and manufacturing-companies-supplied information for connectors (static strength of major axis is 25 kN). Unused test samples have been engaged in every dynamic test. The data was recorded automatically through a force measuring apparatus at every 2 ms. All tested lanyards and prototypes were checked 24 h in temperature and humidity-controlled chambers, in accordance with EN 364. Table 4 shows the main specimen specifications. Figure 3 illustrates a figure-of-eight knot terminal at both ends of the prototypes, featured with rope following recommendations of several authors since this type of knot is not only easy to make but also easy to check. Lanyards, ropes, and connectors fall into Category III in the European Regulation 2016/425 231. This code establishes that small sample sizes are acceptable. The regulation also states that a certification agency either carry out product checks to verify production and personal protective equipment (PPE) homogeneity, or assess the manufacturing companies claim in terms of system quality to determine whether the requirements are satisfied. Dynamic Testing Apparatus Used The authors designed the rigid structure of the apparatus ( Figure 5), which complies with the standard EN 364, which means that the application of a 50 kN load on the anchorage causes a vertical deflection of less than 1 mm, and a natural frequency (of vibration) in the vertical axis of 100 Hz at the anchorage. Lanyards, ropes, and connectors fall into Category III in the European Regulation 2016/425 231. This code establishes that small sample sizes are acceptable. The regulation also states that a certification agency either carry out product checks to verify production and personal protective equipment (PPE) homogeneity, or assess the manufacturing companies claim in terms of system quality to determine whether the requirements are satisfied. Dynamic Testing Apparatus Used The authors designed the rigid structure of the apparatus ( Figure 5), which complies with the standard EN 364, which means that the application of a 50 kN load on the anchorage causes a vertical deflection of less than 1 mm, and a natural frequency (of vibration) in the vertical axis of 100 Hz at the anchorage. The anchor point, equipped with a spherical ball working like a hinge, allows free oscillation, as indicated in EN 364 and EN 355 protocols. The test mass having a diameter of 200 mm is cylindrical in shape and is made of steel. The weight simulates that of a person falling. The selected design allows different configurations for mass to be progressively added (in the range of 50 to 150 kg) when required. The load cell is made by HBM (Hottinger Baldwin Messtechnik) type RSCC and it resists a maximum force of 50 kN. The control and data analysis software used is PCD2K (Servosis company, Madrid, Spain) from Servosis Testing Machines. This software has a control frequency of up to 40 kHz. Dynamic Performance Test The test method chosen for the experiments correlates with the one described in EN 355 and EN 364, enabling a comparison of the resulting impacts in different test samples. Commercialized lanyards of equal lengths, 1500 mm, have been selected. Table 5 shows the lengths (without connectors)-as specified by the manufacturing companies-and a rigid mass of 100 kg. The anchor point, equipped with a spherical ball working like a hinge, allows free oscillation, as indicated in EN 364 and EN 355 protocols. The test mass having a diameter of 200 mm is cylindrical in shape and is made of steel. The weight simulates that of a person falling. The selected design allows different configurations for mass to be progressively added (in the range of 50 to 150 kg) when required. The load cell is made by HBM (Hottinger Baldwin Messtechnik) type RSCC and it resists a maximum force of 50 kN. The control and data analysis software used is PCD2K (Servosis company, Madrid, Spain) from Servosis Testing Machines. This software has a control frequency of up to 40 kHz. Dynamic Performance Test The test method chosen for the experiments correlates with the one described in EN 355 and EN 364, enabling a comparison of the resulting impacts in different test samples. Commercialized lanyards of equal lengths, 1500 mm, have been selected. Table 5 shows the lengths (without connectors)as specified by the manufacturing companies-and a rigid mass of 100 kg. Test Procedure: A 50 kN load cell was connected to an anchor point by means of a spherical ball and a socket joint. One end of the lanyard terminal was connected to the load cell and the other end to the mass ( Figure 5). The mass connected to a quick release system was suspended from a lanyard to be raised to a certain height to study both FF = 1 and FF = 2 impacts, to establish similarities and contrasts between the two scenarios. Figure 5 shows the arrangements schematically. The mass was placed 300 mm away from the anchor point in the horizontal plane. When the mass was dropped, it was checked whether the mass was successfully arrested by the system and the values for maximum arrest force, together with the behavior curve force/time, could readily be calculated. In addition, post-test elongation for each lanyard was measured. Lanyard post-test elongation values were obtained by calculating the difference between the initial length and the length at rest after completion of the test. Table 5 illustrates the initial length measurements of the sample suspended from the test gantry, subjected to its own weight. In this way, the regulations in-tension measurement requirements in the absence of a load were fulfilled. This measurement includes the connectors from the end points that withstand the load. Post-test length measurements are performed in the same manner when the mass has stopped. Tables 5 and 6 show values of the lanyards elongations with a calibrated flexometer in millimeters, connectors included. In summary, different samples (PT1, PT2, T1 and T2) have been tested with the objective of checking whether a fall is successfully arrested, so as to minimize the risk currently run by workers involved in tasks done at heights, where a fall from the line of work in rope access systems may mean serious injury. The tests inform whether fall arrest systems can be simplified for cases where energy absorbers may be redundant. Fall Factor 1 Tests (FF = 1) In every test in FF = 1, the mass was retained. Table 5 illustrates the maximum arrest force and elongation obtained for lanyard commercialized and textile ropes prototypes. Tests 1 and 2 (PT1) reach 8 and 8.6 kN in peak of arrest forces. Tests 3 and 4 (PT2) exhibit maximum arrest force values of 6 and 7 kN. Their equipment shows an elongation higher than 20 percent. Considering the limit of 8 kN, these prototypes could retain the load stretching the lanyard up to 1.5 m in FF = 1. Prototypes PT1, made with low stretch kernmantle ropes show that their elongation is reduced by 5 percent with respect to PT2, increasing, at the same time, the maximum arrest force by 14 percent at 8 kN, approaching the limit allowed by the ANSI Z359.1 and ANSI Z359.13 standards. Table 5 shows the maximum arrest force and elongation for all specimens in FF = 1. Figure 6 shows the force-time curves for the prototypes studied. Test 2 (PT1) shows a maximum force around 8 kN and Tests 1, 3 and 4 present forces equal to or lower than 8 kN. Tests 3 and 4 (PT2) present a smoother curve and, therefore, a lower maximum arrest force. At first impact, the time lapse is 0.3 s, and then the maximum retention force is obtained. The second and successive rebounds present considerably lower forces. As can be appreciated in Figure 7, the commercialized lanyards present curves with larger slopes. Test 7 (T1) and Test 8 (T2), commercialized with webbings, present the highest maximum arrest forces-13 and 11 kN-with practically no elongation (less than 2.5 percent). Test 7 (T1) exceeds 8 kN widely at first impact and again exceeds 6 kN in the second rebound. Less than 1 s after the first impact, in both figures (Figures 6 and 7), a second important rebound is observed, in which the value of the force generated is approximately half the force of the first impact. All the commercialized lanyards (T1) based on ropes, Tests 5 and 6, show small elongation, less than 8 percent, behaving better than webbings (Tests 7 and 8), but the values obtained in textile rope prototypes (PT1 and PT2) are greater than 15 percent. Commercialized lanyards (T1 and T2) by themselves are unable to maintain the maximum arrest force at tolerable values. Fall Factor 2 Tests (FF = 2) Not all lanyard tests evaluating FF = 2 were able to retain the mass successfully, i.e., without snapping. Table 6 shows the maximum arrest forces or snapping forces and the elongations taking place in the samples after the tests had been completed. As can be appreciated in Figure 7, the commercialized lanyards present curves with larger slopes. Test 7 (T1) and Test 8 (T2), commercialized with webbings, present the highest maximum arrest forces-13 and 11 kN-with practically no elongation (less than 2.5 percent). Test 7 (T1) exceeds 8 kN widely at first impact and again exceeds 6 kN in the second rebound. As can be appreciated in Figure 7, the commercialized lanyards present curves with larger slopes. Test 7 (T1) and Test 8 (T2), commercialized with webbings, present the highest maximum arrest forces-13 and 11 kN-with practically no elongation (less than 2.5 percent). Test 7 (T1) exceeds 8 kN widely at first impact and again exceeds 6 kN in the second rebound. Less than 1 s after the first impact, in both figures (Figures 6 and 7), a second important rebound is observed, in which the value of the force generated is approximately half the force of the first impact. All the commercialized lanyards (T1) based on ropes, Tests 5 and 6, show small elongation, less than 8 percent, behaving better than webbings (Tests 7 and 8), but the values obtained in textile rope prototypes (PT1 and PT2) are greater than 15 percent. Commercialized lanyards (T1 and T2) by themselves are unable to maintain the maximum arrest force at tolerable values. Fall Factor 2 Tests (FF = 2) Not all lanyard tests evaluating FF = 2 were able to retain the mass successfully, i.e., without snapping. Table 6 shows the maximum arrest forces or snapping forces and the elongations taking place in the samples after the tests had been completed. Less than 1 s after the first impact, in both figures (Figures 6 and 7), a second important rebound is observed, in which the value of the force generated is approximately half the force of the first impact. All the commercialized lanyards (T1) based on ropes, Tests 5 and 6, show small elongation, less than 8 percent, behaving better than webbings (Tests 7 and 8), but the values obtained in textile rope prototypes (PT1 and PT2) are greater than 15 percent. Commercialized lanyards (T1 and T2) by themselves are unable to maintain the maximum arrest force at tolerable values. Fall Factor 2 Tests (FF = 2) Not all lanyard tests evaluating FF = 2 were able to retain the mass successfully, i.e., without snapping. Table 6 shows the maximum arrest forces or snapping forces and the elongations taking place in the samples after the tests had been completed. Restricting this study to only those having a length of about 1.5 m, prototypes (PT1 and PT2) group (Tests 9, 10, 11, 12), the results are better than those obtained in the commercialized (T1 and T2) group (Tests 13,14,15,16), for the reason that in the first group, only one prototype snapped, while in the second group, three commercialized lanyards failed. In addition, among those that retained the load, the maximum arrest force presented low values in the first group. Test 11 (PT2) and Test 12 (PT2) showed the best responses, as was the case when FF = 1 was analyzed. FF = 2 for Test 11 showed a strain of 0.38 and a maximum force of 8521 N almost succeeds in retaining a load falling from over 3.5 m in freefall. Figure 8 refers to the dynamic behavior of prototypes subjected to FF = 2. As can be seen, the mass was retained except for Test 10 (PT1 made with low stretch kernmantle rope). Test 9 (PT1) showed a maximum arrest force of 12,632 N with an elongation of 20.87 percent. However, none of these four lanyards (PT1 and PT2) were able to retain the mass at tolerable forces, lower than 8 kN. Restricting this study to only those having a length of about 1.5 m, prototypes (PT1 and PT2) group (Tests 9, 10, 11, 12), the results are better than those obtained in the commercialized (T1 and T2) group (Tests 13,14,15,16), for the reason that in the first group, only one prototype snapped, while in the second group, three commercialized lanyards failed. In addition, among those that retained the load, the maximum arrest force presented low values in the first group. Test 11 (PT2) and Test 12 (PT2) showed the best responses, as was the case when FF = 1 was analyzed. FF = 2 for Test 11 showed a strain of 0.38 and a maximum force of 8521 N almost succeeds in retaining a load falling from over 3.5 m in freefall. Figure 8 refers to the dynamic behavior of prototypes subjected to FF = 2. As can be seen, the mass was retained except for Test 10 (PT1 made with low stretch kernmantle rope). Test 9 (PT1) showed a maximum arrest force of 12,632 N with an elongation of 20.87 percent. However, none of these four lanyards (PT1 and PT2) were able to retain the mass at tolerable forces, lower than 8 kN. In Test 10 (PT1), the failure occurred in the strangulation of the first knot (Figure 9), under 7000 N, which means a reduction of more than 75 percent in static resistance, contrary to what the manufacturing companies claim. Furthermore, the core of the ropes underwent damage in the contact area of the connector. In Test 10 (PT1), the failure occurred in the strangulation of the first knot (Figure 9), under 7000 N, which means a reduction of more than 75 percent in static resistance, contrary to what the manufacturing companies claim. Furthermore, the core of the ropes underwent damage in the contact area of the connector. The results of lanyards of length around 1500 mm are shown, Test 13 (T1) shows that the rigid mass was retained at a maximum arrest force of 16,178 N and a strain of 0.06 (Table 6). This force observed is 4 kN higher than that for Test 9 using low stretch kernmantle rope (PT1). Moreover, The results of lanyards of length around 1500 mm are shown, Test 13 (T1) shows that the rigid mass was retained at a maximum arrest force of 16,178 N and a strain of 0.06 (Table 6). This force observed is 4 kN higher than that for Test 9 using low stretch kernmantle rope (PT1). Moreover, Figure 10 also shows the samples after Tests 14, 15 and 16 were carried out. Test 14 (T1) failed at 8228 N. Test 15 (T1) failed at 5455 N in one of the two connectors (see Figure 11), which means a reduction of 79 percent resistance with respect to the static resistance compared with the connector values The results of lanyards of length around 1500 mm are shown, Test 13 (T1) shows that the rigid mass was retained at a maximum arrest force of 16,178 N and a strain of 0.06 (Table 6). This force observed is 4 kN higher than that for Test 9 using low stretch kernmantle rope (PT1). Moreover, Figure 10 also shows the samples after Tests 14, 15 and 16 were carried out. Test 14 (T1) failed at 8228 N. Test 15 (T1) failed at 5455 N in one of the two connectors (see Figure 11), which means a reduction of 79 percent resistance with respect to the static resistance compared with the connector values offered by manufacturing companies. In Test 16 (T2), the damage occurred at 7941 N, showing a reduction in static resistance of more than 68 percent of that declared by the manufacturing companies, and stipulated for connectors in static tests. The reason for these high values resides in the very stiffness of the webbings and the insufficient elongation the experiment required. The results of lanyards of length around 1500 mm are shown, Test 13 (T1) shows that the rigid mass was retained at a maximum arrest force of 16,178 N and a strain of 0.06 (Table 6). This force observed is 4 kN higher than that for Test 9 using low stretch kernmantle rope (PT1). Moreover, Figure 10 also shows the samples after Tests 14, 15 and 16 were carried out. Test 14 (T1) failed at 8228 N. Test 15 (T1) failed at 5455 N in one of the two connectors (see Figure 11), which means a reduction of 79 percent resistance with respect to the static resistance compared with the connector values offered by manufacturing companies. In Test 16 (T2), the damage occurred at 7941 N, showing a reduction in static resistance of more than 68 percent of that declared by the manufacturing companies, and stipulated for connectors in static tests. The reason for these high values resides in the very stiffness of the webbings and the insufficient elongation the experiment required. As seen in Figure 12, according to Tests 9, 11, 12 and 13, the greater the elongation of the rope, the less the maximum arrest force is. None of the lanyards tested could arrest the mass at forces lower than 6 kN. According to the PPE extensions drawn in the Figure 12, an elongation of 800 mm is necessary; this is a similar value to the deflection studied by the authors for edge protection systems in construction work. As seen in Figure 12, according to Tests 9, 11, 12 and 13, the greater the elongation of the rope, the less the maximum arrest force is. None of the lanyards tested could arrest the mass at forces lower than 6 kN. According to the PPE extensions drawn in the Figure 12, an elongation of 800 mm is necessary; this is a similar value to the deflection studied by the authors for edge protection systems in construction work. Discussion It is a fact that lanyards by themselves do not arrest falls from a height, but in conjunction with energy absorbers they are suitable for use in fall arrest systems. Therefore, the dynamic behavior of lanyards must be taken into consideration. In any case, when a fall arrest system is used, an energy absorber must be included to reduce the maximum arrest force to values under those established-6 kN in Europe, and 8 kN in the United States of America. Moreover, the energy absorber must be used in any work in height at every instance to counteract poor usage, change of system or carelessness on the part of the worker. This study responds to the need to underline that the implementation of EN 354 does not compel the system to feature fall shock absorption, let alone a lanyard dynamic requirement. However, Carrin observed that a great number of rope access works may well be subjected to FF = 1 and even to FF = 2 in the worst scenario. Even some specific and ordinary work-at-height may be subjected to FF of 0.3 and 1. In such cases, accidents are hardly avoidable. It is evident from the tests carried out that the hand-made prototypes devised by the authors (textile rope lanyards) show a better dynamic behavior than commercialized lanyards, absorbing more energy, obtaining lower impact force values and higher elongations. Elongation, energy absorption and maximum arrest force are closely linked, so that with greater elongation, more energy is absorbed, and less maximum arrest force is transmitted to the operator in the phenomenon of fall arrest. In order to reduce the arrest force, larger elongations are necessary, Discussion It is a fact that lanyards by themselves do not arrest falls from a height, but in conjunction with energy absorbers they are suitable for use in fall arrest systems. Therefore, the dynamic behavior of lanyards must be taken into consideration. In any case, when a fall arrest system is used, an energy absorber must be included to reduce the maximum arrest force to values under those established-6 kN in Europe, and 8 kN in the United States of America. Moreover, the energy absorber must be used in any work in height at every instance to counteract poor usage, change of system or carelessness on the part of the worker. This study responds to the need to underline that the implementation of EN 354 does not compel the system to feature fall shock absorption, let alone a lanyard dynamic requirement. However, Carrin observed that a great number of rope access works may well be subjected to FF = 1 and even to FF = 2 in the worst scenario. Even some specific and ordinary work-at-height may be subjected to FF of 0.3 and 1. In such cases, accidents are hardly avoidable. It is evident from the tests carried out that the hand-made prototypes devised by the authors (textile rope lanyards) show a better dynamic behavior than commercialized lanyards, absorbing more energy, obtaining lower impact force values and higher elongations. Elongation, energy absorption and maximum arrest force are closely linked, so that with greater elongation, more energy is absorbed, and less maximum arrest force is transmitted to the operator in the phenomenon of fall arrest. In order to reduce the arrest force, larger elongations are necessary, however, not so large that they make the use of the equipment inoperative. Maximum distance from anchorage to the ground is 6 m with 6 kN of maximum arrest force. To absorb more energy and reduce the stopping forces considerably, that distance would be increased so that the equipment would not be operational because it needs too much distance below the anchorage. Durability of the prototypes it is determined by the manufacturer of the ropes used to make the prototypes, and like any textile element, it depends on the hours of use and exposure to atmospheric agents. Table 7 shows the average results of lanyards tested in this paper. Data have been ordered according to the following items: Type of lanyard and fall factor. Maximum arrest force, elongation and strain, in their average values from Tables 5 and 6, have also been included in this table for a deeper study of the results. The results of this research attempt to improve the behavior of PPE against falls from height. The prototypes studied are manufactured according to the same standards (EN 1891 or EN 892); hence results obtained have a low dispersion. Conclusions Prototypes of dynamic ropes and knotted terminals (with no energy absorber) could safely retain FF = 1 falls. The lanyard prototypes studied in this paper can solve certain work situations, in which human errors end up compromising worker safety. Errors of this type account more than 90 percent of the total cases. Dynamic ropes, showing lower retention forces when FF = 2, achieve substantial good results. The prototypes of Tests 11 and 12 (PT2) with a length of 1.5 m (without connectors) show the best dynamic performance. These prototypes comply with the ANSI Z359.13 standard requirements in that they do not transmit the maximum arrest force of 8 kN in FF = 1, in 1.5 m free fall, which entails an average reduction of over 19 percent in the maximum established. Test 11 (PT2) with dynamic rope EN 892 and figure-of-eight knots in FF = 2 showed slight damage at 8521 N of impact force, making it very satisfactory. Certified lanyards made from webbings show a maximum arrest force about two times greater than that of prototype dynamic rope lanyards devised by the authors (83.2 percent higher) when FF = 1 under the standard EN 354. All specimens were rendered useless after completion of the tests. The worst result was at Test 13 (T1) under EN 354, which retained the mass at a maximum peak force of 16,178 N, which implies possible serious or even fatal accidents in FF = 2 contexts. This doubles the impact force obtained in Test 11 (PT2). Having considered all the lanyards, webbings (T2) have shown a poor dynamic behavior. Consequently, the authors discourage the use of webbings without energy absorbers for work at heights. With regards to those tests in which the mass was successfully retained, the average maximum arrest force for FF = 2 was 32.3 percent higher than for FF = 1. It is emphasized that the requirement of static resistance does not guarantee the mass to be retained. The commercialized lanyards, with a static resistance of 22 kN, can snap at much lower forces in dynamic tests, at 5.4 kN (75 percent lower). European EN and ISO standards should include dynamic requirements for all lanyards, not only for adjustable ones, as stated in ANSI standards. In view of the results obtained and assuming possible operator failures, contemplated in Europe standards, a further step can be taken to demand a dynamic requirement below 8 kN for FF = 1. The ANSI Z359.3, ISO 10333-2, EN 358 and EN 354 static resistance requirement of 22 kN is of little relevance as the resistance obtained in the dynamic tests performed is much lower. Furthermore, this paper shows that the loading rate significantly reduces the static stress of some of the fall arrest components: a) EN 362 connectors that fail at 28 kN in static tests, fail at about 5.4 kN in dynamic tests; b) EN 354 lanyards that fail at 22 kN in static tests, fail at 8.2 kN in dynamic tests; and EN 1891 low stretch kernmantle ropes that fail at 27.3 kN in static tests, fail at approximately 6.5 kN in dynamic tests. Looking at the summary data in Table 7, with FF = 1 all tests retained the mass, while for FF = 2 only 50% of the tests were retained. For the tests of FF = 1, the average retention force of the prototypes (PT) was 7.48 kN compared to the commercialized lanyards (T) which obtained an average force of 11.09 kN, this means an increase of 48.26%. For FF = 1 the prototypes (PT) have an average elongation of 314 mm and a strain of 18.3%. For this same FF, the commercialized lanyards (T) obtained a strain of 4%, which means a stiffness 4.57 times greater. In the tests with FF = 2, for prototype lanyards (PT), the mass was retained in 75% of the tests. The average force and strain were 10.30 kN and 28%, respectively. At the commercialized lanyards (T), the mass was retained for only 25% of the tests. A force of 16.18 kN and a strain of 6% were obtained, which means a stiffness of 4.67 times greater. The standards that oversee the situation depicted above should include a requirement of dynamic strength to address the forces generated when the loading rate is very fast. In particular, in standard EN 362 for connectors, and in EN 354 for lanyards, it should be included in the before requirement. According to the present study, the following minimum dynamic requirements are recommended: A 100 Kg mass in a FF = 2 falling from a height of 4 m should be retained, and neither the lanyard nor the connector should fail at maximum arrest peak force lower than 8 kN. The knot, when tightened during the fall, constitutes an energy absorption element to be taken into account in lanyards. However, knots as energy absorption elements, and connector failure have not been thoroughly studied and will be tackled in the future. The conclusions presented in this document are a significant step towards improving the behavior of personal fall arrest systems. Among prototypes made with ropes with the same certification (EN 1891 or EN 892), no major differences in behavior have been appreciated, unsurprisingly due to the exhaustive controls on the production of Category III's personal protection equipment (PPE). One of the requirements that guarantees the homogeneity of the production is the control of the PPE by a certification company. In future works, it should be noted that in order to achieve conclusions with a larger scope, it would be advisable to extend the sample tested, increasing the number of manufacturers, different rope diameters and other countries' standards. |
A fund has been set up to raise money for the widow and two sons of a 33-year-old Burbank man who was killed in a head-on crash on Sunday.
The man, Roman Ramos Rubio, of Burbank was killed when his sedan was struck at the intersection of Buena Vista Street and Alameda Avenue by an SUV driven by 29-year-old Ivan Valle, also of Burbank, according to police.
Rubio is survived by his wife, Giselle, and two sons -- Ethan, 2, and 9-year-old Ryan, who was diagnosed with mild Autism Spectrum Disorder, according to the fund’s website.
Roman Rubio and his family had hardly been in the county for one year after waiting 22 years for his migration petition to be approved, after which he was able to join his parents and extended family in Los Angeles from the Philippines.
He was pronounced dead at the scene of the crash. Meanwhile, Valle on Tuesday pleaded not guilty to vehicular manslaughter in Los Angeles County Superior Court. Police allege he was intoxicated while driving without a valid driver’s license.
Roman Rubio’s death came after he and his family were able to realize their “long held dream” of moving into their first house in Burbank – this after working “12 hours a day, 7 days a week” at a custom automotive wheel manufacturer in Gardena, according to the website.
The Roman Rubio Family Fund was established on the GiveFoward website to help pay for funeral services and to provide “some short term financial assistance” to Roman Rubio’s wife and two boys. |
<gh_stars>1000+
import { createAutocomplete } from '../createAutocomplete';
describe('getRootProps', () => {
test('forwards the remaining props', () => {
const autocomplete = createAutocomplete({});
const rootProps = autocomplete.getRootProps({ customProps: {} });
expect(rootProps).toEqual(expect.objectContaining({ customProps: {} }));
});
test('returns a combobox role', () => {
const autocomplete = createAutocomplete({});
const rootProps = autocomplete.getRootProps({});
expect(rootProps.role).toEqual('combobox');
});
test('returns aria-expanded false when panel is closed', () => {
const autocomplete = createAutocomplete({
initialState: {
isOpen: false,
},
});
const rootProps = autocomplete.getRootProps({});
expect(rootProps['aria-expanded']).toEqual(false);
});
test('returns aria-expanded true when panel is open', () => {
const autocomplete = createAutocomplete({
initialState: {
isOpen: true,
},
});
const rootProps = autocomplete.getRootProps({});
expect(rootProps['aria-expanded']).toEqual(true);
});
test('returns aria-haspopup to listbox', () => {
const autocomplete = createAutocomplete({});
const rootProps = autocomplete.getRootProps({});
expect(rootProps['aria-haspopup']).toEqual('listbox');
});
test('returns undefined aria-owns when panel is closed', () => {
const autocomplete = createAutocomplete({
initialState: {
isOpen: false,
},
});
const rootProps = autocomplete.getRootProps({});
expect(rootProps['aria-owns']).toBeUndefined();
});
test('returns list id in aria-owns when panel is open', () => {
const autocomplete = createAutocomplete({
id: 'autocomplete',
initialState: {
isOpen: true,
},
});
const rootProps = autocomplete.getRootProps({});
expect(rootProps['aria-owns']).toEqual('autocomplete-list');
});
test('returns label id in aria-labelledby', () => {
const autocomplete = createAutocomplete({
id: 'autocomplete',
initialState: {
isOpen: true,
},
});
const rootProps = autocomplete.getRootProps({});
expect(rootProps['aria-labelledby']).toEqual('autocomplete-label');
});
});
|
Albania's Italian soccer coach says he has an easier time getting hold of Pope Francis than reaching the father of Adnan Januzaj in the hope of recruiting the Manchester United winger to the Balkan country's national team.
Born in Belgium to ethnic Albanians originally from Kosovo, Januzaj is being wooed by a number of national teams including Belgium and Albania.
Kosovo, too, hopes to lure the talented 18-year-old, having been granted the right by FIFA to play friendly matches six years after declaring independence from Serbia.
"We're stuck. We just don't know," Gianni De Biasi said.
"I and the heads of the federation have made every effort to contact him but the problem is his father, who does not give us even a normal answer," De Biasi told an Albanian morning television show.
"By the way, I find it easier to get in touch with Pope Francis than Abedin Januzaj," De Biasi lamented.
"By the way, I find it easier to get in touch with Pope Francis than Abedin Januzaj." - Gianni De Biasi
He said the next three years would be crucial for the player's career and that Turkey, Belgium and England were all in the hunt to recruit him.
Several national soccer teams in Europe, including Switzerland and Albania, count players born in Kosovo or of Kosovo origin in their ranks, a result of a high level of migration from the Balkans to escape poverty and a decade of war and upheaval in the 1990s.
They include Bayern Munich's Xherdan Shaqiri, an ethnic Albanian born in Kosovo but who grew up in Switzerland and plays for the Swiss national side. |
/*
* seg.cpp
*
* Copyright (c) 2013, <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above Copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above Copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the authors nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include "seg.h"
#include "ln_factrial_table.h"
#include <iostream>
#include <stdint.h>
#include <algorithm>
#include <vector>
#include <string>
#include <sstream>
#include <limits.h>
#include <string.h>
#include <math.h>
using namespace std;
namespace seg {
const std::string Seg::kAminoAcidCharacters = "ACDEFGHIKLMNPQRSTVWY";
const double Seg::kLn2 = 0.69314718055994530;
const double Seg::kLn20 = 2.9957322735539909;
Seg::Seg() :
non_aa_char_(kAminoAcidCharacters.size()), aa_code_map_(CHAR_MAX,
non_aa_char_) {
Initialize(12);
}
Seg::Seg(int window_inp) :
non_aa_char_(kAminoAcidCharacters.size()), aa_code_map_(CHAR_MAX,
non_aa_char_) {
Initialize(window_inp);
}
void Seg::Initialize(int window_inp) {
window_ = window_inp;
low_cut_ = 2.2;
high_cut_ = 2.5;
down_set_ = 0;
up_set_ = 1;
high_len_min_ = 0;
max_trim_ = 100;
InitAaCodeMap();
InitEntropies(window_);
}
Seg::~Seg(void) {
}
void Seg::InitAaCodeMap(void) {
int next_code = 0;
for (string::const_iterator it = kAminoAcidCharacters.begin();
it != kAminoAcidCharacters.end(); ++it, ++next_code) {
uint8_t c = (uint8_t) *it;
aa_code_map_[c] = next_code;
}
return;
}
int Seg::MaskSequence(const std::string &seq, std::string *masked_seq) {
if (seq.size() < (size_t)window_) {
return 1;
}
vector<char> copyed_seq(seq.length());
memcpy(©ed_seq[0], &seq[0], seq.length());
Window masked_sequence_basic_window;
BuildSequence(©ed_seq[0], seq.length(), &masked_sequence_basic_window);
SegmentPtr segs;
MakeSeqments(masked_sequence_basic_window, 0, &segs);
MergeSegments(masked_sequence_basic_window, segs);
MakeMaskedSequence(masked_sequence_basic_window, segs, masked_seq);
return 0;
}
void Seg::MakeSeqments(Window &seq, int offset, SegmentPtr *segs) {
vector<double> H(0);
CalculateSequenceEntropies(seq, &H);
if (H.empty()) {
return;
}
int first = down_set_;
int last = seq.length - up_set_;
int left_limit = first;
for (int i = first; i <= last; i++) {
if (H[i] <= low_cut_ && H[i] != -1) {
int left_i = FindLeft(i, left_limit, &H[0]);
int right_i = FindRight(i, last, &H[0]);
int left_end = left_i - down_set_;
int right_end = right_i + up_set_ - 1;
Window window;
BuildWindow(seq, left_end, right_end - left_end + 1, &window);
Trim(window, &left_end, &right_end);
if (i + up_set_ - 1 < left_end) {
int lend = left_i - down_set_;
int rend = left_end - 1;
Window left_seq;
BuildWindow(seq, lend, rend - lend + 1, &left_seq);
SegmentPtr left_segs;
MakeSeqments(left_seq, offset + lend, &left_segs);
if (left_segs) {
if (!(*segs)) {
*segs = left_segs;
} else {
AppendSequment(*segs, left_segs);
}
}
}
SegmentPtr seg = SegmentPtr(new Segment());
seg->begin = left_end + offset;
seg->end = right_end + offset;
seg->next = SegmentPtr();
if (!(*segs)) {
*segs = seg;
} else {
AppendSequment(*segs, seg);
}
i = std::min(right_i, right_end + down_set_);
left_limit = i + 1;
}
}
return;
}
bool Seg::BuildWindow(Window &parent, int start, int length,
Seg::Window* window) {
if (start
< 0|| length < 0 || start + length > parent.length || window == NULL) {
return false;
}
window->start = start;
window->length = length;
window->seq = parent.seq + start;
window->parent_length = parent.length;
window->entropy = -2.0;
window->composition.clear();
window->state.clear();
SetState(window);
return window;
}
void Seg::SetState(Window *window) {
if (window->composition.empty()) {
SetComposition(window);
}
window->state.resize(21, 0);
int nel = 0;
for (int aa = 0; aa < 20; ++aa) {
int c = window->composition[aa];
if (c != 0) {
window->state[nel] = c;
++nel;
}
}
window->state[nel] = 0;
std::sort(window->state.begin(), window->state.begin() + nel,
std::greater<int>());
window->entropy = CalculateEntropy(window->state);
return;
}
void Seg::SetComposition(Window *window) {
window->composition.resize(20, 0);
int *comp = &(window->composition[0]);
char *seq = &(window->seq[0]);
int length = window->length;
for (int i = 0; i < length; ++i) {
int aa = seq[i];
if (aa_code_map_[aa] != non_aa_char_) {
++comp[aa_code_map_[aa]];
}
}
return;
}
void Seg::SetEntropy(Window *window) {
if (window->state.empty()) {
SetState(window);
}
window->entropy = CalculateEntropy(window->state);
return;
}
void Seg::CalculateSequenceEntropies(Window &seq, std::vector<double> *H) {
if (window_ > seq.length) {
H->clear();
return;
}
H->resize(seq.length, -1);
Window window;
BuildWindow(seq, 0, window_, &window);
SetEntropy(&window);
int first = down_set_;
int last = seq.length - up_set_;
for (int i = first; i <= last; i++) {
(*H)[i] = window.entropy;
SiftWindow1(&window);
}
return;
}
bool Seg::SiftWindow1(Window *window) {
int length = window->length;
if ((++window->start + length) > window->parent_length) {
--window->start;
return false;
}
int *comp = &(window->composition[0]);
int sequence_first = window->seq[0];
if (aa_code_map_[sequence_first] != non_aa_char_) {
DecrementState(&(window->state[0]), comp[aa_code_map_[sequence_first]]);
--comp[aa_code_map_[sequence_first]];
}
int sequence_last = window->seq[length];
++window->seq;
if (aa_code_map_[sequence_last] != non_aa_char_) {
IncrementState(&(window->state[0]), comp[aa_code_map_[sequence_last]]);
++comp[aa_code_map_[sequence_last]];
}
if (window->entropy > -2.0) {
window->entropy = CalculateEntropy(window->state);
}
return true;
}
int Seg::FindLeft(int start, int limit, double *H) {
int position = 0;
for (position = start; position >= limit; --position) {
if (H[position] == -1)
break;
if (H[position] > high_cut_)
break;
}
return position + 1;
}
int Seg::FindRight(int start, int limit, double *H) {
int positoin = 0;
for (positoin = start; positoin <= limit; ++positoin) {
if (H[positoin] == -1)
break;
if (H[positoin] > high_cut_)
break;
}
return positoin - 1;
}
void Seg::Trim(Window &seq, int *left_end, int *right_end) {
int current_left_end = 0;
int current_rend = seq.length - 1;
int min_length = 1;
if ((seq.length - max_trim_) > min_length) {
min_length = seq.length - max_trim_;
}
double min_prob = 1.0;
for (int len = seq.length; len > min_length; len--) {
Window window;
BuildWindow(seq, 0, len, &window);
int i = 0;
bool shift = true;
while (shift) {
double prob = GetProbability(&(window.state[0]), len);
if (prob < min_prob) {
min_prob = prob;
current_left_end = i;
current_rend = len + i - 1;
}
shift = SiftWindow1(&window);
++i;
}
}
*left_end = *left_end + current_left_end;
*right_end = *right_end - (seq.length - current_rend - 1);
return;
}
double Seg::GetProbability(int *state, int total) {
double totseq = ((double) total) * kLn20;
double ans = LnAss(state) + LnPerm(state, total) - totseq;
return ans;
}
double Seg::LnPerm(int *state, int total) {
double ans = kLnFactrialTable[total];
for (int i = 0; state[i] != 0; ++i) {
ans -= kLnFactrialTable[state[i]];
}
return ans;
}
double Seg::LnAss(int *state) {
double ans = kLnFactrialTable[20];
if (state[0] == 0) {
return ans;
}
int total = 20;
int current_class = 1;
int previous_state_value = state[0];
for (int i = 1; i < 20; ++i) {
int state_value = state[i];
if (state_value == previous_state_value) {
++current_class;
} else {
total -= current_class;
ans -= kLnFactrialTable[current_class];
if (state_value == 0) {
current_class = total;
break;
} else {
current_class = 1;
}
}
previous_state_value = state_value;
}
ans -= kLnFactrialTable[current_class];
return ans;
}
void Seg::MergeSegments(Window &seq, SegmentPtr &segs) {
if (!segs) {
return;
}
if (segs->begin < high_len_min_) {
segs->begin = 0;
}
SegmentPtr seg = segs;
SegmentPtr nextseg = seg->next;
while (nextseg) {
int len = nextseg->begin - seg->end - 1;
if (len < high_len_min_) {
seg->end = nextseg->end;
seg->next = nextseg->next;
nextseg = seg->next;
} else {
seg = nextseg;
nextseg = seg->next;
}
}
int len = seq.length - seg->end - 1;
if (len < high_len_min_) {
seg->end = seq.length - 1;
}
return;
}
void Seg::MakeMaskedSequence(Window &seq, SegmentPtr &segs,
std::string *masked_sequence) {
stringstream masked_sequence_stream("");
char *sequence = &(seq.seq[0]);
int sequence_length = seq.length;
Upper(sequence, seq.length);
for (SegmentPtr seg = segs; seg; seg = seg->next) {
int begin = seg->begin;
int end = seg->end;
memset(sequence + begin, 'x', end - begin + 1);
}
for (int i = 0; i < sequence_length; ++i) {
masked_sequence_stream << sequence[i];
}
*masked_sequence = masked_sequence_stream.str();
return;
}
void Seg::AppendSequment(SegmentPtr &segs, SegmentPtr &seg) {
SegmentPtr temp = segs;
while (1) {
if (temp->next == NULL) {
temp->next = seg;
break;
} else {
temp = temp->next;
}
}
return;
}
void Seg::InitEntropies(int window) {
entropies_.resize(window + 1);
double double_window = window;
for (int i = 1; i <= window; ++i) {
double x = i / double_window;
entropies_[i] = -x * log(x) / kLn2;
}
the_window_ = window;
}
double Seg::CalculateEntropy(const std::vector<int> &state) {
int total = 0;
int state_length = 0;
for (state_length = 0; state[state_length] != 0; ++state_length) {
total += state[state_length];
}
double ent = 0.0;
if (total == the_window_) {
for (int i = 0; i < state_length; ++i) {
ent += entropies_[state[i]];
}
return ent;
}
if (total == 0) {
return 0.0;
}
double total_reciprocal = 1. / (double) total;
for (int i = 0; i < state_length; ++i) {
double v = state[i];
ent += v * log(v * total_reciprocal);
}
return -ent * total_reciprocal / kLn2;
}
void Seg::BuildSequence(char *seq, int length, Window *sequence) {
sequence->length = length;
sequence->seq = seq;
sequence->parent_length = length;
sequence->state.clear();
sequence->composition.clear();
SetState(sequence);
return;
}
void Seg::DecrementState(int *state, int current_state_value) {
for (int i = 0; state[i] != 0; ++i) {
if (state[i] == current_state_value
&& state[i + 1] < current_state_value) {
--state[i];
break;
}
}
}
void Seg::IncrementState(int *state, int current_state_value) {
for (int i = 0;; ++i) {
if (state[i] == current_state_value) {
++state[i];
break;
}
}
}
void Seg::Upper(char *string, size_t len) {
for (uint32_t i = 0; i < len; ++i) {
string[i] = toupper(string[i]);
}
}
}
|
<reponame>ericvaandering/cms_consistency<filename>old/direct/replica_count_for_rse.py
from __future__ import print_function
import json, re, getopt, os
import sys, uuid
from partition import part
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String
from sqlalchemy.dialects.postgresql import UUID
from sqlalchemy.dialects.oracle import RAW
from sqlalchemy.orm import sessionmaker
from sqlalchemy.dialects.postgresql import UUID, JSONB
from sqlalchemy.dialects.oracle import RAW, CLOB
from sqlalchemy.dialects.mysql import BINARY
from sqlalchemy.types import TypeDecorator, CHAR, String
#from sqlalchemy import schema
Usage = """
python replica_count_for_rse.py [-a] -c <config.json> <rse_name>
-a -- count all replicas, not only Active
"""
class GUID(TypeDecorator):
"""
Platform-independent GUID type.
Uses PostgreSQL's UUID type,
uses Oracle's RAW type,
uses MySQL's BINARY type,
otherwise uses CHAR(32), storing as stringified hex values.
"""
impl = CHAR
def load_dialect_impl(self, dialect):
if dialect.name == 'postgresql':
return dialect.type_descriptor(UUID())
elif dialect.name == 'oracle':
return dialect.type_descriptor(RAW(16))
elif dialect.name == 'mysql':
return dialect.type_descriptor(BINARY(16))
else:
return dialect.type_descriptor(CHAR(32))
def process_bind_param(self, value, dialect):
if value is None:
return value
elif dialect.name == 'postgresql':
return str(value).lower()
elif dialect.name == 'oracle':
return uuid.UUID(value).bytes
elif dialect.name == 'mysql':
return uuid.UUID(value).bytes
else:
if not isinstance(value, uuid.UUID):
return "%.32x" % uuid.UUID(value)
else:
# hexstring
return "%.32x" % value
def process_result_value(self, value, dialect):
if value is None:
return value
elif dialect.name == 'oracle':
return str(uuid.UUID(bytes=value)).replace('-', '').lower()
elif dialect.name == 'mysql':
return str(uuid.UUID(bytes=value)).replace('-', '').lower()
else:
return str(uuid.UUID(value)).replace('-', '').lower()
class DBConfig:
def __init__(self, cfg):
self.Host = cfg["host"]
self.Port = cfg["port"]
self.Schema = cfg["schema"]
self.User = cfg["user"]
self.Password = cfg["password"]
self.Service = cfg["service"]
def dburl(self):
return "oracle+cx_oracle://%s:%s@%s:%s/?service_name=%s" % (
self.User, self.Password, self.Host, self.Port, self.Service)
class Config:
def __init__(self, cfg_file_path):
cfg = json.load(open(cfg_file_path, "r"))
self.DBConfig = DBConfig(cfg["database"])
self.DBSchema = self.DBConfig.Schema
self.DBURL = self.DBConfig.dburl()
self.RSEs = cfg["rses"]
my_name = os.environ.get("USER")
rucio_cfg = cfg.get("rucio", {})
self.RucioAccount = rucio_cfg.get("account",my_name)
def lfn_to_pfn(self, rse_name):
rules = self.RSEs.get(rse_name, self.RSEs.get("*", {}))["lfn_to_pfn"]
return [ {
"path":re.compile(r["path"]),
"out":r["out"].replace("$", "\\")
} for r in rules
]
Base = declarative_base()
opts, args = getopt.getopt(sys.argv[1:], "c:a")
opts = dict(opts)
if not args or not "-c" in opts:
print (Usage)
sys.exit(2)
config = Config(opts["-c"])
Base.metadata.schema = config.DBSchema
all_replicas = "-a" in opts
class Replica(Base):
__tablename__ = "replicas"
path = Column(String)
state = Column(String)
rse_id = Column(GUID(), primary_key=True)
scope = Column(String, primary_key=True)
name = Column(String, primary_key=True)
class RSE(Base):
__tablename__ = "rses"
id = Column(GUID(), primary_key=True)
rse = Column(String)
rse_name = args[0]
engine = create_engine(config.DBURL, echo=True)
Session = sessionmaker(bind=engine)
session = Session()
rse = session.query(RSE).filter(RSE.rse == rse_name).first()
if rse is None:
print ("RSE %s not found" % (rse_name,))
sys.exit(1)
rse_id = rse.id
print ("rse_id:", type(rse_id), rse_id)
#
# lfn-to-pfn
#
rules = config.lfn_to_pfn(rse_name)
batch = 100000
if all_replicas:
replicas = session.query(Replica).filter(Replica.rse_id==rse_id).yield_per(batch)
else:
replicas = session.query(Replica) \
.filter(Replica.rse_id==rse_id) \
.filter(Replica.state=='A') \
.yield_per(batch)
n = replicas.count()
print (n)
|
Multi-Input RNAi-Based Logic Circuit for Identification of Specific Cancer Cells A synthetic biomolecular circuit identifies abnormal cell states by the integration of multiple endogenous microRNA inputs. Engineered biological systems that integrate multi-input sensing, sophisticated information processing, and precisely regulated actuation in living cells could be useful in a variety of applications. For example, anticancer therapies could be engineered to detect and respond to complex cellular conditions in individual cells with high specificity. Here, we show a scalable transcriptional/posttranscriptional synthetic regulatory circuita cell-type classifierthat senses expression levels of a customizable set of endogenous microRNAs and triggers a cellular response only if the expression levels match a predetermined profile of interest. We demonstrate that a HeLa cancer cell classifier selectively identifies HeLa cells and triggers apoptosis without affecting non-HeLa cell types. This approach also provides a general platform for programmed responses to other complex cell states. |
Gonadal and sexual function in men treated for childhood cancer. BACKGROUND Insofar as a majority of children with malignant diseases are cured, the late effects of treatment are of major importance. PROCEDURE A retrospective study was conducted of gonadal and sexual function of 77 adult male survivors of childhood malignancies treated and cured at a single center from 1970 to 1989 and followed for a median of 13 years. The study included an interview, physical examination, sperm test, and hormonal analyses. RESULTS One-third of the patients were treated for hematological malignancies, one-third for CNS tumors, and one-third for other malignancies. Eleven patients required androgen substitution after treatment for tumors of the pituitary-hypothalamic region or acute lymphoblastic leukemia including testicular irradiation and/or orchiectomy. In three patients the testicles were removed. The other eight had small testicles, and those providing sperm samples had azoospermia, and sexual function was disturbed in most of them. Most of the remaining 66 patients had small testicles. Normozoospermia was found in 63%, oligozoospermia in 20%, and azoospermia in 17%. Although there was a highly significant correlation between testicular volume and sperm test, 25% of patients with testicles of <10 ml had normozoospermia. Sexual function was normal in 46 patients, and they were married at a frequency comparable to the normal population. Twenty-one patients had no signs of gonadal dysfunction. CONCLUSIONS Patients treated for tumors in the hypothalamic-pituitary region or treated with testicular irradiation or with high doses of alkylating agents had severe gonadal and sexual dysfunction. Most of the other patients had good prospects for preserved gonadal and sexual function. |
. This investigation was aimed at the study of peculiarities of of lymphatic bed of organ of vision in herbivorous (cattle) and predatory (dog) animals, which have some anatomical differences in the eye structure. The methods of preparation, morphometry, light and electron microscopy were used. It was found that in the cattle, lymphatic capillaries of the sclera have lower density of distribution than those in dogs. In the cattle, extraorgan lymphatic vessels of lower and upper eyelids could be subdivided into a lateral and medial groups. The former group drains into parotid lymph node, while the latter group is connected to a mandibular one. In dogs an additional pathway of lymph transport was found that carried the lymph through the extraorgan lymphatic vessels into the facial lymph node. |
Research on Contour Interpolation in Reverse Engineering In reverse engineering and rapid prototyping, several intermediate contours interpolated between adjacent two-layer ICT slice are needed to meet the requirement of rapid prototyping. A method of linear interpolation based on minimum distance is adopted in this paper. On the basis of the research on interpolation problem between single contours, some researches on the interpolation problem of multiply contours was done in this paper. Satisfactory results are attained by the experiments of a vehicle engine. |
The present invention relates to a photoconductive imaging device, such as a vidicon camera tube or electrophotographic device, and particularly to a photoconductive imaging device having a solid insulator material on a surface of a body of semiconductor material and forming a blocking contact with the semiconductor material.
The target for a vidicon type camera tube, in general, comprises a photoconductor body having one surface which is exposed to the light pattern being viewed and an opposed surface which is scanned by an electron beam. A major problem in the design of such targets, particularly where the photoconductor is a semiconductor material, is to insure that the scanning electron beam makes blocking contact to the photoconductor, i.e., the electrons do not enter the interior volume of the photoconductor. At the same time, it is necessary that the holes generated in the photoconductor by the viewed light pattern can leave the photoconductor on the scanned side in order to be combined with and be neutralized by the electrons from the scanning beam.
Ordinarily, such blocking contact has been provided either by a high work function material on the scanned surface of the photoconductor which forms a Schottky surface barrier junction, or by a P type conductivity region along the scanned surface of an N type conductivity photoconductor to form a blocking PN junction at the scanned surface. However, in both of these techniques, the surface of the photoconductor becomes laterally too conducting to preserve the charge pattern and must be broken up or structured in some way into an array of individual blocking contacts so as to preserve surface insulation. The need to have a structured surface has the disadvantage that the process required to make such a surface is relatively expensive and defect prone. Further, camera tubes which have employed insulator type layers in non-structured camera tube targets, on semiconductor photoconductive bodies, such as CdSe, have required relatively expensive and complicated processing to avoid, to some extent, undesirable levels of dark current, and/or other important characteristics.
The photoconductor plate of an electrophotographic device is similar to the target of a camera tube and has similar problems. |
// New returns a WavefrontSpanReporter for the given `sender`.
func New(sender senders.Sender, app application.Tags, setters ...Option) WavefrontSpanReporter {
r := &reporter{
sender: sender,
source: hostname(),
application: app,
}
for _, setter := range setters {
setter(r)
}
r.metrics = reporting.NewReporter(
sender,
r.application,
reporting.Interval(time.Second*60),
reporting.Source(r.source),
reporting.Prefix("tracing.derived"),
)
r.heartbeater = application.StartHeartbeatService(
sender,
r.application,
r.source,
"go",
"opentracing",
)
return r
} |
Risk of Care Home Placement following Acute Hospital Admission: Effects of a Pay-for-Performance Scheme for Dementia Introduction The Quality and Outcomes Framework, or QOF, rewards primary care doctors (GPs) in the UK for providing certain types of care. Since 2006, GPs have been paid to identify patients with dementia and to conduct an annual review of their mental and physical health. During the review, the GP also assesses the carers support needs, including impact of caring, and ensures that services are co-ordinated across care settings. In principle, this type of care should reduce the risk of admission to long-term residential care directly from an acute hospital ward, a phenomenon considered to be indicative of poor quality care. However, this potential effect has not previously been tested. Methods Using English data from 2006/07 to 2010/11, we ran multilevel logit models to assess the impact of the QOF review on the risk of care home placement following emergency admission to acute hospital. Emergency admissions were defined for (a) people with a primary diagnosis of dementia and (b) people with dementia admitted for treatment of an ambulatory care sensitive condition. We adjusted for a wide range of potential confounding factors. Results Over the study period, 19% of individuals admitted to hospital with a primary diagnosis of dementia (N = 31,120) were discharged to a care home; of those admitted for an ambulatory care sensitive condition (N = 139,267), the corresponding figure was 14%. Risk factors for subsequent care home placement included older age, female gender, vascular dementia, incontinence, fall, hip fracture, and number of comorbidities. Better performance on the QOF review was associated with a lower risk of care home placement but only when the admission was for an ambulatory care sensitive condition. Conclusions The QOF dementia review may help to reduce the risk of long-term care home placement following acute hospital admission. Introduction Dementia is a chronic and progressive condition, characterized by memory loss, mood swings, and difficulties in communication, mobility, reasoning and self-care. The disease has a devastating impact on the lives of people living with dementia, their families and carers. In the UK, the number of people living with dementia is predicted to reach two million by 2050, more than doubling the current annual total cost of care. Inpatient care is costly and people with dementia occupy around one in four acute hospital beds. At the end of their hospital stay, patients should not be transferred directly to long-term residential care from an acute hospital ward unless there are exceptional circumstances. Instead, they should be offered care in a non-acute setting, or support packages in their own home. Since 2006, general practitioners (GPs) in England have been paid to identify and annually review their patients with dementia as part of the pay-for-performance scheme known as the Quality and Outcomes Framework (QOF). The QOF dementia review is a face-to-face consultation that addresses the support needs of the patient and their carer, including: the patient's physical and mental health; the carer's need for information; the impact of caring on the carer; and communication and coordination arrangements across organisational boundaries. In principle, the QOF dementia review should help facilitate appropriate discharge arrangements and ensure carers are well supported. This has potential to reduce the risk that acute hospital patients with dementia are discharged directly to long-term residential care. Methods We ran multilevel logit models to test the effect of practice performance on the QOF dementia review on the risk of discharge to care home following acute hospital admission. Our response variable was care home placement following emergency hospital admission. As people with dementia often have complex health and social care needs, we adjusted for an array of potential confounders. Study sample We used data from Hospital Episode Statistics (HES) for England and our unit of analysis was a 'spell' (or admission) which is defined as the period from hospital admission to hospital discharge. A patient can experience several hospital admissions within the same year. We investigated two types of patients: people admitted to hospital with a primary diagnosis of dementia and people with dementia who were admitted to hospital for treatment of an ambulatory care sensitive condition. We mapped Read codes-the clinical codes used in UK primary care-for the QOF dementia register to the ICD10 diagnostic codes used for hospital care, so that the criteria for identifying hospital admissions matched the eligibility criteria for the QOF dementia register. The final set of ICD10 codes for dementia is provided in Table 1. Next, we identified two groups of patients from HES data. The first group of patients (sample 1) had to have one of these dementia codes as a primary diagnosis. The second group (sample 2) included people with dementia who had been admitted to hospital for treatment of an ambulatory care sensitive condition. In sample 2, individuals had to have one of the dementia ICD10 codes coded in either this admission (as a secondary diagnosis) or in a previous hospital admission (as a primary or secondary diagnosis). We restricted the sample of hospitals to acute providers. We included admissions between 2006/07 and 2010/11 and used 2011/12 data to obtain complete records for unfinished admissions beginning before the end of the financial year (i.e. March 2011). We excluded admissions longer than 270 days as these patients are less likely to have a QOF dementia review during the year. We also excluded elective admissions; admissions in which the patient died in hospital; and admissions from care homes. Quality of care The primary explanatory variable of interest was the quality of care provided by the practice, proxied by the QOF indicator scores for the annual dementia review. The face-to-face review includes four elements: 1) physical and mental health of the patient; 2) the carer's need for information; 3) impact of caring on carer; and 4) communication and coordination measures with secondary care, and other sectors where relevant. In principle, the annual review should ensure that appropriate support arrangements are in place so that if patients are admitted to an acute hospital ward, then there is less risk that they will be discharged to long-term residential care. The review also offers the opportunity to discuss decisions about long-term care in a proactive and timely manner. During our study period, GP practices could earn up to 15 points for reviewing their patients with dementia. The exact number of points earned depends on the percentage of patients reviewed and the 'thresholds' defined for the QOF indicator-in this case, the lower and upper thresholds were 25% and 60% respectively (achievement could range from 0% to 100%). Practices reviewing fewer than 25% of eligible patients received no points, and those reviewing 60% or more of patients achieved the full 15 points. Practices achieving a rate between these lower and upper thresholds received a proportion of the points. Therefore, a higher QOF review score indicates better performance. The financial reward is based on the number of points and the price per point (about £125 at the time of the study), and is adjusted for practice list size and disease prevalence within the practice. The QOF indicators for dementia were introduced in April 2006, and we compiled panel data covering the financial years 2006/07 to 2010/11. QOF indicator scores are freely available at practice-level (http://qof.hscic.gov.uk/), but are not published at patient-level. GPs may 'exception report' individuals considered unsuitable for treatment, or who are newly registered with the practice or newly diagnosed, or who make an informed dissent. We derived two measures of care quality based on the way 'exception reported' patients are modelled (see supporting information, S1 Appendix). Covariates Dementia is known to be independently associated with a higher risk of care home placement but other factors are also important. Details of our literature review of predictors of care home placement amongst older individuals (65+) with dementia are available in S2 Appendix. We developed an evidence-based list of variables to control for confounding influences. We classified these using the behavioural model of health services use: (a) users' predisposing characteristics, e.g. age, gender; (b) enabling variables, e.g. income, access to services; and (c) need variables, e.g. illness, symptoms, pain. Clinical and (most) demographic characteristics were derived from HES data. For the analysis of admissions for ambulatory care sensitive conditions, we generated dummy variables to distinguish acute, chronic and vaccine-preventable conditions. Informal care is an important predictor of care home placement, but HES does not record whether or not an individual has a carer. We therefore used small area level (Lower Super Output Area or 'LSOA') data from the 2001 Census to derive three measures of informal care reflecting different caregiving intensity, and another variable to model the probability that the person lived alone (S1 Appendix provides details of how the measures were derived). To control for deprivation, we used LSOA data on the uptake of Pension Credit from the Department for Work and Pensions. Pension Credit is a benefit for older people on low incomes and has two parts: guarantee credit, which tops up income; and savings credit, which is available only to people who have saved towards their retirement. Individuals may receive guarantee credit, savings credit, or both. The poorest individuals are likely to receive guarantee credit only. We used Rural and Urban classifications to identify whether patients resided in urban areas (i.e. settlements with over 10,000 people). To proxy the availability of care home beds with a local area, we calculated the number of care home beds within 10km of each LSOA centroid in each year of our study. We translated these values into a rate (beds per person) using the LSOA population aged 60 and over. S1 Appendix provides further details of how this measure was calculated. Model and statistical approach The dependent variable was a binary variable that took the value of 1 if a person with dementia was discharged to a care home after acute hospital admission. The discharge destination field in HES does not consistently distinguish residential and nursing home care. We therefore defined 'care home' to encompass all types of group home care. As our dependent variable was binary, we used logit models for the analysis. These are estimated by the maximum likelihood method providing estimates that are consistent and asymptotically normal and efficient. Estimated coefficients capture the effects on the log-odds-ratio. For both study samples, we ran five models: a base case analysis and four sensitivity analyses, to explore local health authority effects , hospital effects , multiple admissions for individual patients and an alternative specification of the QOF dementia review measure . S1 Appendix provides technical details of the statistical analyses, and S3 Appendix provides results tables with the marginal effects. Data quality and availability This was a retrospective longitudinal observational study based on routine datasets, and the quality of these datasets is important for ensuring findings are robust. We combined several national data sets, most of which can be accessed without restriction (Table 2). S1 Appendix provides additional information on how the variables were derived. Our outcome variable came from the Hospital Episode Statistics (HES). HES contains details of all admissions, outpatient appointments and A&E attendances for all NHS patients treated in NHS and non-NHS hospitals in England. It is a records-based system, with data collected during the patient's time at hospital. The release of HES data is subject to strict data governance requirements (see Ethics statement below). Prior to release, HSCIC cleans the data and removes duplicates; we also ran in-house checks to identify any remaining data errors. Our key explanatory variable was the QOF dementia review. QOF data are extracted automatically from GP clinical systems at the end of March each year, and, following verification checks, are used to calculate GP payments. QOF data are freely available and can be merged with HES data using the GP practice code. The Office for National Statistics (ONS) publishes a wide range of official statistics, including measures of unpaid care and living arrangements that are collected as part of the Census. Measures of population concentration (rurality) are also available from the ONS. These data are freely available (Table 2) and can be merged with HES data using the small area code. Our measures of deprivation were based on Pensions Credit data. These data, covering all claimants in England, are reported monthly by the Department for Work and Pensions, and can also be merged with HES using the small area code. Finally, our variable capturing the Ethics statement This was a retrospective analysis of previously collected, non-identifiable information, and involved no change in the management of patients. Obtaining individual consent was not feasible so patient records were anonymized and de-identified prior to analysis. The Health and Social Care Information Centre (HSCIC) handles requests for de-identified data and has a statutory responsibility to ensure there is an appropriate legal basis to permit the release and subsequent processing of data, that all necessary approvals are in place, and that organisations have appropriate arrangements and safeguards for secure data handling. The HSCIC approved the release of the Hospital Episode Statistics (http://www.hscic.gov.uk/hes) data to the University of York (Data Re-Use Agreements RU115; RU536; RU750). Results From 2006/07 to 2010/11, 31,120 individuals were admitted to hospital with a primary diagnosis of dementia, of which 19% were discharged to a care home (Table 3). For those admitted with ambulatory care sensitive conditions (N = 139,267), the corresponding figure was 14%. There was considerable variation across GP practices with respect to the percentage of their patients who were discharged to long-term care following an acute hospital admission (Fig 1). Table 4 shows results from the base case analyses. For admissions where dementia was the primary diagnosis, the dementia QOF review had no significant impact on the likelihood of care home placement, but there was a small negative effect if the admission was for an ambulatory care sensitive condition. This finding was significant at the 5% level across the five models (see S3 Appendix). For some factors, the association with risk of care home placement was consistent across all 10 models. In terms of predisposing factors, older age and female gender were associated with significantly higher risk. Need factors that predicted care home placement included incontinence, fall, hip fracture, cerebrovascular disease and senility, as well as a measure of the total number of additional comorbidities. Having cancer was associated with a higher likelihood of being discharged to a care home, but only for those where dementia was the primary reason for the hospital admission. Compared with those admitted for an acute ambulatory care sensitive condition, people admitted to hospital for chronic conditions (such as angina) were significantly less likely to be discharged to a care home, whereas those admitted for vaccine preventable conditions (such as pneumonia or influenza) were at higher risk. The influence of enabling factors was generally consistent across the models. For example, residing in an area where a higher proportion of people provided at least 50 hours of unpaid care per week was associated with significantly lower risk of care home admission. If the patient's local neighbourhood was characterised by high uptake of a benefit targeted towards those with greatest income deprivation (modelled by the 'guarantee' credit component of Pension Credit) then their risk of placement in long-term care was lower. In all models, local provision of care home beds had no effect on the probability of being discharged to a care home. For some enabling factors, such as whether patients lived in urban areas, or whether they came from a neighbourhood where a high proportion of older individuals lived alone, findings were mixed. The models also included dummies for each study year. Relative to the baseline year (2006/ 07), the risk of being discharged from hospital to a care home fell over the study period. This Effects of a Pay-for-Performance Scheme for Dementia on Risk of Care Home Placement may be due to a number of factors, but efforts to improve the co-ordination of dementia care in both the primary and secondary care sectors may play some part over the period. The signs and the statistical significance of the marginal effects (S3 Appendix), which describe how the explanatory variables affect the probability of discharge to a care home, were consistent with those of the odds ratios (Table 4). Discussion Since 2006, GPs in England have been paid to identify their patients with dementia and offer them an annual review. GPs are responsible for assessing the patient's mental and physical health, co-ordinating their care and determining the support needs of the patient and their carer. Our study, which uses robust multi-level modelling and five years of data covering all inpatients in England, is the first to address this question. The review was associated with a small but statistically significant reduction in the risk of care home placement but only when the admission was for an ambulatory care sensitive condition, rather than for dementia. Other important predictors of care home placement were older age, female gender, incontinence, cerebrovascular disease, hip fracture, falls, senility, and comorbidity. The QOF dementia review could target these risk factors to mitigate the risk of care home placement. For instance, people with osteoporosis or mobility problems might be referred to falls clinics; the review of physical health could include an assessment of risk of stroke; and people with incontinence could be referred to continence clinics. The study also found that pension-related benefit payments-in particular, 'guarantee credit' which is targeted at those with greater levels of income deprivation-was linked to a lower risk of care home placement, though this finding needs to be verified by further research. There are several important limitations to the analyses. First, although we used an evidencebased list of variables as covariates, some key predictors of nursing home placement could not be captured in our models due to a lack of data. Around 30% of individuals with dementia have behavioural symptoms, but hospitals record only a tiny fraction of cases. Furthermore, hospital data do not capture impaired patient functioning, although urinary incontinence may serve as a proxy for frailty. Evidence shows that unpaid care to be an important predictor of care home placement, but this could only be examined at small area level (LSOAs cover around 1500 individuals). Second, individual-level QOF data are not routinely reported. This means that the QOF score represents a probability of having had a review (though for some practices, the probability is 1, i.e. certain). In addition, QOF scores may not always accurately reflect the quality or appropriateness of care received. Third, our measure of care home admission is based on the discharge field in HES. This does not reliably differentiate type of care home (e.g. nursing home, residential home) and a small proportion (< 5%) are likely to be temporary placements. Many of these limitations could be addressed by a linked longitudinal patient-level dataset that enables individuals to be followed across care settings. Individual-level primary care data would provide greater insight into the QOF dementia review, documenting the timing of the review, what care and support were provided to patients and their carers in the review and subsequently (e.g. referral to social services). Conclusions This study is the first to investigate the effect of the annual QOF dementia review on care home placement following acute hospital admission, a marker of poor quality care. We found the review may reduce the probability of institutionalised care in those with dementia, and we also identified factors associated with a higher risk of institutionalisation that could help inform and guide the care and support provided by GP practices. Since our study, there has been a significant uplift in the number of points, and therefore rewards, associated with the QOF dementia review, signalling a strengthening of the financial incentives associated with providing good quality primary care for those with dementia. Moreover, additional financial incentive schemes for primary care have been introduced to tackle the perceived high levels of 'underdiagnosis' of dementia and to encourage GPs to support patients and carers more effectively. It is not clear how long the QOF system will endure in its current or an amended format, but in many healthcare systems the role of financial incentives and pay-for-performance schemes is likely to be reflected in some way in policy and practice, especially in priority areas such as dementia. Therefore, whatever the fate of the QOF, it is clear that GPs will continue to play a pivotal role in the care of people with dementia and their carers. |
/**
* Callback to get the actual IO plugin poll descriptors.
*
* @param io: The IO plugin interface.
* @param pfds: Filled Poll descriptor array.
* @param nr: Poll descriptor array size.
* @return: 0 on success, negative number otherwise.
*/
static int amux_poll_descriptors(snd_pcm_ioplug_t *io, struct pollfd *pfds,
unsigned int nr)
{
struct snd_pcm_amux *amx = to_pcm_amux(io);
snd_pcm_state_t state;
int ret;
AMUX_DBG("%s: enter PCM(%p)\n", __func__, io);
ret = amux_switch(amx);
if(ret != 0) {
AMUX_ERR("%s: PCM slave switching error %d\n", __func__, ret);
return ret;
}
state = snd_pcm_state(amx->slave);
if(state == SND_PCM_STATE_XRUN ||
state == SND_PCM_STATE_PREPARED) {
snd_pcm_prepare(amx->slave);
snd_pcm_start(amx->slave);
} else if (state != SND_PCM_STATE_RUNNING) {
AMUX_ERR("%s: Invalid PCM state %d\n", __func__, state);
return -EPIPE;
}
if(poller_descriptors(amx->poller, pfds, nr) < 0) {
AMUX_ERR("Can't get poll descriptor for user\n");
return -EPIPE;
}
return nr;
} |
package controller
import (
"github.com/kataras/iris/v12"
"irisweb/config"
"irisweb/provider"
"irisweb/request"
)
func CommentPublish(ctx iris.Context) {
//登录状态的用户,发布不进审核,否则进审核
status := uint(0)
userId := ctx.Values().GetIntDefault("adminId", 0)
if userId > 0 {
status = 1
}
var req request.PluginComment
if err := ctx.ReadJSON(&req); err != nil {
ctx.JSON(iris.Map{
"code": config.StatusFailed,
"msg": err.Error(),
})
return
}
req.Status = status
req.UserId = uint(userId)
req.Ip = ctx.RemoteAddr()
if req.ParentId > 0 {
parent, err := provider.GetCommentById(req.ParentId)
if err == nil {
req.ToUid = parent.UserId
}
}
comment, err := provider.SaveComment(&req)
if err != nil {
ctx.JSON(iris.Map{
"code": config.StatusFailed,
"msg": err.Error(),
})
return
}
ctx.JSON(iris.Map{
"code": config.StatusOK,
"msg": "发布成功",
"data": comment,
})
}
func CommentPraise(ctx iris.Context) {
var req request.PluginComment
if err := ctx.ReadJSON(&req); err != nil {
ctx.JSON(iris.Map{
"code": config.StatusFailed,
"msg": err.Error(),
})
return
}
comment, err := provider.GetCommentById(req.Id)
if err != nil {
ctx.JSON(iris.Map{
"code": config.StatusFailed,
"msg": err.Error(),
})
return
}
comment.VoteCount += 1
err = comment.Save(config.DB)
if err != nil {
ctx.JSON(iris.Map{
"code": config.StatusFailed,
"msg": err.Error(),
})
return
}
comment.Active = true
ctx.JSON(iris.Map{
"code": config.StatusOK,
"msg": "点赞成功",
"data": comment,
})
}
func ArticleCommentList(ctx iris.Context) {
ctx.Params().Set("itemType", "article")
itemId := uint(ctx.Params().GetIntDefault("id", 0))
article, err := provider.GetArticleById(itemId)
if err != nil {
ctx.JSON(iris.Map{
"code": config.StatusFailed,
"msg": err.Error(),
})
return
}
ctx.ViewData("itemData", article)
webInfo.Title = "评论文章:" + article.Title
webInfo.Keywords = article.Keywords
webInfo.Description = article.Description
webInfo.PageName = "articleComments"
ctx.ViewData("webInfo", webInfo)
CommentList(ctx)
}
func ProductCommentList(ctx iris.Context) {
ctx.Params().Set("itemType", "product")
itemId := uint(ctx.Params().GetIntDefault("id", 0))
product, err := provider.GetProductById(itemId)
if err != nil {
ctx.JSON(iris.Map{
"code": config.StatusFailed,
"msg": err.Error(),
})
return
}
ctx.ViewData("itemData", product)
webInfo.Title = "评论产品:" + product.Title
webInfo.Keywords = product.Keywords
webInfo.Description = product.Description
webInfo.PageName = "productComments"
ctx.ViewData("webInfo", webInfo)
CommentList(ctx)
}
func CommentList(ctx iris.Context) {
itemType := ctx.Params().Get("itemType")
itemId := uint(ctx.Params().GetIntDefault("id", 0))
ctx.ViewData("itemType", itemType)
ctx.ViewData("itemId", itemId)
ctx.View(GetViewPath(ctx, "comment/list.html"))
} |
// Load will load all installed capabilities and create a manager
func Load() (Manager, error) {
caps, err := plugins.LoadAllInstalledCapability()
if err != nil {
return nil, err
}
m := newManager()
for _, cap := range caps {
t := &Template{}
t.Captype = cap.Type
t.Raw = cap.CueTemplate
m.Templates[cap.Name] = t
}
return m, nil
} |
import importlib
import os
import uuid
from appdirs import AppDirs
from primaryschool.settings import app_author, app_name, app_version
_dirs = AppDirs(app_name, app_author)
user_data_dir_path = _dirs.user_data_dir
user_cache_dir_path = _dirs.user_cache_dir
user_log_dir_path = _dirs.user_log_dir
user_config_dir_path = _dirs.user_config_dir
user_screenshot_dir_path = os.path.join(user_data_dir_path, "screenshots")
for d in [
user_data_dir_path,
user_cache_dir_path,
user_log_dir_path,
user_config_dir_path,
user_screenshot_dir_path,
]:
if not os.path.exists(d):
os.makedirs(d, exist_ok=True)
def get_copy_path(module_str):
return os.path.join(user_data_dir_path, module_str) + f".{app_version}.pkl"
def get_default_screenshot_path(module_str, player_name):
_uuid = str(uuid.uuid4())
return os.path.join(
user_screenshot_dir_path, f"{module_str}.{player_name}.{_uuid}.png"
)
|
<filename>java-version4/src/edu/ncssm/iwp/plugin/IWPXmlable.java<gh_stars>1-10
package edu.ncssm.iwp.plugin;
/**
* TODO Write the Xmlable interface. Should include handler and parsers.
* @author brockman
*
*/
public interface IWPXmlable
{
/**
* Return an instance of the DObjectXmlCreator
* @return
*/
public IWPObjectXmlCreator newXmlObjectCreator();
/**
* Return an instance of the DObjectXmlCreator
* @return
*/
public IWPObjectXmlHandler newXmlObjectHandler();
}
|
Beneficial Role of Green Plantain in the Management of Persistent Diarrhea: A Prospective Randomized Trial Objective: To evaluate the beneficial effects of green plantain-based diet on stool volume, frequency and weight gain as compared with a traditional yogurt-based diet in children with persistent diarrhea. Methods: In a prospective, in-hospital controlled trial, two different treatments were administered to a sample of 80 children of both sexes, with ages ranging from 1 to 28 months, who had experienced ≥ 14 days of persistent diarrhea. The sample was divided into two groups of isocaloric (100 kcal/kg/d) diets: experimental and control, of 40 patients each. The experimental group was randomly given a-week treatment consisting of a 50 g/L of cooked green plantain-based diet. The control group was fed on a yogurt-based diet. Results: Both groups were not statistically different at admission. Pathogens were isolated from stools in 21.2% and 25% of patients in the experimental and control groups respectively; Aeromonas hydrophilia and Shigela flexneri were the most frequently found bacteria. The experimental group fed on a green plantain diet had a significantly better response in: diminishing stool output and consistency (p < 0.002), stool weight, diarrhea duration (p < 0.001), and increasing daily body weight gain (p < 0.001) than the yogurt-based diet group. The average duration of diarrhea in the plantain-based diet group was 18 hours shorter (p < 0.005) and it also had lower cost (p < 0.005). Conclusion: Our results support the benefits of green plantain in the dietary management of persistent diarrhea in hospitalized children, in relation to diarrheal duration, weight gain and costs. |
Underwater acoustic MIMO OFDM: An experimental analysis Performance of multiple-input multiple-output (MIMO) orthogonal frequency division multiplexing (OFDM) is analyzed on an experimental shallow water acoustic channel. Different modulation levels, numbers of subcarriers and transmitters were tested over a period of two weeks. The objectives in doing so were (a) to assess the effect of environmental conditions on the system performance, (b) to determine the performance limits and the data rate supported by the existing detection methods, and (c) to investigate the possibility to push these limits by employing methods for inter-carrier interference (ICI) compensation. |
<reponame>htbkoo/spike-redux-react-monte-carlo-pi<filename>src/App.tsx
import React from 'react';
import {createStyles, makeStyles, Theme} from '@material-ui/core/styles';
import CssBaseline from '@material-ui/core/CssBaseline';
import './App.css';
import Canvas from "./Canvas";
import AppTitleBar from "./AppTitleBar";
const useStyles = makeStyles((theme: Theme) =>
createStyles({
root: {
display: 'flex',
},
content: {
flexGrow: 1,
padding: theme.spacing(3),
},
toolbar: theme.mixins.toolbar,
}),
);
const canvas = (<Canvas />); // to avoid re-rendering due to state change
const App: React.FC = () => {
const classes = useStyles();
const [mobileOpen, setMobileOpen] = React.useState(false);
const handleDrawerToggle = () => {
setMobileOpen(!mobileOpen);
};
return (
<div className="App">
<div className={classes.root}>
<CssBaseline />
<AppTitleBar handleDrawerToggle={handleDrawerToggle} />
<main className={classes.content}>
<div className={classes.toolbar} />
{canvas}
</main>
</div>
</div>
);
};
export default App; |
def topics(self, num_topics=100, num_words=10):
return self.lda_model_mallet.print_topics(num_topics, num_words) |
The US wars in Afghanistan, Iraq, Syria and Pakistan have cost the average American taxpayer $23,386 since 2001, according to a new analysis. The figure is triple the estimate put forth by the Pentagon.
The Pentagon’s most recent estimate, released in June this year, said the costs have amounted to $1.43 trillion over the last 16 years. That figure is closer to $5.6 trillion if you take into account the ongoing medical care for veterans of those conflicts, the war-related costs of the State and Homeland Security departments, as well as other costs that don’t fall under the Defense Department, a report released this week by the Costs of War Project at Brown University’s Watson Center shows.
“When wars end, the costs don’t stop, they grow,” Neta Crawford, the study’s author and co-director of the Costs of War project, told BuzzFeed News. “And these wars are being paid for on a credit card. That means that the next generation will have to pay for them.”
But the wars are not ending.
The staggering costs are going to continue to multiply after the Trump administration’s decision to increase the number of US troops in Afghanistan by 3,900. They will be joining the 11,000 already there to train and assist Afghan forces as they try to reverse the setbacks against the Taliban in recent years.
Under Trump’s budget for the 2018 fiscal year, direct US spending on the war in Afghanistan will top $840 billion, according to Anthony Cordesman, a military strategy expert at the Center for Strategic and International Studies. |
# (c) Copyright 2019 SUSE LLC
#
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import contextlib
import netaddr
from neutron_lib.db import api as db_api
from neutron_lib import exceptions as exc
from oslo_utils import uuidutils
from neutron.objects import subnet as subnet_obj
from neutron.objects import subnetpool as subnetpool_obj
from neutron.tests.unit.plugins.ml2 import test_plugin
_uuid = uuidutils.generate_uuid
class SubnetOnboardTestsBase(object):
@contextlib.contextmanager
def address_scope(self, ip_version, prefixes=None, shared=False,
admin=True, name='test-scope', is_default_pool=False,
project_id=None, **kwargs):
tenant_id = project_id if project_id else kwargs.get(
'tenant_id', None)
if not tenant_id:
tenant_id = _uuid()
scope_data = {'tenant_id': tenant_id, 'ip_version': ip_version,
'shared': shared, 'name': name + '-scope'}
with db_api.CONTEXT_WRITER.using(self.context):
yield self.driver.create_address_scope(
self.context,
{'address_scope': scope_data})
@contextlib.contextmanager
def subnetpool(self, ip_version, prefixes=None, shared=False, admin=True,
name='test-pool', is_default_pool=False, project_id=None,
address_scope_id=None, **kwargs):
tenant_id = project_id if project_id else kwargs.get(
'tenant_id', None)
if not tenant_id:
tenant_id = _uuid()
pool_data = {'tenant_id': tenant_id, 'shared': shared, 'name': name,
'address_scope_id': address_scope_id,
'prefixes': prefixes, 'is_default': is_default_pool}
for key in kwargs:
pool_data[key] = kwargs[key]
with db_api.CONTEXT_WRITER.using(self.context):
yield self.driver.create_subnetpool(self.context,
{'subnetpool': pool_data})
def test_onboard_subnet_no_address_scope(self):
with self.subnetpool(self.ip_version,
prefixes=self.subnetpool_prefixes) as subnetpool:
self._test_onboard_cidr(subnetpool['id'], self.cidr_to_onboard)
def test_onboard_subnet_address_scope(self):
with self.address_scope(self.ip_version) as addr_scope:
with self.subnetpool(self.ip_version,
prefixes=self.subnetpool_prefixes,
address_scope_id=addr_scope['id']) as subnetpool:
self._test_onboard_cidr(subnetpool['id'], self.cidr_to_onboard)
def test_onboard_subnet_overlapping_cidr_no_address_scope(self):
with self.subnetpool(self.ip_version,
prefixes=self.subnetpool_prefixes) as subnetpool:
with self.subnet(cidr=self.overlapping_cidr,
subnetpool_id=subnetpool['id'],
ip_version=self.ip_version):
self.assertRaises(exc.IllegalSubnetPoolUpdate,
self._test_onboard_cidr,
subnetpool['id'],
self.overlapping_cidr)
def test_onboard_subnet_address_scope_multiple_pools(self):
with self.address_scope(self.ip_version) as addr_scope:
with self.subnetpool(self.ip_version,
prefixes=[self.subnetpool_prefixes[0]],
address_scope_id=addr_scope['id']) as onboard_pool,\
self.subnetpool(self.ip_version,
prefixes=[self.subnetpool_prefixes[1]],
address_scope_id=addr_scope['id']):
self._test_onboard_cidr(onboard_pool['id'],
self.cidr_to_onboard)
def test_onboard_subnet_address_scope_overlap_multiple_pools(self):
with self.address_scope(self.ip_version) as addr_scope:
with self.subnetpool(self.ip_version,
prefixes=[self.subnetpool_prefixes[0]],
address_scope_id=addr_scope['id']) as onboard_pool,\
self.subnetpool(self.ip_version,
prefixes=[self.subnetpool_prefixes[1]],
address_scope_id=addr_scope['id']) as other_pool:
self.assertRaises(exc.AddressScopePrefixConflict,
self._test_onboard_cidr,
onboard_pool['id'],
other_pool['prefixes'][0])
def test_onboard_subnet_move_between_pools_same_address_scope(self):
with self.address_scope(self.ip_version) as addr_scope:
with self.subnetpool(self.ip_version,
prefixes=[self.cidr_to_onboard],
address_scope_id=addr_scope['id']) as source:
with self.subnetpool(self.ip_version,
address_scope_id=addr_scope['id'],
prefixes=self.subnetpool_prefixes) as target:
with self.subnet(cidr=self.cidr_to_onboard,
ip_version=self.ip_version) as subnet_to_onboard:
subnet_to_onboard = subnet_to_onboard['subnet']
# Onboard subnet into an initial subnet pool
self._test_onboard_network_subnets(
subnet_to_onboard['network_id'], source['id'])
source_pool_subnets = subnet_obj.Subnet.get_objects(
self.context,
subnetpool_id=source['id'])
self.assertEqual(1, len(source_pool_subnets))
# Attempt to move the subnet to the target pool
self.assertRaises(exc.AddressScopePrefixConflict,
self._test_onboard_network_subnets,
subnet_to_onboard['network_id'], target['id'])
def test_onboard_subnet_move_between_pools(self):
with self.subnetpool(self.ip_version,
prefixes=self.subnetpool_prefixes) as source:
with self.subnetpool(self.ip_version,
prefixes=self.subnetpool_prefixes) as target:
with self.subnet(cidr=self.cidr_to_onboard,
ip_version=self.ip_version) as subnet_to_onboard:
subnet_to_onboard = subnet_to_onboard['subnet']
# Onboard subnet into an initial subnet pool
self._test_onboard_network_subnets(
subnet_to_onboard['network_id'], source['id'])
source_pool_subnets = subnet_obj.Subnet.get_objects(
self.context,
subnetpool_id=source['id'])
self.assertEqual(1, len(source_pool_subnets))
# Attempt to onboard subnet into a different pool
self._test_onboard_network_subnets(
subnet_to_onboard['network_id'], target['id'])
source_pool_subnets = subnet_obj.Subnet.get_objects(
self.context,
subnetpool_id=source['id'])
target_pool_subnets = subnet_obj.Subnet.get_objects(
self.context,
subnetpool_id=target['id'])
source_subnetpool = subnetpool_obj.SubnetPool.get_object(
self.context,
id=source['id'])
# Assert that the subnet prefix has not been removed
# from the the source prefix list. The prefix should
# simply be released back to the pool, not removed.
self.assertIn(
netaddr.IPNetwork(self.cidr_to_onboard),
netaddr.IPSet(source_subnetpool['prefixes']))
# Assert the subnet is associated with the proper pool
self.assertEqual(0, len(source_pool_subnets))
self.assertEqual(1, len(target_pool_subnets))
def test_onboard_subnet_invalid_request(self):
with self.subnetpool(self.ip_version,
prefixes=self.subnetpool_prefixes) as subnetpool:
self.assertRaises(exc.InvalidInput,
self._test_onboard_subnet_no_network_id,
subnetpool['id'], self.cidr_to_onboard)
def test_onboard_subnet_network_not_found(self):
with self.subnetpool(self.ip_version,
prefixes=self.subnetpool_prefixes) as subnetpool:
self.assertRaises(exc.NetworkNotFound,
self._test_onboard_subnet_non_existing_network,
subnetpool['id'], self.cidr_to_onboard)
def _test_onboard_subnet_no_network_id(self, subnetpool_id,
cidr_to_onboard):
with self.subnet(cidr=cidr_to_onboard,
ip_version=self.ip_version) as subnet_to_onboard:
subnet_to_onboard = subnet_to_onboard['subnet']
self.driver.onboard_network_subnets(
self.context, subnetpool_id, {})
def _test_onboard_subnet_non_existing_network(self, subnetpool_id,
cidr_to_onboard):
with self.subnet(cidr=cidr_to_onboard,
ip_version=self.ip_version) as subnet_to_onboard:
subnet_to_onboard = subnet_to_onboard['subnet']
self.driver.onboard_network_subnets(
self.context, subnetpool_id,
{'network_id': _uuid()})
def _test_onboard_network_subnets(self, network_id, subnetpool_id):
response = self.driver.onboard_network_subnets(
self.context,
subnetpool_id,
{'network_id': network_id})
subnetpool = subnetpool_obj.SubnetPool.get_object(self.context,
id=subnetpool_id)
subnetpool_prefixes = netaddr.IPSet(subnetpool.prefixes)
for onboarded_subnet in subnet_obj.Subnet.get_objects(
self.context,
ip_version=self.ip_version,
network_id=network_id):
onboarded_prefix = netaddr.IPNetwork(onboarded_subnet.cidr)
self.assertIn({'id': onboarded_subnet.id,
'cidr': onboarded_subnet.cidr}, response)
self.assertEqual(subnetpool_id,
onboarded_subnet.subnetpool_id)
self.assertIn(onboarded_prefix, subnetpool_prefixes)
def _test_onboard_cidr(self, subnetpool_id, cidr_to_onboard):
with self.subnet(cidr=cidr_to_onboard,
ip_version=self.ip_version) as subnet_to_onboard:
subnet_to_onboard = subnet_to_onboard['subnet']
self._test_onboard_network_subnets(
subnet_to_onboard['network_id'],
subnetpool_id)
class SubnetOnboardTestsIpv4(SubnetOnboardTestsBase,
test_plugin.Ml2PluginV2TestCase):
subnetpool_prefixes = ["192.168.1.0/24", "192.168.2.0/24"]
cidr_to_onboard = "10.0.0.0/24"
overlapping_cidr = "192.168.1.128/25"
default_prefixlen = 24
ip_version = 4
class SubnetOnboardTestsIpv6(SubnetOnboardTestsBase,
test_plugin.Ml2PluginV2TestCase):
subnetpool_prefixes = ["2001:db8:1234::/48",
"2001:db8:1235::/48"]
cidr_to_onboard = "2001:db8:4321::/48"
overlapping_cidr = "2001:db8:1234:1111::/64"
default_prefixlen = 64
ip_version = 6
|
<reponame>indera/olass-server
"""
Goal: Implement routes specific to OAuth2 provider
@authors:
<NAME> <<EMAIL>>
Client Credentials Grant: http://tools.ietf.org/html/rfc6749#section-4.4
Note: client credentials grant type MUST only be used by confidential clients.
--- Confidential Clients ---
Clients capable of maintaining the confidentiality of their
credentials (e.g., client implemented on a secure server with
restricted access to the client credentials), or capable of secure
client authentication using other means.
+---------+ +---------------+
| | | |
| |>--(A)- Client Authentication --->| Authorization |
| Client | | Server |
| |<--(B)---- Access Token ---------<| |
| | | |
+---------+ +---------------+
Client Credentials Flow
The flow illustrated above includes the following steps:
(A) The client authenticates with the authorization server and
requests an access token from the token endpoint.
(B) The authorization server authenticates the client, and if valid,
issues an access token.
-------------------------------------------------------------------------------
According to the rfc6749, client authentication is required in the
following cases:
- Resource Owner Password Credentials Grant: see `Section 4.3.2`.
- Authorization Code Grant: see `Section 4.1.3`.
- Refresh Token Grant: see `Section 6`.
"""
# TODO: read http://flask-oauthlib.readthedocs.io/en/latest/client.html
from datetime import datetime, timedelta
from flask_oauthlib.provider import OAuth2Provider
from flask import request
from olass import utils
from olass.main import app
from olass.models.oauth_client_entity import OauthClientEntity
from olass.models.oauth_access_token_entity import OauthAccessTokenEntity
TOKEN_TYPE_BEARER = 'Bearer'
# TODO: read this options from config file
TOKEN_EXPIRES_SECONDS = 3600 # one hour
TOKEN_LENGTH = 40 # max 255
log = app.logger
oauth = OAuth2Provider(app)
@oauth.usergetter
def load_user():
log.info("==> load_user()")
return None
@oauth.clientgetter
def load_client(client_id):
"""
This method is used by provider->authenticate_client()
"""
return OauthClientEntity.query.filter_by(client_id=client_id).one()
@oauth.tokengetter
def load_token(access_token=None, refresh_token=None):
tok = None
if access_token:
tok = OauthAccessTokenEntity.query.filter_by(
access_token=access_token).one_or_none()
elif refresh_token:
tok = OauthAccessTokenEntity.query.filter_by(
refresh_token=refresh_token).one_or_none()
if tok:
log.debug('Loaded token [{}] for user [{}]'.format(tok.id, tok.client))
return tok
@oauth.tokensetter
def save_token(token_props, req, *args, **kwargs):
"""
Saves token to the database
"""
result_token = None
token_id = token_props.get('id')
token = OauthAccessTokenEntity.get_by_id(token_id)
# log.debug("From {} got {}".format(token_id, token))
if token and not token.is_expired():
# log.debug("Reuse access token: {} expiring on {} ({} seconds left)"
# .format(token.id, token.expires, token.expires_in))
result_token = token
else:
access_token = utils.generate_token()
# access_token = utils.generate_token_urandom(TOKEN_LENGTH)
expires = datetime.utcnow() + timedelta(seconds=TOKEN_EXPIRES_SECONDS)
added_at = utils.get_db_friendly_date_time()
if token:
result_token = OauthAccessTokenEntity.update(
token,
access_token=access_token,
expires=expires,
added_at=added_at)
else:
result_token = OauthAccessTokenEntity.create(
access_token=access_token,
token_type=TOKEN_TYPE_BEARER,
_scopes='',
expires=expires,
client_id=req.client.client_id,
added_at=added_at
)
# log.info("return from save_token: {}".format(result_token))
return result_token
@app.route('/oauth/token', methods=['POST', 'GET'])
@oauth.token_handler
def handle_request_auth_token():
"""
The dictionary returned by this method is passed to the meth:`save_token`
in order to be saved
"""
if request.method == 'POST':
client_id = request.form.get('client_id')
client_secret = request.form.get('client_secret')
else:
client_id = request.args.get('client_id')
client_secret = request.args.get('client_secret')
if client_id is None:
raise Exception("Error: Missing client_id")
if client_secret is None:
raise Exception("Error: Missing client_secret")
client = OauthClientEntity.query.filter_by(
client_id=client_id).one_or_none()
if client is None:
raise Exception("Error: invalid client_id")
if client.client_secret != client_secret:
raise Exception("Error: invalid client_secret")
token = OauthAccessTokenEntity.query.filter_by(
client_id=client_id,
token_type=TOKEN_TYPE_BEARER).one_or_none()
# log.info("return from handle_request_auth_token(): {}".format(token))
return token.serialize() if token else {}
@oauth.grantgetter
def load_grant(client_id, code):
log.debug("==> load_grant()")
return None
@oauth.grantsetter
def save_grant(client_id, code, req):
log.debug("==> save_grant()")
return None
|
Magnetic Materials in Photonic Crystals We studied magnetic materials in one-dimensional photonic crystals considering both dielectric constant and magnetic permeability, as an example. The analytical expressions are found not only for the edge frequencies of omnidirectional reflection band's (ORB's) but also for the equiomnidirectional contours of the ORB's. The ORB's can always exist in a periodic array of two alternating layers with different wave impedance although both layers have the same index of refraction. The wider ORB can be easily achieved by the use of magnetic permeability. The dielectric constant and the magnetic permeability have the similar effect on the frequency of defect modes. |
#include <catch.hpp>
#include <sstream>
using namespace std;
TEST_CASE( "ostringstream.ctor", "[std] [streams] [ostringstream]" ) {
SECTION( "default ctor ios_base::out mode" ) {
ostringstream sout;
REQUIRE( 0 == sout.tellp() );
sout << "ABC";
REQUIRE( sout.str() == "ABC" );
}
SECTION( "ctor ios_base::out mode" ) {
ostringstream sout(ios_base::out);
REQUIRE( 0 == sout.tellp() );
sout << "ABC";
REQUIRE( sout.str() == "ABC" );
}
SECTION( "ctor with string" ) {
ostringstream sout("ABC");
REQUIRE( sout.str() == "ABC" );
REQUIRE( sout.tellp() == 0 );
sout << 'D';
REQUIRE( sout.str() == "DBC" );
}
SECTION( "ctor with string and ios_base::out mode" ) {
ostringstream sout("ABC", ios_base::out);
REQUIRE( sout.str() == "ABC" );
REQUIRE( sout.tellp() == 0 );
sout << 'D';
REQUIRE( sout.str() == "DBC" );
}
SECTION( "ctor with string ios_base::app mode" ) {
ostringstream sout("ABC", ios_base::app);
REQUIRE( sout.str() == "ABC" );
REQUIRE( sout.tellp() == 3 );
sout << 'D';
REQUIRE( sout.str() == "ABCD" );
}
}
TEST_CASE( "ostringstream.opearator=", "[std] [streams] [ostringstream]" ) {
SECTION( "operator=" ) {
ostringstream lout{"Original"};
ostringstream rout{"Moved from"};
lout = move(rout);
REQUIRE ( lout.str() == "Moved from" );
}
}
TEST_CASE( "ostringstream.swap", "[std] [streams] [ostringstream]" ) {
SECTION( "member swap" ) {
ostringstream sout1{"sout1"};
ostringstream sout2{"sout2"};
sout1.swap(sout2);
REQUIRE ( sout1.str() == "sout2" );
REQUIRE ( sout2.str() == "sout1" );
}
SECTION( "std::swap" ) {
ostringstream sout1{"sout1"};
ostringstream sout2{"sout2"};
swap(sout1, sout2);
REQUIRE ( sout1.str() == "sout2" );
REQUIRE ( sout2.str() == "sout1" );
}
}
TEST_CASE( "ostringstream.rdbuf", "[std] [streams] [ostringstream]" ) {
SECTION( "rdbuf" ) {
ostringstream sout{"sout"};
REQUIRE ( sout.rdbuf() != nullptr );
}
}
TEST_CASE( "ostringstream.str", "[std] [streams] [ostringstream]" ) {
SECTION( "get/set str" ) {
ostringstream sout{"ABC"};
REQUIRE ( sout.str() == "ABC" );
REQUIRE ( sout.tellp() == 0 );
sout.str("123");
REQUIRE ( sout.str() == "123" );
REQUIRE ( sout.tellp() == 0 );
}
SECTION( "set str after writing " ) {
ostringstream sout{"ABC"};
REQUIRE ( sout.tellp() == 0 );
sout << "DEF";
REQUIRE ( sout.str() == "DEF" );
REQUIRE ( sout.tellp() == 3 );
sout.str("ABC");
REQUIRE ( sout.str() == "ABC" );
REQUIRE ( sout.tellp() == 0 );
sout << "123";
REQUIRE ( sout.str() == "123" );
}
}
|
import { McmaResource, McmaResourceProperties } from "@mcma/core";
import { AwsS3FileLocator } from "@mcma/aws-s3";
export interface BMEssenceProperties extends McmaResourceProperties {
bmContent?: string;
title?: string;
description?: string;
locations?: AwsS3FileLocator[];
technicalMetadata?: any;
}
export class BMEssence extends McmaResource implements BMEssenceProperties {
bmContent?: string;
title?: string;
description?: string;
locations?: AwsS3FileLocator[];
technicalMetadata?: any;
constructor(properties: BMEssenceProperties) {
super("BMEssence", properties);
}
}
|
Knowledge, attitude and practice study about blood donation in the urban population of Yazd, Iran, 2004 summary The most important aim of all blood transfusion centres is to recruit blood donors from lowrisk groups of society to donate blood voluntarily and regularly to have a safe and continuous blood supply. The aim of this study was to assess the level of knowledge, attitude and practice regarding blood donation in the city of Yazd, Iran. In this crosssectional study, 1394 cases aged between 20 and 60 years were selected by clustering sampling method and asked to fill a specially formatted questionnaire. Data were analysed by analysis of variance, Sheffe test and ttest. Less than half of the population under study was aware about the appropriate age for blood donation and certain deferral criteria. Only 98% of them believed that blood donation is a moral duty with a spiritual reward and 38% of the population under study (60% of men and 16% of women) had donated blood at least once in the past. There was a direct relationship between knowledge and performance (P= 0000). Women and young people had the least levels of knowledge and performance. Although the attitude level of women was high, their performance level was very low. Increase in the level of knowledge of women and young should be the topmost priority. Barriers to donation of blood by women who comprise half of the population should be studied and evaluated, and steps must be taken to remove or decrease them as far as possible. Advertisements should be with the aim of increasing the level of awareness of the general population regarding specific factors of blood donation and keeping fresh the idea of regular voluntary blood donations in their minds. |
A method for generating optimum decision tree for image retrieval For retrieval of image databases there is a method in which image retrieval is based on similarity image input. This retrieval method uses the contents (features) of the input exhibition image as the key for retrieval. However, since much calculation time is required to process the images and to extract features from them, the increase in overall retrieval time poses a problem. Thus, a method is proposed which represents the process of image searching as a decision tree and executes retrieval on the tree. This is an efficient method for reducing the retrieval time since the number of features used for classification therein is small on the average. It also has the merit of decreasing retrieval errors by deleting nodes on which there are many retrieval errors with new nodes with fewer errors. In this paper we consider decision trees for similarity image retrieval, attempt to construct an appropriate decision tree which has a shorter retrieval time and which produces fewer retrieval errors from two given inputs and perform classification (retrieval) experiments. |
package stdcontroller
import (
"encoding/json"
"io/ioutil"
"log"
"net/http"
"strconv"
"github.com/gorilla/mux"
"github.com/shaileshhb/restapi/model/student"
stdservice "github.com/shaileshhb/restapi/student/std-service"
)
type Controller struct {
Service *stdservice.Service
}
func NewController(service *stdservice.Service) *Controller {
return &Controller{
Service: service,
}
}
func (c *Controller) RegisterRoutes(getRouter, middlewareRouter *mux.Router) {
getRouter.HandleFunc("/students", c.GetAllStudents).Methods("GET")
getRouter.HandleFunc("/students/sum", c.GetSum).Methods("GET")
getRouter.HandleFunc("/students/diff", c.GetDiff).Methods("GET")
getRouter.HandleFunc("/students/recordsDiff", c.GetDiffOfAgeAndRecord).Methods("GET")
getRouter.HandleFunc("/students/search", c.Search).Methods(http.MethodGet)
getRouter.HandleFunc("/students/{id}", c.GetStudent).Methods("GET")
middlewareRouter.HandleFunc("/students", c.AddNewStudent).Methods("POST")
middlewareRouter.HandleFunc("/students/{id}", c.UpdateStudent).Methods("PUT")
middlewareRouter.HandleFunc("/students/{id}", c.DeleteStudent).Methods("DELETE")
}
// swagger:route GET /students student GetAllStudents
// Returns all students.
// responses:
// 200: StudentResponse
// GetAllStudents will return all the students.
func (c *Controller) GetAllStudents(w http.ResponseWriter, r *http.Request) {
var err error
log.Printf("\nINSIDE GET ALL STUDENT\n")
var students = []student.Student{}
err = c.Service.GetAll(&students)
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
studentJSON, err := json.Marshal(students)
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
w.Write(studentJSON)
log.Println("Student Successfully returned -> ", students)
}
func (c *Controller) GetStudent(w http.ResponseWriter, r *http.Request) {
var err error
var students = student.Student{}
params := mux.Vars(r)
log.Println("GET STUDENT -> ", params["id"])
err = c.Service.Get(&students, params["id"])
if err != nil {
log.Println(err)
w.Write([]byte("Student Not Found"))
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
studentJSON, err := json.Marshal(students)
if err != nil {
log.Println(err)
w.Write([]byte("Could not convert to json"))
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
w.Write(studentJSON)
log.Println("Student successfully returned")
}
func (c *Controller) AddNewStudent(w http.ResponseWriter, r *http.Request) {
var err error
log.Printf("\nINSIDE ADD STUDENT\n")
var student = &student.Student{}
studentResponse, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Println(err)
// w.Write([]byte("Response could not be read"))
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
err = json.Unmarshal(studentResponse, student)
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
err = c.Service.AddNewStudent(student)
if err != nil {
log.Println("error from add", err)
http.Error(w, err.Error(), http.StatusBadRequest)
// w.Write([]byte("Error while adding student, " + err.Error()))
return
}
w.Write([]byte(student.ID.String()))
log.Println("Student successfully added", student.ID)
}
// swagger:route PUT /student/{id} student updateStudent
// Updates the specifie student
// responses:
// 200: Student successfully updated
// UpdateStudent will update the specified student.
func (c *Controller) UpdateStudent(w http.ResponseWriter, r *http.Request) {
var err error
var student = &student.Student{}
params := mux.Vars(r)
studentResponse, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Println(err)
w.Write([]byte(err.Error()))
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
err = json.Unmarshal(studentResponse, student)
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
err = c.Service.Update(student, params["id"])
if err != nil {
log.Println(err)
// w.Write([]byte(err.Error()))
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
w.Write([]byte(student.ID.String()))
log.Println("Student successfully updated")
}
func (c *Controller) DeleteStudent(w http.ResponseWriter, r *http.Request) {
var err error
var student = &student.Student{}
params := mux.Vars(r)
err = c.Service.Delete(student, params["id"])
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
w.Write([]byte(student.ID.String()))
log.Println("Student successfully deleted")
}
func (c *Controller) GetSum(w http.ResponseWriter, r *http.Request) {
var students = &student.Student{}
var sum = &student.Sum{}
err := c.Service.GetSum(students, sum)
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
w.Write([]byte("Sum of age and roll no is -> " + strconv.FormatInt(sum.N, 10)))
log.Println("Sum of age and roll no is -> ", sum.N)
}
func (c *Controller) GetDiff(w http.ResponseWriter, r *http.Request) {
var students = &student.Student{}
var sum = &student.Sum{}
err := c.Service.GetDiff(students, sum)
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
w.Write([]byte("Diff of age and roll no is -> " + strconv.FormatInt(sum.N, 10)))
log.Println("Diff of age and roll no is -> ", sum.N)
}
func (c *Controller) GetDiffOfAgeAndRecord(w http.ResponseWriter, r *http.Request) {
var students = &student.Student{}
var sum = &student.Sum{}
err := c.Service.GetDiffOfAgeAndRecord(students, sum)
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
w.Write([]byte("Age and record diff is -> " + strconv.FormatInt(sum.N, 10)))
log.Println("Age and record diff is -> ", sum.N)
}
func (c *Controller) Search(w http.ResponseWriter, r *http.Request) {
var students = []student.Student{}
// var searchStudent = student.SearchStudent{}
params := r.URL.Query()
log.Println("Params Eamil len -> ", len(params["email"]))
if len(params) == 0 {
c.GetAllStudents(w, r)
return
}
err := c.Service.Search(&students, params)
if err != nil {
log.Println("Error in Search -> ", err)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
studentJSON, err := json.Marshal(students)
if err != nil {
log.Println("Error in json -> ", studentJSON)
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
log.Println("Student Searched -> ", students)
w.Write(studentJSON)
}
|
<reponame>TU-Berlin/Mumie<gh_stars>0
/*
* The MIT License (MIT)
*
* Copyright (c) 2010 Technische Universitaet Berlin
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package net.mumie.mathletfactory.display.noc.symbol;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.font.TextLayout;
import java.awt.geom.AffineTransform;
import java.awt.geom.Rectangle2D;
import javax.swing.JComponent;
/**
* This class represents a label for a parenthesis or any other symbol that
* needs to be rendered as high as the alignable components height.
*
* @author Paehler, Gronau
* @mm.docstatus finished
*/
public class ParenSymbolLabel extends JComponent {
/** the string representation of the symbol to be rendered. */
private String m_parenString;
/** Needed for determining the size of this component. */
private int m_width;
private double m_scaleY = 1;
/**
* Constructs a ParenSymbolLabel that renders <code>parenString</code>
* using the given font.
*/
public ParenSymbolLabel(String parenString, Font font) {
m_parenString = parenString;
setFont(font);
}
/**
* Constructs a ParenSymbolLabel that renders <code>parenString</code>
* using the given font.
*/
public ParenSymbolLabel(String parenString, Font font, double scaleY) {
this(parenString,font);
m_scaleY = scaleY;
}
/**
* Renders the symbol with maximal (visible) height on the component.
* @see javax.swing.JComponent#paintComponent(Graphics)
*/
public void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D) g;
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
g2.setBackground(getBackground());
g2.clearRect(0, 0, getWidth(), getHeight());
// debug
// g2.drawRect(0, 0, getWidth(), getHeight());
// create the glyph as a Shape
Shape glyphShape = getFont().createGlyphVector(((Graphics2D) getGraphics())
.getFontRenderContext(), m_parenString).getOutline();
Rectangle2D parenBounds = glyphShape.getBounds2D();
// scale the glyph up to the component's height
double scaleFactor = getHeight() / parenBounds.getHeight();
AffineTransform scale = AffineTransform.getScaleInstance(m_scaleY, scaleFactor);
glyphShape = scale.createTransformedShape(glyphShape);
// move the glyph with the baseline to the bottom of the component
glyphShape = AffineTransform.getTranslateInstance(2,
scaleFactor * -parenBounds.getY()).createTransformedShape(glyphShape);
m_width = (int)(1.5*(glyphShape.getBounds2D().getMinX()+glyphShape.getBounds2D().getWidth())+1);
//System.out.println("width is "+m_width);
// draw the transformed glyph shape
g2.fill(glyphShape);
}
/** The preferred size is the minimum size. */
public Dimension getPreferredSize(){
return getMinimumSize();
}
/**
* The minimum size is the height of the font and three times the width of
* the paren symbol in unscaled mode.
*/
public Dimension getMinimumSize() {
if(getGraphics() == null)
return super.getMinimumSize();
if(m_width == 0)
m_width = (int) (new TextLayout(m_parenString, getFont(), ((Graphics2D)getGraphics()).getFontRenderContext())
.getBounds().getWidth()*2+5);
return new Dimension((int)m_width, getFont().getSize());
}
}
|
Detection and identification of COVID -19 based on chest medical image by using convolutional neural networks Covid-19 pandemic has caused major out-break all around the world. This pandemic out-break requires lot of testing, which is a tedious process. Deep learning is a successful method that has evolved in image category in the past few years. In this work to detects the presence of coronavirus by using deep learning approach. Here, convolutional neural networks with specific focus on to classify Covid-19 chest radiography images. The database comprises Covid-19, normal and viral pneumonia chest X-ray images with 800 different samples under each class. We evaluated the model on 500 images and the networks has achieved a sensitivity rate of 95% and specificity rate of 97%. The DenseNet121 Architecture performed slightly better, compared to other state of art networks. The performance achieved by the method proposed is very encouraging and the accuracy rates can be improved further with larger datasets. Apart from sensitivity and specificity rates, the proposed model is also compared on receiver operating characteristic (ROC), and area under the curve (AUC) of each model. The model is implemented on the TensorFlow framework with the datasets that are publicly available for research community. Introduction Last few months, we have come across a deadly virus named as coronavirus which is affecting many people worldwide. In this paper, we propose an algorithm for identifying the presence of coronavirus based on chest X-ray medical images. In this paper, the deep learning algorithms are employed for disease identification. This work has been carried out with a focus to identify presence of Covid-19 virus and classify the chest X-ray medical images as healthy, pneumonia, covid19. We have approached the problem of identifying Covid-19 by utilizing deep learning architectures like VGGNet19 and DenseNet121. The convolutional neural network with its promising accuracy in image classification problem have attracted many researchers towards it. Apurva A. Desai has used a neural network type of classification and compared it with other machine learning approaches. This literature shows that neural network-based approach gives a better result when compared to other approaches. Apurva A. Desai has done this comparison for optical character recognition. Hidden Markov Model and fuzzy logic algorithm has been used on Urdu scripts by Muhammad Imran Razzak for character recognition. The approach was evaluated on Nastaliq and Nasakh script-based languages. With around 26 time-invariant features and statistical features, the approach provided 87.4% and 74.1% of accuracy for Nastaliq and Nasakh scripts respectively. An effective optical character recognition system to recognize and identify the Persian character using Support Vector Machine (SVM) was proposed by Abdelhak Boukharouba. Using chain code algorithm, a transition table in vertical and horizontal direction is extracted. The extracted feature is used for classification using an SVM classifier. Parshuram M. Kamble have used a Feed Froward Artificial Neural Network (FFANN) for Marathi character recognition. Yang, Xu Lijia, combined statistical and structural features to improve the accuracy when compared to other features. Additionally, they have utilized 184 epochs in CNN for increasing the accuracy. Amit Choudhary, describes binarization feature extraction for English characters which increases the prediction rate in a Back Propagation Neural Network (BPNN). Several researchers have geared up their research for the recently arrived pandemic Covid-19. The author Chaolin Huang and his colleagues have reported that, 41 infected people are admitted to the hospital in Wuhan City, which is confirmed to be infected with 2019-covid. Covid-19 has some symptoms like fever, dry cough, malaise and some nonspecific symptoms. The respiratory system in human body is infected slowly. So, we have taken the Chest X-Ray medical images from infected patients as well as normal patients. The paper progresses with a detail description of the dataset in section 2. Section 3 talks about the overview of layers present in Convolution neural networks. In Section 4 different CNN architectures with their advantages and disadvantages are discussed in brief. The result and discussions are done in section 5. The conclusion of the paper is given in section 6. Dataset description The dataset used in this paper combines two different datasets. The total data for training and testing was around 3700. For training the model, 2200 images have been used and for validation 1500 images were used. The data is split between three different classes Covid-19, Normal and Viral pneumonia. which is shown in Fig. 1. Here, we used our learning rate is 0.0001, number of epochs is 20, and batch size will be 50 for tuning convolutional neural networks. Data augmentation (by rotation, zoom, flipping, shifting) is performed to increase the dataset while training the model. ImageNet mean value (in RGB order) is used to during augmentation. The data was obtained from IEEE802.3 collected by Joseph Paul Cohen, which contains data of two classes including Covid-19 images. Remaining data are obtained from Covid-19 radiography database. There are 219 Covid-19 positive images, 1341 normal images, 1345 viral pneumonia images. Three different architectures like, VGGNet19, and DenseNet121, ResNet50 were used for diagnosis which is shown in Fig. 2. The following section shows, overview of convolution layer, pooling, ReLU (Rectified Linear Unit) layers. Overview of layers present in convolution neural networks Convolution neural network (CNN) is like a regular neural network with several layers stacked in between the input and output layer. The CNN is comprised of alternative layers like convolution layer, pooling layer, activation layers etc. The convolution layer (conv layer) is named since it performs mathematical convolution operation between the input matrix and filters. The dimension of the feature maps (W W) produced by these conv layers depends on the dimension of the input matrix(M M), filter size (F), padding (P), stride(S) and number of filters (K). The dimension can be computed with the equation no. 1. Pooling layer generally used for lessening the aspect of the feature maps. This decreases the number of learnable parameters to a greater extent. The pooling function can be either max pooling or average pooling. The max pooling chooses the maximum value from the selected window and the average pooling chooses the average value from the selected window. Activation layers are inserted between the layers to introduce nonlinearity in between the layers. The ReLU function is preferred in most of the networks as it is simple and efficient to implement. VGGNet19 architecture Image classification and detection is one of the difficult tasks when it comes to real time applications. The deep learning approach with the state-of-the-art predefined architectures eases this task. One such architecture is VGGNet19 (Visual Geometry Group). The input image size to the architecture is . VGGNet19 has 19 layers that includes 16 convolutional layers,2 fully connected layers and a softmax layer, The first two layers are conv layers with . Further it is passed through 4 conv layers. The size of the last conv layer is with 512 filters. Now, they are connected to a two fully connected layers with size of 4096. The FC layer is then connected to a softmax layer of size 1000. The softmax layer will classify the image based on the threshold and the features stored in the neurons. DenseNet121 architecture DenseNet121 is a simple and efficient network that is constructed by stacking dense block and pooling layers alternatively. Table 1 shows the summary of the architecture. In DenseNet121 architecture a feed-forward connection is established from each layer to every other layer directly. A regular convolutional network with N layers has N connections between each subsequent layer, whereas the DenseNet121 has N(N1)/2 straight connections. The DenseNet121 adopts a shorter connection between the initial and final layers that results in notable improvement in the accuracy and efficiency of the network. As the input progress through the subsequent layers, the feature maps from each layer is concatenated with the previous one. This enables the access of feature maps of any layer by the subsequent layers. The number of parameters is minimum when compared to a traditional convolutional neural network. The DenseNet121 reduces the vanishing gradient problem and implements feature reusing. The regularization effect of the network reduces the overfitting problem to a greater extent even for a smaller dataset which is shown in Table 2. ResNet-50 architecture ResNet50, or Residual Networks is a popular neural network used in many computer vision tasks. This model has won the ImageNet challenge in 2015. Prior to ResNet50, training a deep neural network was difficult due to the problem of vanishing gradients. ResNet50 uses 150 layers, which made it more successful than other networks. ResNet50 has outperformed many models on ImageNet task with its depth in number of layers. Deeper the layers, the network must learn more parameters that will lead to the problem of overfitting or underfitting. Results and discussion The chest X-ray images are used to detect the occurrence of coronavirus. Here, three different algorithms are compared based on the classification performance. DenseNet121 has performed better than VGGNet19 and ResNet50 architecture. In DenseNet121, each layer obtains additional inputs from the previous layers and passes it to the subsequent layers. Thus, each layer receives a 'collective knowledge' from all preceding layers. Which leads to more dense architecture with less parameters to train on, compared to other state of the art architectures. The performance metrices like precision, recall, accuracy, sensitivity and specificity are considered for measuring the performance of the architecture. Model parameters The batch size is set to 50, and the epochs was limited to 20 as the accuracy and loss function saturates after 20 epochs. All our implementations are done in TensorFlow with publicly available dataset. Evaluation metrics There are various metrics like testing accuracy, sensitivity, specificity, precision, and F1-score which can be used for evaluating the performance of classification models. The current dataset used to train and test the model is imbalanced with few numbers of covid19 images. Sensitivity and specificity will provide a better insight to compare the performance of different models. Model sensitivity and specificity Sensitivity is the proportion of identifying truly positive Covid-19 cases that were classified as positive. Thus, it measures how well the classifier identifies positive cases. Specificity is the proportion of truly negative non Covid-19 cases that were classified as negative. It measures the ability of the classifier to identify the negative cases. The sensitivity and specificity average score of all the three models is 92 % and 90%. This shows that all the models have well performed on the test data, but DenseNet has slightly better results than other two models. DenseNet121 has less parameters for training than other two networks, even though it has more layers. Regularization has been used in all the models to overcome the problem of generalization. ResNet50 and VGGNet19 performed well on validation data without overfitting or underfitting. The below equation gives the formula for sensitivity and specificity, where TP and FN refer to true positive and false negative. TN and FP refer to true negative and false positive based on the confusion matrix obtained for model on test data which is shown in equation 2 & 3. Model confusion matrix Confusion matrix or contingency table is a table that is often used to describe the performance of a classification model on a set of test data for which the true values are known. It is used to compare different models based on their performance on the test data. To understand that the model has well generalized for the test data and to tackle the problem of overfitting and underfitting. The confusion matrix shows the way in which your classification model is confused when it makes predictions. A confusion matrix is used to calculate recall, precision, true positive and false positive rates etc. The confusion matrix of three models are shown in Fig. 3. Compared to VGGNet19 and ResNet50 the confusion matrix of DenseNet121 has better results on the test data. It means it predicts the correct labels for Covid-19 and non Covid-19 X-ray images. This shows that the model is well generalized on the training data. Amount of data used for testing is 1/3 of the total Covid-19 data. Fig. 3 shows the confusion matrix of all the three models on the test dataset. Model ROC curve The receiver operating characteristic curve (ROC) is a graph that compares the performance of a classification model with different classification threshold values. It compares the calculated true positive rate and false positive rate from the confusion matrix. AUC stands for 'Area under the ROC curve'. This measures the entire 2-dimensional area underneath the ROC curve from to. The quality of the model, irrespective of the chosen classification threshold is obtained by the AUC. AUC ranges from 0 to 1. A model whose predictions are 100% correct has an AUC of 1. The macro average of VGGNet19 and ResNet50 is 98% and 97%. To overcome the problem of overfitting, L2 regularization technique is used. Fig. 4 shows the ROC of DenseNet121 which is applied on the test data. Among the 3700 images 2200 images are used for training and 1500 used for validation. Performance matrices are plotted in Fig. 5 & Fig. 6. From the confusion matrix it is evident that the true positive and true negative are high. The hypothesis is considered as to identify the disease. The true positive is to identify the affected person and true negative is to identify a normal patient. False negative is when a corona affected person is identified as normal and false positive is to identify a normal patient as corona affected person. The performance metrices shows that the accuracy rate of DenseNet121 is more compared to other models. For we have obtained an accuracy of 97% for DenseNet121 and for VGGNet19 it is 94%. Specificity and sensitivity are also high for DenseNet121 when compared to the other architectures. Precision obtained for DenseNet121 is 97% which is shown in Fig. 7. Conclusion A computer vision system for automatic diagnosis of Covid-19 disease using chest radiographic images is proposed in this paper. Chest X-Ray images of healthy individuals and individuals with specific pathological conditions like Covid-19 and pneumonia are considered for training and testing the performance of the model. DenseNet121 has performed better than other two models. Adam optimizer with a learning rate of 0.0001 and decay rate for 20 epochs is used. The predefined weights of ImageNet model are used. DenseNet121 model with 121 layers need fewer parameters for training rather than other two models. The increased number of learning parameter in Resnet and VGGNet19 leads to overfitting. An optimum value for the number of parameters and layers were arrived to achieve better accuracy. The improvement in accuracy is obtained by increasing the data size and by providing ground truth information for inter class images. The accuracy of the model can be further improved by a bigger dataset and fine tuning the network parameters. |
<gh_stars>0
/*
* @(#) DbUnitRule.java
*
* Copyright (C) 2016, <NAME>, All Rights Reserved
*/
package net.chriswareham.util;
import java.io.PrintWriter;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.util.logging.Logger;
import javax.sql.DataSource;
import org.apache.commons.io.IOUtils;
import org.dbunit.IDatabaseTester;
import org.dbunit.JdbcDatabaseTester;
import org.dbunit.database.IDatabaseConnection;
import org.hsqldb.jdbcDriver;
import org.junit.rules.MethodRule;
import org.junit.runners.model.FrameworkMethod;
import org.junit.runners.model.Statement;
/**
* This class provides a JUnit rule that establishes a data source and runs both
* test fixture DDL and DML statements.
*
* @author <NAME>
*/
public class DbUnitRule implements MethodRule {
/**
* The test class to use a a base for reading resources referred to in annotations.
*/
private final Class<?> resourceBase;
/**
* The DBUnit database tester.
*/
private IDatabaseTester databaseTester;
/**
* The DBUnit database connection.
*/
private IDatabaseConnection databaseConnection;
/**
* The JDBC database connection used to run test fixture DDL and DML statements.
*/
private Connection connection;
/**
* Construct an instance of the rule.
*
* @param rb the test class to use a a base for reading resources referred to in annotations
* @param dbName the name of the database to use
*/
public DbUnitRule(final Class<?> rb, final String dbName) {
this.resourceBase = rb;
try {
databaseTester = new JdbcDatabaseTester(jdbcDriver.class.getName(), "jdbc:hsqldb:mem:" + dbName + ";shutdown=true", "SA", "");
databaseConnection = databaseTester.getConnection();
connection = databaseConnection.getConnection();
} catch (Exception e) {
throw new IllegalStateException(e);
}
}
/**
* Wraps a test statement to establish a data source and run both test
* fixture DDL and DML statements.
*
* @param base the test statement to be modified
* @param method the test method
* @param target the test class instance the test method is for
* @return a statement wrapping the test statement
*/
@Override
public Statement apply(final Statement base, final FrameworkMethod method, final Object target) {
return new Statement() {
/**
* {@inheritDoc}
*/
@Override
public void evaluate() throws Throwable {
Ddl ddl = method.getAnnotation(Ddl.class);
if (ddl != null) {
try (java.sql.Statement statement = connection.createStatement()) {
for (String value : ddl.value()) {
String sql = IOUtils.toString(resourceBase.getResourceAsStream(value));
statement.executeUpdate(sql);
}
}
}
Dml dml = method.getAnnotation(Dml.class);
if (dml != null) {
try (java.sql.Statement statement = connection.createStatement()) {
for (String value : dml.value()) {
for (String sql : IOUtils.readLines(resourceBase.getResourceAsStream(value))) {
statement.executeUpdate(sql);
}
}
}
}
base.evaluate();
connection.close();
}
};
}
/**
* Get the data source.
*
* @return the data source
*/
public DataSource getDataSource() {
return new DbUnitDataSource(databaseConnection);
}
/**
* This tag lists the DDL files to be evaluated before a test.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public static @interface Ddl {
/**
* Get the DDL files to be evaluated before a test.
*/
String[] value();
}
/**
* This tag lists the DML files to be evaluated before a test.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public static @interface Dml {
/**
* Get the DML files to be evaluated before a test.
*/
String[] value();
}
/**
* This class provides a data source for a DBUnit database connection.
*/
private static final class DbUnitDataSource implements DataSource {
/**
* The DBUnit database connection.
*/
private final IDatabaseConnection databaseConnection;
/**
* Construct a data source for a DBUnit database connection.
*
* @param dc the DBUnit database connection
*/
private DbUnitDataSource(final IDatabaseConnection dc) {
this.databaseConnection = dc;
}
/**
* {@inheritDoc}
*/
@Override
public Connection getConnection() throws SQLException {
return databaseConnection.getConnection();
}
/**
* {@inheritDoc}
*/
@Override
public Connection getConnection(final String username, final String password) throws SQLException {
return databaseConnection.getConnection();
}
/**
* {@inheritDoc}
*/
@Override
public int getLoginTimeout() throws SQLException {
return 0;
}
/**
* {@inheritDoc}
*/
@Override
public void setLoginTimeout(final int seconds) throws SQLException {
return;
}
/**
* {@inheritDoc}
*/
@Override
public PrintWriter getLogWriter() throws SQLException {
return null;
}
/**
* {@inheritDoc}
*/
@Override
public void setLogWriter(final PrintWriter out) throws SQLException {
return;
}
/**
* {@inheritDoc}
*/
@Override
public Logger getParentLogger() throws SQLFeatureNotSupportedException {
throw new SQLFeatureNotSupportedException();
}
/**
* {@inheritDoc}
*/
@Override
public <T> T unwrap(final Class<T> iface) throws SQLException {
throw new UnsupportedOperationException();
}
/**
* {@inheritDoc}
*/
@Override
public boolean isWrapperFor(final Class<?> iface) throws SQLException {
throw new UnsupportedOperationException();
}
}
}
|
<filename>build/php7/safe/phalcon.zep.h
/* This file was generated automatically by Zephir do not modify it! */
#ifndef ZEPHIR_CLASS_ENTRIES_H
#define ZEPHIR_CLASS_ENTRIES_H
zend_class_entry *phalcon_di_injectionawareinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Di_InjectionAwareInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_injectionawareinterface_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_di_injectionawareinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Di_InjectionAwareInterface, setDI, arginfo_phalcon_di_injectionawareinterface_setdi)
PHP_ABSTRACT_ME(Phalcon_Di_InjectionAwareInterface, getDI, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Exception);
zend_class_entry *phalcon_events_eventsawareinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Events_EventsAwareInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_eventsawareinterface_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_events_eventsawareinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Events_EventsAwareInterface, setEventsManager, arginfo_phalcon_events_eventsawareinterface_seteventsmanager)
PHP_ABSTRACT_ME(Phalcon_Events_EventsAwareInterface, getEventsManager, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validatorinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_ValidatorInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validatorinterface_hasoption, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validatorinterface_getoption, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validatorinterface_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validatorinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Validation_ValidatorInterface, hasOption, arginfo_phalcon_validation_validatorinterface_hasoption)
PHP_ABSTRACT_ME(Phalcon_Validation_ValidatorInterface, getOption, arginfo_phalcon_validation_validatorinterface_getoption)
PHP_ABSTRACT_ME(Phalcon_Validation_ValidatorInterface, validate, arginfo_phalcon_validation_validatorinterface_validate)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator);
static PHP_METHOD(Phalcon_Validation_Validator, __construct);
static PHP_METHOD(Phalcon_Validation_Validator, isSetOption);
static PHP_METHOD(Phalcon_Validation_Validator, hasOption);
static PHP_METHOD(Phalcon_Validation_Validator, getOption);
static PHP_METHOD(Phalcon_Validation_Validator, setOption);
static PHP_METHOD(Phalcon_Validation_Validator, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator___construct, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, options, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_issetoption, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_hasoption, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_getoption, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_setoption, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_method_entry) {
PHP_ME(Phalcon_Validation_Validator, __construct, arginfo_phalcon_validation_validator___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Validation_Validator, isSetOption, arginfo_phalcon_validation_validator_issetoption, ZEND_ACC_DEPRECATED|ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Validator, hasOption, arginfo_phalcon_validation_validator_hasoption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Validator, getOption, arginfo_phalcon_validation_validator_getoption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Validator, setOption, arginfo_phalcon_validation_validator_setoption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Validator, validate, arginfo_phalcon_validation_validator_validate, ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_di_injectable_ce;
ZEPHIR_INIT_CLASS(Phalcon_Di_Injectable);
static PHP_METHOD(Phalcon_Di_Injectable, setDI);
static PHP_METHOD(Phalcon_Di_Injectable, getDI);
static PHP_METHOD(Phalcon_Di_Injectable, setEventsManager);
static PHP_METHOD(Phalcon_Di_Injectable, getEventsManager);
static PHP_METHOD(Phalcon_Di_Injectable, __get);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_injectable_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_injectable_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_injectable___get, 0, 0, 1)
ZEND_ARG_INFO(0, propertyName)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_di_injectable_method_entry) {
PHP_ME(Phalcon_Di_Injectable, setDI, arginfo_phalcon_di_injectable_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Injectable, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Injectable, setEventsManager, arginfo_phalcon_di_injectable_seteventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Injectable, getEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Injectable, __get, arginfo_phalcon_di_injectable___get, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_elementinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_ElementInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setform, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, form, Phalcon\\Forms\\Form, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setfilters, 0, 0, 1)
ZEND_ARG_INFO(0, filters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_addfilter, 0, 0, 1)
ZEND_ARG_INFO(0, filter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_addvalidators, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, validators, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_addvalidator, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, validator, Phalcon\\Validation\\ValidatorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_prepareattributes, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, attributes, 1)
ZEND_ARG_INFO(0, useChecked)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setattribute, 0, 0, 2)
ZEND_ARG_INFO(0, attribute)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_getattribute, 0, 0, 1)
ZEND_ARG_INFO(0, attribute)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setattributes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setuseroption, 0, 0, 2)
ZEND_ARG_INFO(0, option)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_getuseroption, 0, 0, 1)
ZEND_ARG_INFO(0, option)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setuseroptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setlabel, 0, 0, 1)
ZEND_ARG_INFO(0, label)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setdefault, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_setmessages, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, group, Phalcon\\Validation\\Message\\Group, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_appendmessage, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, message, Phalcon\\Validation\\MessageInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_elementinterface_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_elementinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setForm, arginfo_phalcon_forms_elementinterface_setform)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getForm, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setName, arginfo_phalcon_forms_elementinterface_setname)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setFilters, arginfo_phalcon_forms_elementinterface_setfilters)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, addFilter, arginfo_phalcon_forms_elementinterface_addfilter)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getFilters, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, addValidators, arginfo_phalcon_forms_elementinterface_addvalidators)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, addValidator, arginfo_phalcon_forms_elementinterface_addvalidator)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getValidators, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, prepareAttributes, arginfo_phalcon_forms_elementinterface_prepareattributes)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setAttribute, arginfo_phalcon_forms_elementinterface_setattribute)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getAttribute, arginfo_phalcon_forms_elementinterface_getattribute)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setAttributes, arginfo_phalcon_forms_elementinterface_setattributes)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getAttributes, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setUserOption, arginfo_phalcon_forms_elementinterface_setuseroption)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getUserOption, arginfo_phalcon_forms_elementinterface_getuseroption)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setUserOptions, arginfo_phalcon_forms_elementinterface_setuseroptions)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getUserOptions, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setLabel, arginfo_phalcon_forms_elementinterface_setlabel)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getLabel, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, label, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setDefault, arginfo_phalcon_forms_elementinterface_setdefault)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getDefault, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getValue, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, getMessages, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, hasMessages, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, setMessages, arginfo_phalcon_forms_elementinterface_setmessages)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, appendMessage, arginfo_phalcon_forms_elementinterface_appendmessage)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, clear, NULL)
PHP_ABSTRACT_ME(Phalcon_Forms_ElementInterface, render, arginfo_phalcon_forms_elementinterface_render)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element);
static PHP_METHOD(Phalcon_Forms_Element, __construct);
static PHP_METHOD(Phalcon_Forms_Element, setForm);
static PHP_METHOD(Phalcon_Forms_Element, getForm);
static PHP_METHOD(Phalcon_Forms_Element, setName);
static PHP_METHOD(Phalcon_Forms_Element, getName);
static PHP_METHOD(Phalcon_Forms_Element, setFilters);
static PHP_METHOD(Phalcon_Forms_Element, addFilter);
static PHP_METHOD(Phalcon_Forms_Element, getFilters);
static PHP_METHOD(Phalcon_Forms_Element, addValidators);
static PHP_METHOD(Phalcon_Forms_Element, addValidator);
static PHP_METHOD(Phalcon_Forms_Element, getValidators);
static PHP_METHOD(Phalcon_Forms_Element, prepareAttributes);
static PHP_METHOD(Phalcon_Forms_Element, setAttribute);
static PHP_METHOD(Phalcon_Forms_Element, getAttribute);
static PHP_METHOD(Phalcon_Forms_Element, setAttributes);
static PHP_METHOD(Phalcon_Forms_Element, getAttributes);
static PHP_METHOD(Phalcon_Forms_Element, setUserOption);
static PHP_METHOD(Phalcon_Forms_Element, getUserOption);
static PHP_METHOD(Phalcon_Forms_Element, setUserOptions);
static PHP_METHOD(Phalcon_Forms_Element, getUserOptions);
static PHP_METHOD(Phalcon_Forms_Element, setLabel);
static PHP_METHOD(Phalcon_Forms_Element, getLabel);
static PHP_METHOD(Phalcon_Forms_Element, label);
static PHP_METHOD(Phalcon_Forms_Element, setDefault);
static PHP_METHOD(Phalcon_Forms_Element, getDefault);
static PHP_METHOD(Phalcon_Forms_Element, getValue);
static PHP_METHOD(Phalcon_Forms_Element, getMessages);
static PHP_METHOD(Phalcon_Forms_Element, hasMessages);
static PHP_METHOD(Phalcon_Forms_Element, setMessages);
static PHP_METHOD(Phalcon_Forms_Element, appendMessage);
static PHP_METHOD(Phalcon_Forms_Element, clear);
static PHP_METHOD(Phalcon_Forms_Element, __toString);
zend_object *zephir_init_properties_Phalcon_Forms_Element(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element___construct, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setform, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, form, Phalcon\\Forms\\Form, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setfilters, 0, 0, 1)
ZEND_ARG_INFO(0, filters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_addfilter, 0, 0, 1)
ZEND_ARG_INFO(0, filter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_addvalidators, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, validators, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_addvalidator, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, validator, Phalcon\\Validation\\ValidatorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_prepareattributes, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, attributes, 1)
ZEND_ARG_INFO(0, useChecked)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setattribute, 0, 0, 2)
ZEND_ARG_INFO(0, attribute)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_getattribute, 0, 0, 1)
ZEND_ARG_INFO(0, attribute)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setattributes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setuseroption, 0, 0, 2)
ZEND_ARG_INFO(0, option)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_getuseroption, 0, 0, 1)
ZEND_ARG_INFO(0, option)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setuseroptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setlabel, 0, 0, 1)
ZEND_ARG_INFO(0, label)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_label, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setdefault, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_setmessages, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, group, Phalcon\\Validation\\Message\\Group, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_appendmessage, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, message, Phalcon\\Validation\\MessageInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_method_entry) {
PHP_ME(Phalcon_Forms_Element, __construct, arginfo_phalcon_forms_element___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Forms_Element, setForm, arginfo_phalcon_forms_element_setform, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getForm, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, setName, arginfo_phalcon_forms_element_setname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, setFilters, arginfo_phalcon_forms_element_setfilters, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, addFilter, arginfo_phalcon_forms_element_addfilter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getFilters, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, addValidators, arginfo_phalcon_forms_element_addvalidators, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, addValidator, arginfo_phalcon_forms_element_addvalidator, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getValidators, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, prepareAttributes, arginfo_phalcon_forms_element_prepareattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, setAttribute, arginfo_phalcon_forms_element_setattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getAttribute, arginfo_phalcon_forms_element_getattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, setAttributes, arginfo_phalcon_forms_element_setattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getAttributes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, setUserOption, arginfo_phalcon_forms_element_setuseroption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getUserOption, arginfo_phalcon_forms_element_getuseroption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, setUserOptions, arginfo_phalcon_forms_element_setuseroptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getUserOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, setLabel, arginfo_phalcon_forms_element_setlabel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getLabel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, label, arginfo_phalcon_forms_element_label, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, setDefault, arginfo_phalcon_forms_element_setdefault, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getDefault, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, getMessages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, hasMessages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, setMessages, arginfo_phalcon_forms_element_setmessages, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, appendMessage, arginfo_phalcon_forms_element_appendmessage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, clear, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element, __toString, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validatorinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_ValidatorInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validatorinterface_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validatorinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ValidatorInterface, getMessages, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ValidatorInterface, validate, arginfo_phalcon_mvc_model_validatorinterface_validate)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator);
static PHP_METHOD(Phalcon_Mvc_Model_Validator, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Validator, appendMessage);
static PHP_METHOD(Phalcon_Mvc_Model_Validator, getMessages);
static PHP_METHOD(Phalcon_Mvc_Model_Validator, getOptions);
static PHP_METHOD(Phalcon_Mvc_Model_Validator, getOption);
static PHP_METHOD(Phalcon_Mvc_Model_Validator, isSetOption);
zend_object *zephir_init_properties_Phalcon_Mvc_Model_Validator(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_appendmessage, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, field)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_getoption, 0, 0, 1)
ZEND_ARG_INFO(0, option)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_issetoption, 0, 0, 1)
ZEND_ARG_INFO(0, option)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator, __construct, arginfo_phalcon_mvc_model_validator___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Validator, appendMessage, arginfo_phalcon_mvc_model_validator_appendmessage, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model_Validator, getMessages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Validator, getOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Validator, getOption, arginfo_phalcon_mvc_model_validator_getoption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Validator, isSetOption, arginfo_phalcon_mvc_model_validator_issetoption, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backendinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_BackendInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backendinterface_start, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backendinterface_stop, 0, 0, 0)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backendinterface_setlastkey, 0, 0, 1)
ZEND_ARG_INFO(0, lastKey)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backendinterface_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backendinterface_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backendinterface_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backendinterface_querykeys, 0, 0, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backendinterface_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backendinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, start, arginfo_phalcon_cache_backendinterface_start)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, stop, arginfo_phalcon_cache_backendinterface_stop)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, getFrontend, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, getOptions, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, isFresh, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, isStarted, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, setLastKey, arginfo_phalcon_cache_backendinterface_setlastkey)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, getLastKey, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, get, arginfo_phalcon_cache_backendinterface_get)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, save, arginfo_phalcon_cache_backendinterface_save)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, delete, arginfo_phalcon_cache_backendinterface_delete)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, queryKeys, arginfo_phalcon_cache_backendinterface_querykeys)
PHP_ABSTRACT_ME(Phalcon_Cache_BackendInterface, exists, arginfo_phalcon_cache_backendinterface_exists)
PHP_FE_END
};
zend_class_entry *phalcon_cache_frontendinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_FrontendInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontendinterface_beforestore, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontendinterface_afterretrieve, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_frontendinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Cache_FrontendInterface, getLifetime, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_FrontendInterface, isBuffering, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_FrontendInterface, start, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_FrontendInterface, getContent, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_FrontendInterface, stop, NULL)
PHP_ABSTRACT_ME(Phalcon_Cache_FrontendInterface, beforeStore, arginfo_phalcon_cache_frontendinterface_beforestore)
PHP_ABSTRACT_ME(Phalcon_Cache_FrontendInterface, afterRetrieve, arginfo_phalcon_cache_frontendinterface_afterretrieve)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadatainterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaDataInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_setstrategy, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, strategy, Phalcon\\Mvc\\Model\\MetaData\\StrategyInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_readmetadata, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_readmetadataindex, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_writemetadataindex, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_readcolumnmap, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_readcolumnmapindex, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getprimarykeyattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getnonprimarykeyattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getnotnullattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getdatatypes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getdatatypesnumeric, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getidentityfield, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getbindtypes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getautomaticcreateattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getautomaticupdateattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_setautomaticcreateattributes, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_setautomaticupdateattributes, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_setemptystringattributes, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getemptystringattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getdefaultvalues, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getcolumnmap, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_getreversecolumnmap, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_hasattribute, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadatainterface_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadatainterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, setStrategy, arginfo_phalcon_mvc_model_metadatainterface_setstrategy)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getStrategy, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, readMetaData, arginfo_phalcon_mvc_model_metadatainterface_readmetadata)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, readMetaDataIndex, arginfo_phalcon_mvc_model_metadatainterface_readmetadataindex)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, writeMetaDataIndex, arginfo_phalcon_mvc_model_metadatainterface_writemetadataindex)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, readColumnMap, arginfo_phalcon_mvc_model_metadatainterface_readcolumnmap)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, readColumnMapIndex, arginfo_phalcon_mvc_model_metadatainterface_readcolumnmapindex)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getAttributes, arginfo_phalcon_mvc_model_metadatainterface_getattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getPrimaryKeyAttributes, arginfo_phalcon_mvc_model_metadatainterface_getprimarykeyattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getNonPrimaryKeyAttributes, arginfo_phalcon_mvc_model_metadatainterface_getnonprimarykeyattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getNotNullAttributes, arginfo_phalcon_mvc_model_metadatainterface_getnotnullattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getDataTypes, arginfo_phalcon_mvc_model_metadatainterface_getdatatypes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getDataTypesNumeric, arginfo_phalcon_mvc_model_metadatainterface_getdatatypesnumeric)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getIdentityField, arginfo_phalcon_mvc_model_metadatainterface_getidentityfield)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getBindTypes, arginfo_phalcon_mvc_model_metadatainterface_getbindtypes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getAutomaticCreateAttributes, arginfo_phalcon_mvc_model_metadatainterface_getautomaticcreateattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getAutomaticUpdateAttributes, arginfo_phalcon_mvc_model_metadatainterface_getautomaticupdateattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, setAutomaticCreateAttributes, arginfo_phalcon_mvc_model_metadatainterface_setautomaticcreateattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, setAutomaticUpdateAttributes, arginfo_phalcon_mvc_model_metadatainterface_setautomaticupdateattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, setEmptyStringAttributes, arginfo_phalcon_mvc_model_metadatainterface_setemptystringattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getEmptyStringAttributes, arginfo_phalcon_mvc_model_metadatainterface_getemptystringattributes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getDefaultValues, arginfo_phalcon_mvc_model_metadatainterface_getdefaultvalues)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getColumnMap, arginfo_phalcon_mvc_model_metadatainterface_getcolumnmap)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, getReverseColumnMap, arginfo_phalcon_mvc_model_metadatainterface_getreversecolumnmap)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, hasAttribute, arginfo_phalcon_mvc_model_metadatainterface_hasattribute)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, isEmpty, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, reset, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, read, arginfo_phalcon_mvc_model_metadatainterface_read)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaDataInterface, write, arginfo_phalcon_mvc_model_metadatainterface_write)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backend_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Backend);
static PHP_METHOD(Phalcon_Cache_Backend, getFrontend);
static PHP_METHOD(Phalcon_Cache_Backend, setFrontend);
static PHP_METHOD(Phalcon_Cache_Backend, getOptions);
static PHP_METHOD(Phalcon_Cache_Backend, setOptions);
static PHP_METHOD(Phalcon_Cache_Backend, getLastKey);
static PHP_METHOD(Phalcon_Cache_Backend, setLastKey);
static PHP_METHOD(Phalcon_Cache_Backend, __construct);
static PHP_METHOD(Phalcon_Cache_Backend, start);
static PHP_METHOD(Phalcon_Cache_Backend, stop);
static PHP_METHOD(Phalcon_Cache_Backend, isFresh);
static PHP_METHOD(Phalcon_Cache_Backend, isStarted);
static PHP_METHOD(Phalcon_Cache_Backend, getLifetime);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_setfrontend, 0, 0, 1)
ZEND_ARG_INFO(0, frontend)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_setoptions, 0, 0, 1)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_setlastkey, 0, 0, 1)
ZEND_ARG_INFO(0, lastKey)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend___construct, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, frontend, Phalcon\\Cache\\FrontendInterface, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_start, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_stop, 0, 0, 0)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backend_method_entry) {
PHP_ME(Phalcon_Cache_Backend, getFrontend, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, setFrontend, arginfo_phalcon_cache_backend_setfrontend, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, getOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, setOptions, arginfo_phalcon_cache_backend_setoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, getLastKey, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, setLastKey, arginfo_phalcon_cache_backend_setlastkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, __construct, arginfo_phalcon_cache_backend___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Backend, start, arginfo_phalcon_cache_backend_start, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, stop, arginfo_phalcon_cache_backend_stop, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, isFresh, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, isStarted, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, _initialize);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, setDI);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getDI);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, setStrategy);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getStrategy);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, readMetaData);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, readMetaDataIndex);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, writeMetaDataIndex);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, readColumnMap);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, readColumnMapIndex);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getPrimaryKeyAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getNonPrimaryKeyAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getNotNullAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getDataTypes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getDataTypesNumeric);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getIdentityField);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getBindTypes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getAutomaticCreateAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getAutomaticUpdateAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, setAutomaticCreateAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, setAutomaticUpdateAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, setEmptyStringAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getEmptyStringAttributes);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getDefaultValues);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getColumnMap);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, getReverseColumnMap);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, hasAttribute);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, isEmpty);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData, reset);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata__initialize, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_setstrategy, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, strategy, Phalcon\\Mvc\\Model\\MetaData\\StrategyInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_readmetadata, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_readmetadataindex, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_writemetadataindex, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_readcolumnmap, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_readcolumnmapindex, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getprimarykeyattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getnonprimarykeyattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getnotnullattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getdatatypes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getdatatypesnumeric, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getidentityfield, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getbindtypes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getautomaticcreateattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getautomaticupdateattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_setautomaticcreateattributes, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_setautomaticupdateattributes, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_setemptystringattributes, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getemptystringattributes, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getdefaultvalues, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getcolumnmap, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_getreversecolumnmap, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_hasattribute, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData, _initialize, arginfo_phalcon_mvc_model_metadata__initialize, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_MetaData, setDI, arginfo_phalcon_mvc_model_metadata_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, setStrategy, arginfo_phalcon_mvc_model_metadata_setstrategy, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getStrategy, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, readMetaData, arginfo_phalcon_mvc_model_metadata_readmetadata, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_MetaData, readMetaDataIndex, arginfo_phalcon_mvc_model_metadata_readmetadataindex, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_MetaData, writeMetaDataIndex, arginfo_phalcon_mvc_model_metadata_writemetadataindex, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_MetaData, readColumnMap, arginfo_phalcon_mvc_model_metadata_readcolumnmap, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_MetaData, readColumnMapIndex, arginfo_phalcon_mvc_model_metadata_readcolumnmapindex, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_MetaData, getAttributes, arginfo_phalcon_mvc_model_metadata_getattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getPrimaryKeyAttributes, arginfo_phalcon_mvc_model_metadata_getprimarykeyattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getNonPrimaryKeyAttributes, arginfo_phalcon_mvc_model_metadata_getnonprimarykeyattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getNotNullAttributes, arginfo_phalcon_mvc_model_metadata_getnotnullattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getDataTypes, arginfo_phalcon_mvc_model_metadata_getdatatypes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getDataTypesNumeric, arginfo_phalcon_mvc_model_metadata_getdatatypesnumeric, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getIdentityField, arginfo_phalcon_mvc_model_metadata_getidentityfield, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getBindTypes, arginfo_phalcon_mvc_model_metadata_getbindtypes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getAutomaticCreateAttributes, arginfo_phalcon_mvc_model_metadata_getautomaticcreateattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getAutomaticUpdateAttributes, arginfo_phalcon_mvc_model_metadata_getautomaticupdateattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, setAutomaticCreateAttributes, arginfo_phalcon_mvc_model_metadata_setautomaticcreateattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, setAutomaticUpdateAttributes, arginfo_phalcon_mvc_model_metadata_setautomaticupdateattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, setEmptyStringAttributes, arginfo_phalcon_mvc_model_metadata_setemptystringattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getEmptyStringAttributes, arginfo_phalcon_mvc_model_metadata_getemptystringattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getDefaultValues, arginfo_phalcon_mvc_model_metadata_getdefaultvalues, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getColumnMap, arginfo_phalcon_mvc_model_metadata_getcolumnmap, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, getReverseColumnMap, arginfo_phalcon_mvc_model_metadata_getreversecolumnmap, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, hasAttribute, arginfo_phalcon_mvc_model_metadata_hasattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, isEmpty, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData, reset, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_dispatcherinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_DispatcherInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_setactionsuffix, 0, 0, 1)
ZEND_ARG_INFO(0, actionSuffix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_setdefaultnamespace, 0, 0, 1)
ZEND_ARG_INFO(0, defaultNamespace)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_setdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, actionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_setnamespacename, 0, 0, 1)
ZEND_ARG_INFO(0, namespaceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_setmodulename, 0, 0, 1)
ZEND_ARG_INFO(0, moduleName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_setactionname, 0, 0, 1)
ZEND_ARG_INFO(0, actionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_setparams, 0, 0, 1)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_setparam, 0, 0, 2)
ZEND_ARG_INFO(0, param)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_getparam, 0, 0, 1)
ZEND_ARG_INFO(0, param)
ZEND_ARG_INFO(0, filters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_hasparam, 0, 0, 1)
ZEND_ARG_INFO(0, param)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcherinterface_forward, 0, 0, 1)
ZEND_ARG_INFO(0, forward)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_dispatcherinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, setActionSuffix, arginfo_phalcon_dispatcherinterface_setactionsuffix)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, getActionSuffix, NULL)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, setDefaultNamespace, arginfo_phalcon_dispatcherinterface_setdefaultnamespace)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, setDefaultAction, arginfo_phalcon_dispatcherinterface_setdefaultaction)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, setNamespaceName, arginfo_phalcon_dispatcherinterface_setnamespacename)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, setModuleName, arginfo_phalcon_dispatcherinterface_setmodulename)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, setActionName, arginfo_phalcon_dispatcherinterface_setactionname)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, getActionName, NULL)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, setParams, arginfo_phalcon_dispatcherinterface_setparams)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, getParams, NULL)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, setParam, arginfo_phalcon_dispatcherinterface_setparam)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, getParam, arginfo_phalcon_dispatcherinterface_getparam)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, hasParam, arginfo_phalcon_dispatcherinterface_hasparam)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, isFinished, NULL)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, getReturnedValue, NULL)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, dispatch, NULL)
PHP_ABSTRACT_ME(Phalcon_DispatcherInterface, forward, arginfo_phalcon_dispatcherinterface_forward)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_adapterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_AdapterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_setreader, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, reader, Phalcon\\Annotations\\ReaderInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_get, 0, 0, 1)
ZEND_ARG_INFO(0, className)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_getmethods, 0, 0, 1)
ZEND_ARG_INFO(0, className)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_getmethod, 0, 0, 2)
ZEND_ARG_INFO(0, className)
ZEND_ARG_INFO(0, methodName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_getproperties, 0, 0, 1)
ZEND_ARG_INFO(0, className)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_getproperty, 0, 0, 2)
ZEND_ARG_INFO(0, className)
ZEND_ARG_INFO(0, propertyName)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_adapterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, setReader, arginfo_phalcon_annotations_adapterinterface_setreader)
PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getReader, NULL)
PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, get, arginfo_phalcon_annotations_adapterinterface_get)
PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getMethods, arginfo_phalcon_annotations_adapterinterface_getmethods)
PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getMethod, arginfo_phalcon_annotations_adapterinterface_getmethod)
PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getProperties, arginfo_phalcon_annotations_adapterinterface_getproperties)
PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getProperty, arginfo_phalcon_annotations_adapterinterface_getproperty)
PHP_FE_END
};
zend_class_entry *phalcon_db_adapterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_AdapterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_fetchone, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_ARG_INFO(0, fetchMode)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_fetchall, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_ARG_INFO(0, fetchMode)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_insert, 0, 0, 2)
ZEND_ARG_INFO(0, table)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_update, 0, 0, 3)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, values)
ZEND_ARG_INFO(0, whereCondition)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_delete, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, whereCondition)
ZEND_ARG_INFO(0, placeholders)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_getcolumnlist, 0, 0, 1)
ZEND_ARG_INFO(0, columnList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_limit, 0, 0, 2)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_ARG_INFO(0, number)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_tableexists, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_viewexists, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_forupdate, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_sharedlock, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_createtable, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_droptable, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_createview, 0, 0, 2)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_dropview, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_addcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_modifycolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_ARG_OBJ_INFO(0, currentColumn, Phalcon\\Db\\ColumnInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_dropcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, columnName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_addindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_dropindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, indexName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_addprimarykey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_dropprimarykey, 0, 0, 2)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_addforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, reference, Phalcon\\Db\\ReferenceInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_dropforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, referenceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_getcolumndefinition, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_listtables, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_listviews, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_connect, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, descriptor, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_query, 0, 0, 1)
ZEND_ARG_INFO(0, sqlStatement)
ZEND_ARG_INFO(0, placeholders)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_execute, 0, 0, 1)
ZEND_ARG_INFO(0, sqlStatement)
ZEND_ARG_INFO(0, placeholders)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_escapeidentifier, 0, 0, 1)
ZEND_ARG_INFO(0, identifier)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_escapestring, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_lastinsertid, 0, 0, 0)
ZEND_ARG_INFO(0, sequenceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_begin, 0, 0, 0)
ZEND_ARG_INFO(0, nesting)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_rollback, 0, 0, 0)
ZEND_ARG_INFO(0, nesting)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_commit, 0, 0, 0)
ZEND_ARG_INFO(0, nesting)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_describeindexes, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_describereferences, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_tableoptions, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_createsavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_releasesavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_rollbacksavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_setnestedtransactionswithsavepoints, 0, 0, 1)
ZEND_ARG_INFO(0, nestedTransactionsWithSavepoints)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapterinterface_describecolumns, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_adapterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, fetchOne, arginfo_phalcon_db_adapterinterface_fetchone)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, fetchAll, arginfo_phalcon_db_adapterinterface_fetchall)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, insert, arginfo_phalcon_db_adapterinterface_insert)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, update, arginfo_phalcon_db_adapterinterface_update)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, delete, arginfo_phalcon_db_adapterinterface_delete)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getColumnList, arginfo_phalcon_db_adapterinterface_getcolumnlist)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, limit, arginfo_phalcon_db_adapterinterface_limit)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, tableExists, arginfo_phalcon_db_adapterinterface_tableexists)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, viewExists, arginfo_phalcon_db_adapterinterface_viewexists)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, forUpdate, arginfo_phalcon_db_adapterinterface_forupdate)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, sharedLock, arginfo_phalcon_db_adapterinterface_sharedlock)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, createTable, arginfo_phalcon_db_adapterinterface_createtable)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, dropTable, arginfo_phalcon_db_adapterinterface_droptable)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, createView, arginfo_phalcon_db_adapterinterface_createview)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, dropView, arginfo_phalcon_db_adapterinterface_dropview)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, addColumn, arginfo_phalcon_db_adapterinterface_addcolumn)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, modifyColumn, arginfo_phalcon_db_adapterinterface_modifycolumn)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, dropColumn, arginfo_phalcon_db_adapterinterface_dropcolumn)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, addIndex, arginfo_phalcon_db_adapterinterface_addindex)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, dropIndex, arginfo_phalcon_db_adapterinterface_dropindex)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, addPrimaryKey, arginfo_phalcon_db_adapterinterface_addprimarykey)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, dropPrimaryKey, arginfo_phalcon_db_adapterinterface_dropprimarykey)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, addForeignKey, arginfo_phalcon_db_adapterinterface_addforeignkey)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, dropForeignKey, arginfo_phalcon_db_adapterinterface_dropforeignkey)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getColumnDefinition, arginfo_phalcon_db_adapterinterface_getcolumndefinition)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, listTables, arginfo_phalcon_db_adapterinterface_listtables)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, listViews, arginfo_phalcon_db_adapterinterface_listviews)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getDescriptor, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getConnectionId, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getSQLStatement, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getRealSQLStatement, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getSQLVariables, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getSQLBindTypes, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getType, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getDialectType, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getDialect, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, connect, arginfo_phalcon_db_adapterinterface_connect)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, query, arginfo_phalcon_db_adapterinterface_query)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, execute, arginfo_phalcon_db_adapterinterface_execute)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, affectedRows, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, close, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, escapeIdentifier, arginfo_phalcon_db_adapterinterface_escapeidentifier)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, escapeString, arginfo_phalcon_db_adapterinterface_escapestring)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, lastInsertId, arginfo_phalcon_db_adapterinterface_lastinsertid)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, begin, arginfo_phalcon_db_adapterinterface_begin)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, rollback, arginfo_phalcon_db_adapterinterface_rollback)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, commit, arginfo_phalcon_db_adapterinterface_commit)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, isUnderTransaction, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getInternalHandler, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, describeIndexes, arginfo_phalcon_db_adapterinterface_describeindexes)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, describeReferences, arginfo_phalcon_db_adapterinterface_describereferences)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, tableOptions, arginfo_phalcon_db_adapterinterface_tableoptions)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, useExplicitIdValue, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getDefaultIdValue, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, supportSequences, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, createSavepoint, arginfo_phalcon_db_adapterinterface_createsavepoint)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, releaseSavepoint, arginfo_phalcon_db_adapterinterface_releasesavepoint)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, rollbackSavepoint, arginfo_phalcon_db_adapterinterface_rollbacksavepoint)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, setNestedTransactionsWithSavepoints, arginfo_phalcon_db_adapterinterface_setnestedtransactionswithsavepoints)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, isNestedTransactionsWithSavepoints, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, getNestedTransactionSavepointName, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_AdapterInterface, describeColumns, arginfo_phalcon_db_adapterinterface_describecolumns)
PHP_FE_END
};
zend_class_entry *phalcon_logger_adapterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_AdapterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_setformatter, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, formatter, Phalcon\\Logger\\FormatterInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_setloglevel, 0, 0, 1)
ZEND_ARG_INFO(0, level)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_log, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_debug, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_error, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_info, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_notice, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_warning, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_alert, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapterinterface_emergency, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_adapterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, setFormatter, arginfo_phalcon_logger_adapterinterface_setformatter)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, getFormatter, NULL)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, setLogLevel, arginfo_phalcon_logger_adapterinterface_setloglevel)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, getLogLevel, NULL)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, log, arginfo_phalcon_logger_adapterinterface_log)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, begin, NULL)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, commit, NULL)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, rollback, NULL)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, close, NULL)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, debug, arginfo_phalcon_logger_adapterinterface_debug)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, error, arginfo_phalcon_logger_adapterinterface_error)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, info, arginfo_phalcon_logger_adapterinterface_info)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, notice, arginfo_phalcon_logger_adapterinterface_notice)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, warning, arginfo_phalcon_logger_adapterinterface_warning)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, alert, arginfo_phalcon_logger_adapterinterface_alert)
PHP_ABSTRACT_ME(Phalcon_Logger_AdapterInterface, emergency, arginfo_phalcon_logger_adapterinterface_emergency)
PHP_FE_END
};
zend_class_entry *phalcon_logger_formatterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_FormatterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatterinterface_format, 0, 0, 3)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, timestamp)
ZEND_ARG_INFO(0, context)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_formatterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Logger_FormatterInterface, format, arginfo_phalcon_logger_formatterinterface_format)
PHP_FE_END
};
zend_class_entry *phalcon_session_adapterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Session_AdapterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapterinterface_setoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapterinterface_get, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapterinterface_set, 0, 0, 2)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapterinterface_has, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapterinterface_remove, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapterinterface_destroy, 0, 0, 0)
ZEND_ARG_INFO(0, removeData)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapterinterface_regenerateid, 0, 0, 0)
ZEND_ARG_INFO(0, deleteOldSession)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapterinterface_setname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_session_adapterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, start, NULL)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, setOptions, arginfo_phalcon_session_adapterinterface_setoptions)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, getOptions, NULL)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, get, arginfo_phalcon_session_adapterinterface_get)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, set, arginfo_phalcon_session_adapterinterface_set)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, has, arginfo_phalcon_session_adapterinterface_has)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, remove, arginfo_phalcon_session_adapterinterface_remove)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, getId, NULL)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, isStarted, NULL)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, destroy, arginfo_phalcon_session_adapterinterface_destroy)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, regenerateId, arginfo_phalcon_session_adapterinterface_regenerateid)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, setName, arginfo_phalcon_session_adapterinterface_setname)
PHP_ABSTRACT_ME(Phalcon_Session_AdapterInterface, getName, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_adapter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Adapter);
static PHP_METHOD(Phalcon_Annotations_Adapter, setReader);
static PHP_METHOD(Phalcon_Annotations_Adapter, getReader);
static PHP_METHOD(Phalcon_Annotations_Adapter, get);
static PHP_METHOD(Phalcon_Annotations_Adapter, getMethods);
static PHP_METHOD(Phalcon_Annotations_Adapter, getMethod);
static PHP_METHOD(Phalcon_Annotations_Adapter, getProperties);
static PHP_METHOD(Phalcon_Annotations_Adapter, getProperty);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_setreader, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, reader, Phalcon\\Annotations\\ReaderInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_get, 0, 0, 1)
ZEND_ARG_INFO(0, className)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_getmethods, 0, 0, 1)
ZEND_ARG_INFO(0, className)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_getmethod, 0, 0, 2)
ZEND_ARG_INFO(0, className)
ZEND_ARG_INFO(0, methodName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_getproperties, 0, 0, 1)
ZEND_ARG_INFO(0, className)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_getproperty, 0, 0, 2)
ZEND_ARG_INFO(0, className)
ZEND_ARG_INFO(0, propertyName)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_adapter_method_entry) {
PHP_ME(Phalcon_Annotations_Adapter, setReader, arginfo_phalcon_annotations_adapter_setreader, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter, getReader, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter, get, arginfo_phalcon_annotations_adapter_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter, getMethods, arginfo_phalcon_annotations_adapter_getmethods, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter, getMethod, arginfo_phalcon_annotations_adapter_getmethod, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter, getProperties, arginfo_phalcon_annotations_adapter_getproperties, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter, getProperty, arginfo_phalcon_annotations_adapter_getproperty, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_config_ce;
ZEPHIR_INIT_CLASS(Phalcon_Config);
static PHP_METHOD(Phalcon_Config, __construct);
static PHP_METHOD(Phalcon_Config, offsetExists);
static PHP_METHOD(Phalcon_Config, get);
static PHP_METHOD(Phalcon_Config, offsetGet);
static PHP_METHOD(Phalcon_Config, offsetSet);
static PHP_METHOD(Phalcon_Config, offsetUnset);
static PHP_METHOD(Phalcon_Config, merge);
static PHP_METHOD(Phalcon_Config, toArray);
static PHP_METHOD(Phalcon_Config, count);
static PHP_METHOD(Phalcon_Config, __set_state);
static PHP_METHOD(Phalcon_Config, _merge);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config___construct, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, arrayConfig, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_get, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_merge, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, config, Phalcon\\Config, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config__merge, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, config, Phalcon\\Config, 0)
ZEND_ARG_INFO(0, instance)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_config_method_entry) {
PHP_ME(Phalcon_Config, __construct, arginfo_phalcon_config___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Config, offsetExists, arginfo_phalcon_config_offsetexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Config, get, arginfo_phalcon_config_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Config, offsetGet, arginfo_phalcon_config_offsetget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Config, offsetSet, arginfo_phalcon_config_offsetset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Config, offsetUnset, arginfo_phalcon_config_offsetunset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Config, merge, arginfo_phalcon_config_merge, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Config, toArray, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Config, count, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Config, __set_state, arginfo_phalcon_config___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Config, _merge, arginfo_phalcon_config__merge, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_FE_END
};
zend_class_entry *phalcon_db_adapter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Adapter);
static PHP_METHOD(Phalcon_Db_Adapter, getDialectType);
static PHP_METHOD(Phalcon_Db_Adapter, getType);
static PHP_METHOD(Phalcon_Db_Adapter, getSqlVariables);
static PHP_METHOD(Phalcon_Db_Adapter, __construct);
static PHP_METHOD(Phalcon_Db_Adapter, setEventsManager);
static PHP_METHOD(Phalcon_Db_Adapter, getEventsManager);
static PHP_METHOD(Phalcon_Db_Adapter, setDialect);
static PHP_METHOD(Phalcon_Db_Adapter, getDialect);
static PHP_METHOD(Phalcon_Db_Adapter, fetchOne);
static PHP_METHOD(Phalcon_Db_Adapter, fetchAll);
static PHP_METHOD(Phalcon_Db_Adapter, fetchColumn);
static PHP_METHOD(Phalcon_Db_Adapter, insert);
static PHP_METHOD(Phalcon_Db_Adapter, insertAsDict);
static PHP_METHOD(Phalcon_Db_Adapter, update);
static PHP_METHOD(Phalcon_Db_Adapter, updateAsDict);
static PHP_METHOD(Phalcon_Db_Adapter, delete);
static PHP_METHOD(Phalcon_Db_Adapter, escapeIdentifier);
static PHP_METHOD(Phalcon_Db_Adapter, getColumnList);
static PHP_METHOD(Phalcon_Db_Adapter, limit);
static PHP_METHOD(Phalcon_Db_Adapter, tableExists);
static PHP_METHOD(Phalcon_Db_Adapter, viewExists);
static PHP_METHOD(Phalcon_Db_Adapter, forUpdate);
static PHP_METHOD(Phalcon_Db_Adapter, sharedLock);
static PHP_METHOD(Phalcon_Db_Adapter, createTable);
static PHP_METHOD(Phalcon_Db_Adapter, dropTable);
static PHP_METHOD(Phalcon_Db_Adapter, createView);
static PHP_METHOD(Phalcon_Db_Adapter, dropView);
static PHP_METHOD(Phalcon_Db_Adapter, addColumn);
static PHP_METHOD(Phalcon_Db_Adapter, modifyColumn);
static PHP_METHOD(Phalcon_Db_Adapter, dropColumn);
static PHP_METHOD(Phalcon_Db_Adapter, addIndex);
static PHP_METHOD(Phalcon_Db_Adapter, dropIndex);
static PHP_METHOD(Phalcon_Db_Adapter, addPrimaryKey);
static PHP_METHOD(Phalcon_Db_Adapter, dropPrimaryKey);
static PHP_METHOD(Phalcon_Db_Adapter, addForeignKey);
static PHP_METHOD(Phalcon_Db_Adapter, dropForeignKey);
static PHP_METHOD(Phalcon_Db_Adapter, getColumnDefinition);
static PHP_METHOD(Phalcon_Db_Adapter, listTables);
static PHP_METHOD(Phalcon_Db_Adapter, listViews);
static PHP_METHOD(Phalcon_Db_Adapter, describeIndexes);
static PHP_METHOD(Phalcon_Db_Adapter, describeReferences);
static PHP_METHOD(Phalcon_Db_Adapter, tableOptions);
static PHP_METHOD(Phalcon_Db_Adapter, createSavepoint);
static PHP_METHOD(Phalcon_Db_Adapter, releaseSavepoint);
static PHP_METHOD(Phalcon_Db_Adapter, rollbackSavepoint);
static PHP_METHOD(Phalcon_Db_Adapter, setNestedTransactionsWithSavepoints);
static PHP_METHOD(Phalcon_Db_Adapter, isNestedTransactionsWithSavepoints);
static PHP_METHOD(Phalcon_Db_Adapter, getNestedTransactionSavepointName);
static PHP_METHOD(Phalcon_Db_Adapter, getDefaultIdValue);
static PHP_METHOD(Phalcon_Db_Adapter, getDefaultValue);
static PHP_METHOD(Phalcon_Db_Adapter, supportSequences);
static PHP_METHOD(Phalcon_Db_Adapter, useExplicitIdValue);
static PHP_METHOD(Phalcon_Db_Adapter, getDescriptor);
static PHP_METHOD(Phalcon_Db_Adapter, getConnectionId);
static PHP_METHOD(Phalcon_Db_Adapter, getSQLStatement);
static PHP_METHOD(Phalcon_Db_Adapter, getRealSQLStatement);
static PHP_METHOD(Phalcon_Db_Adapter, getSQLBindTypes);
zend_object *zephir_init_properties_Phalcon_Db_Adapter(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, descriptor, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_setdialect, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dialect, Phalcon\\Db\\DialectInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_fetchone, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_ARG_INFO(0, fetchMode)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_fetchall, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_ARG_INFO(0, fetchMode)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_fetchcolumn, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_ARG_INFO(0, placeholders)
ZEND_ARG_INFO(0, column)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_insert, 0, 0, 2)
ZEND_ARG_INFO(0, table)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_insertasdict, 0, 0, 2)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_update, 0, 0, 3)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, values)
ZEND_ARG_INFO(0, whereCondition)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_updateasdict, 0, 0, 2)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, whereCondition)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_delete, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, whereCondition)
ZEND_ARG_INFO(0, placeholders)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_escapeidentifier, 0, 0, 1)
ZEND_ARG_INFO(0, identifier)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_getcolumnlist, 0, 0, 1)
ZEND_ARG_INFO(0, columnList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_limit, 0, 0, 2)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_ARG_INFO(0, number)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_tableexists, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_viewexists, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_forupdate, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_sharedlock, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_createtable, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_droptable, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_createview, 0, 0, 2)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_dropview, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_addcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_modifycolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_ARG_OBJ_INFO(0, currentColumn, Phalcon\\Db\\ColumnInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_dropcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, columnName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_addindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_dropindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, indexName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_addprimarykey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_dropprimarykey, 0, 0, 2)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_addforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, reference, Phalcon\\Db\\ReferenceInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_dropforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, referenceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_getcolumndefinition, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_listtables, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_listviews, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_describeindexes, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_describereferences, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_tableoptions, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_createsavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_releasesavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_rollbacksavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_setnestedtransactionswithsavepoints, 0, 0, 1)
ZEND_ARG_INFO(0, nestedTransactionsWithSavepoints)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_adapter_method_entry) {
PHP_ME(Phalcon_Db_Adapter, getDialectType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getSqlVariables, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, __construct, arginfo_phalcon_db_adapter___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Db_Adapter, setEventsManager, arginfo_phalcon_db_adapter_seteventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, setDialect, arginfo_phalcon_db_adapter_setdialect, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getDialect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, fetchOne, arginfo_phalcon_db_adapter_fetchone, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, fetchAll, arginfo_phalcon_db_adapter_fetchall, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, fetchColumn, arginfo_phalcon_db_adapter_fetchcolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, insert, arginfo_phalcon_db_adapter_insert, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, insertAsDict, arginfo_phalcon_db_adapter_insertasdict, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, update, arginfo_phalcon_db_adapter_update, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, updateAsDict, arginfo_phalcon_db_adapter_updateasdict, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, delete, arginfo_phalcon_db_adapter_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, escapeIdentifier, arginfo_phalcon_db_adapter_escapeidentifier, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getColumnList, arginfo_phalcon_db_adapter_getcolumnlist, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, limit, arginfo_phalcon_db_adapter_limit, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, tableExists, arginfo_phalcon_db_adapter_tableexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, viewExists, arginfo_phalcon_db_adapter_viewexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, forUpdate, arginfo_phalcon_db_adapter_forupdate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, sharedLock, arginfo_phalcon_db_adapter_sharedlock, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, createTable, arginfo_phalcon_db_adapter_createtable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, dropTable, arginfo_phalcon_db_adapter_droptable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, createView, arginfo_phalcon_db_adapter_createview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, dropView, arginfo_phalcon_db_adapter_dropview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, addColumn, arginfo_phalcon_db_adapter_addcolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, modifyColumn, arginfo_phalcon_db_adapter_modifycolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, dropColumn, arginfo_phalcon_db_adapter_dropcolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, addIndex, arginfo_phalcon_db_adapter_addindex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, dropIndex, arginfo_phalcon_db_adapter_dropindex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, addPrimaryKey, arginfo_phalcon_db_adapter_addprimarykey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, dropPrimaryKey, arginfo_phalcon_db_adapter_dropprimarykey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, addForeignKey, arginfo_phalcon_db_adapter_addforeignkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, dropForeignKey, arginfo_phalcon_db_adapter_dropforeignkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getColumnDefinition, arginfo_phalcon_db_adapter_getcolumndefinition, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, listTables, arginfo_phalcon_db_adapter_listtables, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, listViews, arginfo_phalcon_db_adapter_listviews, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, describeIndexes, arginfo_phalcon_db_adapter_describeindexes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, describeReferences, arginfo_phalcon_db_adapter_describereferences, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, tableOptions, arginfo_phalcon_db_adapter_tableoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, createSavepoint, arginfo_phalcon_db_adapter_createsavepoint, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, releaseSavepoint, arginfo_phalcon_db_adapter_releasesavepoint, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, rollbackSavepoint, arginfo_phalcon_db_adapter_rollbacksavepoint, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, setNestedTransactionsWithSavepoints, arginfo_phalcon_db_adapter_setnestedtransactionswithsavepoints, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, isNestedTransactionsWithSavepoints, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getNestedTransactionSavepointName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getDefaultIdValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getDefaultValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, supportSequences, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, useExplicitIdValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getDescriptor, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getConnectionId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getSQLStatement, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getRealSQLStatement, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter, getSQLBindTypes, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_dialectinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_DialectInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_limit, 0, 0, 2)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_ARG_INFO(0, number)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_forupdate, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_sharedlock, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_select, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_getcolumnlist, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, columnList, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_getcolumndefinition, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_addcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_modifycolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_ARG_OBJ_INFO(0, currentColumn, Phalcon\\Db\\ColumnInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_dropcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, columnName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_addindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_dropindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, indexName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_addprimarykey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_dropprimarykey, 0, 0, 2)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_addforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, reference, Phalcon\\Db\\ReferenceInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_dropforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, referenceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_createtable, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_createview, 0, 0, 2)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_droptable, 0, 0, 2)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_dropview, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_tableexists, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_viewexists, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_describecolumns, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_listtables, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_describeindexes, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_describereferences, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_tableoptions, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_createsavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_releasesavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialectinterface_rollbacksavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_dialectinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, limit, arginfo_phalcon_db_dialectinterface_limit)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, forUpdate, arginfo_phalcon_db_dialectinterface_forupdate)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, sharedLock, arginfo_phalcon_db_dialectinterface_sharedlock)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, select, arginfo_phalcon_db_dialectinterface_select)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, getColumnList, arginfo_phalcon_db_dialectinterface_getcolumnlist)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, getColumnDefinition, arginfo_phalcon_db_dialectinterface_getcolumndefinition)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, addColumn, arginfo_phalcon_db_dialectinterface_addcolumn)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, modifyColumn, arginfo_phalcon_db_dialectinterface_modifycolumn)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, dropColumn, arginfo_phalcon_db_dialectinterface_dropcolumn)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, addIndex, arginfo_phalcon_db_dialectinterface_addindex)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, dropIndex, arginfo_phalcon_db_dialectinterface_dropindex)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, addPrimaryKey, arginfo_phalcon_db_dialectinterface_addprimarykey)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, dropPrimaryKey, arginfo_phalcon_db_dialectinterface_dropprimarykey)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, addForeignKey, arginfo_phalcon_db_dialectinterface_addforeignkey)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, dropForeignKey, arginfo_phalcon_db_dialectinterface_dropforeignkey)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, createTable, arginfo_phalcon_db_dialectinterface_createtable)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, createView, arginfo_phalcon_db_dialectinterface_createview)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, dropTable, arginfo_phalcon_db_dialectinterface_droptable)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, dropView, arginfo_phalcon_db_dialectinterface_dropview)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, tableExists, arginfo_phalcon_db_dialectinterface_tableexists)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, viewExists, arginfo_phalcon_db_dialectinterface_viewexists)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, describeColumns, arginfo_phalcon_db_dialectinterface_describecolumns)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, listTables, arginfo_phalcon_db_dialectinterface_listtables)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, describeIndexes, arginfo_phalcon_db_dialectinterface_describeindexes)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, describeReferences, arginfo_phalcon_db_dialectinterface_describereferences)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, tableOptions, arginfo_phalcon_db_dialectinterface_tableoptions)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, supportsSavepoints, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, supportsReleaseSavepoints, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, createSavepoint, arginfo_phalcon_db_dialectinterface_createsavepoint)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, releaseSavepoint, arginfo_phalcon_db_dialectinterface_releasesavepoint)
PHP_ABSTRACT_ME(Phalcon_Db_DialectInterface, rollbackSavepoint, arginfo_phalcon_db_dialectinterface_rollbacksavepoint)
PHP_FE_END
};
zend_class_entry *phalcon_logger_adapter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Adapter);
static PHP_METHOD(Phalcon_Logger_Adapter, setLogLevel);
static PHP_METHOD(Phalcon_Logger_Adapter, getLogLevel);
static PHP_METHOD(Phalcon_Logger_Adapter, setFormatter);
static PHP_METHOD(Phalcon_Logger_Adapter, begin);
static PHP_METHOD(Phalcon_Logger_Adapter, commit);
static PHP_METHOD(Phalcon_Logger_Adapter, rollback);
static PHP_METHOD(Phalcon_Logger_Adapter, isTransaction);
static PHP_METHOD(Phalcon_Logger_Adapter, critical);
static PHP_METHOD(Phalcon_Logger_Adapter, emergency);
static PHP_METHOD(Phalcon_Logger_Adapter, debug);
static PHP_METHOD(Phalcon_Logger_Adapter, error);
static PHP_METHOD(Phalcon_Logger_Adapter, info);
static PHP_METHOD(Phalcon_Logger_Adapter, notice);
static PHP_METHOD(Phalcon_Logger_Adapter, warning);
static PHP_METHOD(Phalcon_Logger_Adapter, alert);
static PHP_METHOD(Phalcon_Logger_Adapter, log);
zend_object *zephir_init_properties_Phalcon_Logger_Adapter(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_setloglevel, 0, 0, 1)
ZEND_ARG_INFO(0, level)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_setformatter, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, formatter, Phalcon\\Logger\\FormatterInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_critical, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_emergency, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_debug, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_error, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_info, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_notice, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_warning, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_alert, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_log, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_adapter_method_entry) {
PHP_ME(Phalcon_Logger_Adapter, setLogLevel, arginfo_phalcon_logger_adapter_setloglevel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, getLogLevel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, setFormatter, arginfo_phalcon_logger_adapter_setformatter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, begin, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, commit, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, rollback, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, isTransaction, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, critical, arginfo_phalcon_logger_adapter_critical, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, emergency, arginfo_phalcon_logger_adapter_emergency, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, debug, arginfo_phalcon_logger_adapter_debug, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, error, arginfo_phalcon_logger_adapter_error, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, info, arginfo_phalcon_logger_adapter_info, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, notice, arginfo_phalcon_logger_adapter_notice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, warning, arginfo_phalcon_logger_adapter_warning, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, alert, arginfo_phalcon_logger_adapter_alert, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter, log, arginfo_phalcon_logger_adapter_log, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_logger_formatter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Formatter);
static PHP_METHOD(Phalcon_Logger_Formatter, getTypeString);
static PHP_METHOD(Phalcon_Logger_Formatter, interpolate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_gettypestring, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_interpolate, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, context)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_formatter_method_entry) {
PHP_ME(Phalcon_Logger_Formatter, getTypeString, arginfo_phalcon_logger_formatter_gettypestring, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter, interpolate, arginfo_phalcon_logger_formatter_interpolate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_entityinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_EntityInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_entityinterface_readattribute, 0, 0, 1)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_entityinterface_writeattribute, 0, 0, 2)
ZEND_ARG_INFO(0, attribute)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_entityinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_EntityInterface, readAttribute, arginfo_phalcon_mvc_entityinterface_readattribute)
PHP_ABSTRACT_ME(Phalcon_Mvc_EntityInterface, writeAttribute, arginfo_phalcon_mvc_entityinterface_writeattribute)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_resultsetinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_ResultsetInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultsetinterface_setisfresh, 0, 0, 1)
ZEND_ARG_INFO(0, isFresh)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_resultsetinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ResultsetInterface, getType, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ResultsetInterface, getFirst, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ResultsetInterface, getLast, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ResultsetInterface, setIsFresh, arginfo_phalcon_mvc_model_resultsetinterface_setisfresh)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ResultsetInterface, isFresh, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ResultsetInterface, getCache, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ResultsetInterface, toArray, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_paginator_adapterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Paginator_AdapterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_paginator_adapterinterface_setcurrentpage, 0, 0, 1)
ZEND_ARG_INFO(0, page)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_paginator_adapterinterface_setlimit, 0, 0, 1)
ZEND_ARG_INFO(0, limit)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_paginator_adapterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Paginator_AdapterInterface, setCurrentPage, arginfo_phalcon_paginator_adapterinterface_setcurrentpage)
PHP_ABSTRACT_ME(Phalcon_Paginator_AdapterInterface, getPaginate, NULL)
PHP_ABSTRACT_ME(Phalcon_Paginator_AdapterInterface, setLimit, arginfo_phalcon_paginator_adapterinterface_setlimit)
PHP_ABSTRACT_ME(Phalcon_Paginator_AdapterInterface, getLimit, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_session_adapter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Session_Adapter);
static PHP_METHOD(Phalcon_Session_Adapter, __construct);
static PHP_METHOD(Phalcon_Session_Adapter, start);
static PHP_METHOD(Phalcon_Session_Adapter, setOptions);
static PHP_METHOD(Phalcon_Session_Adapter, getOptions);
static PHP_METHOD(Phalcon_Session_Adapter, setName);
static PHP_METHOD(Phalcon_Session_Adapter, getName);
static PHP_METHOD(Phalcon_Session_Adapter, regenerateId);
static PHP_METHOD(Phalcon_Session_Adapter, get);
static PHP_METHOD(Phalcon_Session_Adapter, set);
static PHP_METHOD(Phalcon_Session_Adapter, has);
static PHP_METHOD(Phalcon_Session_Adapter, remove);
static PHP_METHOD(Phalcon_Session_Adapter, getId);
static PHP_METHOD(Phalcon_Session_Adapter, setId);
static PHP_METHOD(Phalcon_Session_Adapter, isStarted);
static PHP_METHOD(Phalcon_Session_Adapter, destroy);
static PHP_METHOD(Phalcon_Session_Adapter, status);
static PHP_METHOD(Phalcon_Session_Adapter, __get);
static PHP_METHOD(Phalcon_Session_Adapter, __set);
static PHP_METHOD(Phalcon_Session_Adapter, __isset);
static PHP_METHOD(Phalcon_Session_Adapter, __unset);
static PHP_METHOD(Phalcon_Session_Adapter, __destruct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_setoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_setname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_regenerateid, 0, 0, 0)
ZEND_ARG_INFO(0, deleteOldSession)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_get, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, defaultValue)
ZEND_ARG_INFO(0, remove)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_set, 0, 0, 2)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_has, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_remove, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_setid, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_destroy, 0, 0, 0)
ZEND_ARG_INFO(0, removeData)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter___get, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter___set, 0, 0, 2)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter___isset, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter___unset, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_session_adapter_method_entry) {
PHP_ME(Phalcon_Session_Adapter, __construct, arginfo_phalcon_session_adapter___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Session_Adapter, start, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, setOptions, arginfo_phalcon_session_adapter_setoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, getOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, setName, arginfo_phalcon_session_adapter_setname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, regenerateId, arginfo_phalcon_session_adapter_regenerateid, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, get, arginfo_phalcon_session_adapter_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, set, arginfo_phalcon_session_adapter_set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, has, arginfo_phalcon_session_adapter_has, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, remove, arginfo_phalcon_session_adapter_remove, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, getId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, setId, arginfo_phalcon_session_adapter_setid, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, isStarted, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, destroy, arginfo_phalcon_session_adapter_destroy, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, status, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, __get, arginfo_phalcon_session_adapter___get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, __set, arginfo_phalcon_session_adapter___set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, __isset, arginfo_phalcon_session_adapter___isset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, __unset, arginfo_phalcon_session_adapter___unset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter, __destruct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_DTOR)
PHP_FE_END
};
zend_class_entry *phalcon_translate_adapterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate_AdapterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapterinterface_t, 0, 0, 1)
ZEND_ARG_INFO(0, translateKey)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapterinterface_query, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapterinterface_exists, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_translate_adapterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Translate_AdapterInterface, t, arginfo_phalcon_translate_adapterinterface_t)
PHP_ABSTRACT_ME(Phalcon_Translate_AdapterInterface, query, arginfo_phalcon_translate_adapterinterface_query)
PHP_ABSTRACT_ME(Phalcon_Translate_AdapterInterface, exists, arginfo_phalcon_translate_adapterinterface_exists)
PHP_FE_END
};
zend_class_entry *phalcon_assets_filterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_FilterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_filterinterface_filter, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_filterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Assets_FilterInterface, filter, arginfo_phalcon_assets_filterinterface_filter)
PHP_FE_END
};
zend_class_entry *phalcon_db_adapter_pdo_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Adapter_Pdo);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, __construct);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, connect);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, prepare);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, executePrepared);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, query);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, execute);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, affectedRows);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, close);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, escapeString);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, convertBoundParams);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, lastInsertId);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, begin);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, rollback);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, commit);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, getTransactionLevel);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, isUnderTransaction);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, getInternalHandler);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo, getErrorInfo);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, descriptor, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_connect, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, descriptor, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_prepare, 0, 0, 1)
ZEND_ARG_INFO(0, sqlStatement)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_executeprepared, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, statement, PDOStatement, 0)
ZEND_ARG_ARRAY_INFO(0, placeholders, 0)
ZEND_ARG_INFO(0, dataTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_query, 0, 0, 1)
ZEND_ARG_INFO(0, sqlStatement)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_execute, 0, 0, 1)
ZEND_ARG_INFO(0, sqlStatement)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_escapestring, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_convertboundparams, 0, 0, 1)
ZEND_ARG_INFO(0, sql)
ZEND_ARG_ARRAY_INFO(0, params, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_lastinsertid, 0, 0, 0)
ZEND_ARG_INFO(0, sequenceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_begin, 0, 0, 0)
ZEND_ARG_INFO(0, nesting)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_rollback, 0, 0, 0)
ZEND_ARG_INFO(0, nesting)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_commit, 0, 0, 0)
ZEND_ARG_INFO(0, nesting)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_adapter_pdo_method_entry) {
PHP_ME(Phalcon_Db_Adapter_Pdo, __construct, arginfo_phalcon_db_adapter_pdo___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Db_Adapter_Pdo, connect, arginfo_phalcon_db_adapter_pdo_connect, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, prepare, arginfo_phalcon_db_adapter_pdo_prepare, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, executePrepared, arginfo_phalcon_db_adapter_pdo_executeprepared, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, query, arginfo_phalcon_db_adapter_pdo_query, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, execute, arginfo_phalcon_db_adapter_pdo_execute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, affectedRows, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, close, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, escapeString, arginfo_phalcon_db_adapter_pdo_escapestring, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, convertBoundParams, arginfo_phalcon_db_adapter_pdo_convertboundparams, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, lastInsertId, arginfo_phalcon_db_adapter_pdo_lastinsertid, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, begin, arginfo_phalcon_db_adapter_pdo_begin, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, rollback, arginfo_phalcon_db_adapter_pdo_rollback, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, commit, arginfo_phalcon_db_adapter_pdo_commit, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, getTransactionLevel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, isUnderTransaction, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, getInternalHandler, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo, getErrorInfo, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_dialect_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Dialect);
static PHP_METHOD(Phalcon_Db_Dialect, registerCustomFunction);
static PHP_METHOD(Phalcon_Db_Dialect, getCustomFunctions);
static PHP_METHOD(Phalcon_Db_Dialect, escapeSchema);
static PHP_METHOD(Phalcon_Db_Dialect, escape);
static PHP_METHOD(Phalcon_Db_Dialect, limit);
static PHP_METHOD(Phalcon_Db_Dialect, forUpdate);
static PHP_METHOD(Phalcon_Db_Dialect, sharedLock);
static PHP_METHOD(Phalcon_Db_Dialect, getColumnList);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlColumn);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpression);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlTable);
static PHP_METHOD(Phalcon_Db_Dialect, select);
static PHP_METHOD(Phalcon_Db_Dialect, supportsSavepoints);
static PHP_METHOD(Phalcon_Db_Dialect, supportsReleaseSavepoints);
static PHP_METHOD(Phalcon_Db_Dialect, createSavepoint);
static PHP_METHOD(Phalcon_Db_Dialect, releaseSavepoint);
static PHP_METHOD(Phalcon_Db_Dialect, rollbackSavepoint);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionScalar);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionObject);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionQualified);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionBinaryOperations);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionUnaryOperations);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionFunctionCall);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionList);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionAll);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionCastValue);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionConvertValue);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionCase);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionFrom);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionJoins);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionWhere);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionGroupBy);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionHaving);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionOrderBy);
static PHP_METHOD(Phalcon_Db_Dialect, getSqlExpressionLimit);
static PHP_METHOD(Phalcon_Db_Dialect, prepareColumnAlias);
static PHP_METHOD(Phalcon_Db_Dialect, prepareTable);
static PHP_METHOD(Phalcon_Db_Dialect, prepareQualified);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_registercustomfunction, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, customFunction)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_escapeschema, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, escapeChar)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_escape, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, escapeChar)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_limit, 0, 0, 2)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_ARG_INFO(0, number)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_forupdate, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sharedlock, 0, 0, 1)
ZEND_ARG_INFO(0, sqlQuery)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getcolumnlist, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, columnList, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlcolumn, 0, 0, 1)
ZEND_ARG_INFO(0, column)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpression, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqltable, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, escapeChar)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_select, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_createsavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_releasesavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_rollbacksavepoint, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionscalar, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionobject, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionqualified, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionbinaryoperations, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionunaryoperations, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionfunctioncall, 0, 0, 2)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionlist, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionall, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressioncastvalue, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionconvertvalue, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressioncase, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionfrom, 0, 0, 1)
ZEND_ARG_INFO(0, expression)
ZEND_ARG_INFO(0, escapeChar)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionjoins, 0, 0, 1)
ZEND_ARG_INFO(0, expression)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionwhere, 0, 0, 1)
ZEND_ARG_INFO(0, expression)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressiongroupby, 0, 0, 1)
ZEND_ARG_INFO(0, expression)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionhaving, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expression, 0)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionorderby, 0, 0, 1)
ZEND_ARG_INFO(0, expression)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_getsqlexpressionlimit, 0, 0, 1)
ZEND_ARG_INFO(0, expression)
ZEND_ARG_INFO(0, escapeChar)
ZEND_ARG_INFO(0, bindCounts)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_preparecolumnalias, 0, 0, 1)
ZEND_ARG_INFO(0, qualified)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, escapeChar)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_preparetable, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, escapeChar)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_preparequalified, 0, 0, 1)
ZEND_ARG_INFO(0, column)
ZEND_ARG_INFO(0, domain)
ZEND_ARG_INFO(0, escapeChar)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_dialect_method_entry) {
PHP_ME(Phalcon_Db_Dialect, registerCustomFunction, arginfo_phalcon_db_dialect_registercustomfunction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, getCustomFunctions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, escapeSchema, arginfo_phalcon_db_dialect_escapeschema, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, escape, arginfo_phalcon_db_dialect_escape, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, limit, arginfo_phalcon_db_dialect_limit, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, forUpdate, arginfo_phalcon_db_dialect_forupdate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, sharedLock, arginfo_phalcon_db_dialect_sharedlock, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, getColumnList, arginfo_phalcon_db_dialect_getcolumnlist, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlColumn, arginfo_phalcon_db_dialect_getsqlcolumn, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpression, arginfo_phalcon_db_dialect_getsqlexpression, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, getSqlTable, arginfo_phalcon_db_dialect_getsqltable, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, select, arginfo_phalcon_db_dialect_select, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, supportsSavepoints, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, supportsReleaseSavepoints, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, createSavepoint, arginfo_phalcon_db_dialect_createsavepoint, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, releaseSavepoint, arginfo_phalcon_db_dialect_releasesavepoint, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, rollbackSavepoint, arginfo_phalcon_db_dialect_rollbacksavepoint, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionScalar, arginfo_phalcon_db_dialect_getsqlexpressionscalar, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionObject, arginfo_phalcon_db_dialect_getsqlexpressionobject, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionQualified, arginfo_phalcon_db_dialect_getsqlexpressionqualified, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionBinaryOperations, arginfo_phalcon_db_dialect_getsqlexpressionbinaryoperations, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionUnaryOperations, arginfo_phalcon_db_dialect_getsqlexpressionunaryoperations, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionFunctionCall, arginfo_phalcon_db_dialect_getsqlexpressionfunctioncall, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionList, arginfo_phalcon_db_dialect_getsqlexpressionlist, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionAll, arginfo_phalcon_db_dialect_getsqlexpressionall, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionCastValue, arginfo_phalcon_db_dialect_getsqlexpressioncastvalue, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionConvertValue, arginfo_phalcon_db_dialect_getsqlexpressionconvertvalue, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionCase, arginfo_phalcon_db_dialect_getsqlexpressioncase, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionFrom, arginfo_phalcon_db_dialect_getsqlexpressionfrom, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionJoins, arginfo_phalcon_db_dialect_getsqlexpressionjoins, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionWhere, arginfo_phalcon_db_dialect_getsqlexpressionwhere, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionGroupBy, arginfo_phalcon_db_dialect_getsqlexpressiongroupby, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionHaving, arginfo_phalcon_db_dialect_getsqlexpressionhaving, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionOrderBy, arginfo_phalcon_db_dialect_getsqlexpressionorderby, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, getSqlExpressionLimit, arginfo_phalcon_db_dialect_getsqlexpressionlimit, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Db_Dialect, prepareColumnAlias, arginfo_phalcon_db_dialect_preparecolumnalias, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Db_Dialect, prepareTable, arginfo_phalcon_db_dialect_preparetable, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Db_Dialect, prepareQualified, arginfo_phalcon_db_dialect_preparequalified, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_diinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_DiInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_set, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_ARG_INFO(0, shared)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_setshared, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_remove, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_attempt, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_ARG_INFO(0, shared)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_get, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_getshared, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_setraw, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_OBJ_INFO(0, rawDefinition, Phalcon\\Di\\ServiceInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_getraw, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_getservice, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_has, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_diinterface_setdefault, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_diinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_DiInterface, set, arginfo_phalcon_diinterface_set)
PHP_ABSTRACT_ME(Phalcon_DiInterface, setShared, arginfo_phalcon_diinterface_setshared)
PHP_ABSTRACT_ME(Phalcon_DiInterface, remove, arginfo_phalcon_diinterface_remove)
PHP_ABSTRACT_ME(Phalcon_DiInterface, attempt, arginfo_phalcon_diinterface_attempt)
PHP_ABSTRACT_ME(Phalcon_DiInterface, get, arginfo_phalcon_diinterface_get)
PHP_ABSTRACT_ME(Phalcon_DiInterface, getShared, arginfo_phalcon_diinterface_getshared)
PHP_ABSTRACT_ME(Phalcon_DiInterface, setRaw, arginfo_phalcon_diinterface_setraw)
PHP_ABSTRACT_ME(Phalcon_DiInterface, getRaw, arginfo_phalcon_diinterface_getraw)
PHP_ABSTRACT_ME(Phalcon_DiInterface, getService, arginfo_phalcon_diinterface_getservice)
PHP_ABSTRACT_ME(Phalcon_DiInterface, has, arginfo_phalcon_diinterface_has)
PHP_ABSTRACT_ME(Phalcon_DiInterface, wasFreshInstance, NULL)
PHP_ABSTRACT_ME(Phalcon_DiInterface, getServices, NULL)
ZEND_FENTRY(setDefault, NULL, arginfo_phalcon_diinterface_setdefault, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(getDefault, NULL, NULL, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(reset, NULL, NULL, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_flashinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_FlashInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flashinterface_error, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flashinterface_notice, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flashinterface_success, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flashinterface_warning, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flashinterface_message, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_flashinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_FlashInterface, error, arginfo_phalcon_flashinterface_error)
PHP_ABSTRACT_ME(Phalcon_FlashInterface, notice, arginfo_phalcon_flashinterface_notice)
PHP_ABSTRACT_ME(Phalcon_FlashInterface, success, arginfo_phalcon_flashinterface_success)
PHP_ABSTRACT_ME(Phalcon_FlashInterface, warning, arginfo_phalcon_flashinterface_warning)
PHP_ABSTRACT_ME(Phalcon_FlashInterface, message, arginfo_phalcon_flashinterface_message)
PHP_FE_END
};
zend_class_entry *phalcon_image_adapterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Image_AdapterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_resize, 0, 0, 0)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, master)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_crop, 0, 0, 2)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_rotate, 0, 0, 1)
ZEND_ARG_INFO(0, degrees)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_flip, 0, 0, 1)
ZEND_ARG_INFO(0, direction)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_sharpen, 0, 0, 1)
ZEND_ARG_INFO(0, amount)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_reflection, 0, 0, 1)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, opacity)
ZEND_ARG_INFO(0, fadeIn)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_watermark, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, watermark, Phalcon\\Image\\Adapter, 0)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_ARG_INFO(0, opacity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_text, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_ARG_INFO(0, opacity)
ZEND_ARG_INFO(0, color)
ZEND_ARG_INFO(0, size)
ZEND_ARG_INFO(0, fontfile)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_mask, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, watermark, Phalcon\\Image\\Adapter, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_background, 0, 0, 1)
ZEND_ARG_INFO(0, color)
ZEND_ARG_INFO(0, opacity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_blur, 0, 0, 1)
ZEND_ARG_INFO(0, radius)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_pixelate, 0, 0, 1)
ZEND_ARG_INFO(0, amount)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_save, 0, 0, 0)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, quality)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapterinterface_render, 0, 0, 0)
ZEND_ARG_INFO(0, ext)
ZEND_ARG_INFO(0, quality)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_image_adapterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, resize, arginfo_phalcon_image_adapterinterface_resize)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, crop, arginfo_phalcon_image_adapterinterface_crop)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, rotate, arginfo_phalcon_image_adapterinterface_rotate)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, flip, arginfo_phalcon_image_adapterinterface_flip)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, sharpen, arginfo_phalcon_image_adapterinterface_sharpen)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, reflection, arginfo_phalcon_image_adapterinterface_reflection)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, watermark, arginfo_phalcon_image_adapterinterface_watermark)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, text, arginfo_phalcon_image_adapterinterface_text)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, mask, arginfo_phalcon_image_adapterinterface_mask)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, background, arginfo_phalcon_image_adapterinterface_background)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, blur, arginfo_phalcon_image_adapterinterface_blur)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, pixelate, arginfo_phalcon_image_adapterinterface_pixelate)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, save, arginfo_phalcon_image_adapterinterface_save)
PHP_ABSTRACT_ME(Phalcon_Image_AdapterInterface, render, arginfo_phalcon_image_adapterinterface_render)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_collection_behaviorinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Collection_BehaviorInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_behaviorinterface_notify, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_behaviorinterface_missingmethod, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_collection_behaviorinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_BehaviorInterface, notify, arginfo_phalcon_mvc_collection_behaviorinterface_notify)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_BehaviorInterface, missingMethod, arginfo_phalcon_mvc_collection_behaviorinterface_missingmethod)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_behaviorinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_BehaviorInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_behaviorinterface_notify, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_behaviorinterface_missingmethod, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_behaviorinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_BehaviorInterface, notify, arginfo_phalcon_mvc_model_behaviorinterface_notify)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_BehaviorInterface, missingMethod, arginfo_phalcon_mvc_model_behaviorinterface_missingmethod)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Exception);
zend_class_entry *phalcon_mvc_view_engineinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_View_EngineInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engineinterface_partial, 0, 0, 1)
ZEND_ARG_INFO(0, partialPath)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engineinterface_render, 0, 0, 2)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, params)
ZEND_ARG_INFO(0, mustClean)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_view_engineinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_View_EngineInterface, getContent, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_View_EngineInterface, partial, arginfo_phalcon_mvc_view_engineinterface_partial)
PHP_ABSTRACT_ME(Phalcon_Mvc_View_EngineInterface, render, arginfo_phalcon_mvc_view_engineinterface_render)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_viewbaseinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_ViewBaseInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewbaseinterface_setviewsdir, 0, 0, 1)
ZEND_ARG_INFO(0, viewsDir)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewbaseinterface_setparamtoview, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewbaseinterface_setvar, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewbaseinterface_cache, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewbaseinterface_setcontent, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewbaseinterface_partial, 0, 0, 1)
ZEND_ARG_INFO(0, partialPath)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_viewbaseinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, setViewsDir, arginfo_phalcon_mvc_viewbaseinterface_setviewsdir)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, getViewsDir, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, setParamToView, arginfo_phalcon_mvc_viewbaseinterface_setparamtoview)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, setVar, arginfo_phalcon_mvc_viewbaseinterface_setvar)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, getParamsToView, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, getCache, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, cache, arginfo_phalcon_mvc_viewbaseinterface_cache)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, setContent, arginfo_phalcon_mvc_viewbaseinterface_setcontent)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, getContent, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewBaseInterface, partial, arginfo_phalcon_mvc_viewbaseinterface_partial)
PHP_FE_END
};
zend_class_entry *phalcon_paginator_adapter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Paginator_Adapter);
static PHP_METHOD(Phalcon_Paginator_Adapter, setCurrentPage);
static PHP_METHOD(Phalcon_Paginator_Adapter, setLimit);
static PHP_METHOD(Phalcon_Paginator_Adapter, getLimit);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_paginator_adapter_setcurrentpage, 0, 0, 1)
ZEND_ARG_INFO(0, page)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_paginator_adapter_setlimit, 0, 0, 1)
ZEND_ARG_INFO(0, limitRows)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_paginator_adapter_method_entry) {
PHP_ME(Phalcon_Paginator_Adapter, setCurrentPage, arginfo_phalcon_paginator_adapter_setcurrentpage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Paginator_Adapter, setLimit, arginfo_phalcon_paginator_adapter_setlimit, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Paginator_Adapter, getLimit, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_translate_adapter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate_Adapter);
static PHP_METHOD(Phalcon_Translate_Adapter, __construct);
static PHP_METHOD(Phalcon_Translate_Adapter, setInterpolator);
static PHP_METHOD(Phalcon_Translate_Adapter, t);
static PHP_METHOD(Phalcon_Translate_Adapter, _);
static PHP_METHOD(Phalcon_Translate_Adapter, offsetSet);
static PHP_METHOD(Phalcon_Translate_Adapter, offsetExists);
static PHP_METHOD(Phalcon_Translate_Adapter, offsetUnset);
static PHP_METHOD(Phalcon_Translate_Adapter, offsetGet);
static PHP_METHOD(Phalcon_Translate_Adapter, replacePlaceholders);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_setinterpolator, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, interpolator, Phalcon\\Translate\\InterpolatorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_t, 0, 0, 1)
ZEND_ARG_INFO(0, translateKey)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter__, 0, 0, 1)
ZEND_ARG_INFO(0, translateKey)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, offset)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, translateKey)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, translateKey)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_replaceplaceholders, 0, 0, 1)
ZEND_ARG_INFO(0, translation)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_translate_adapter_method_entry) {
PHP_ME(Phalcon_Translate_Adapter, __construct, arginfo_phalcon_translate_adapter___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Translate_Adapter, setInterpolator, arginfo_phalcon_translate_adapter_setinterpolator, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter, t, arginfo_phalcon_translate_adapter_t, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter, _, arginfo_phalcon_translate_adapter__, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter, offsetSet, arginfo_phalcon_translate_adapter_offsetset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter, offsetExists, arginfo_phalcon_translate_adapter_offsetexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter, offsetUnset, arginfo_phalcon_translate_adapter_offsetunset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter, offsetGet, arginfo_phalcon_translate_adapter_offsetget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter, replacePlaceholders, arginfo_phalcon_translate_adapter_replaceplaceholders, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_acl_adapterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_AdapterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_setdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, defaultAccess)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_setnoargumentsdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, defaultAccess)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_addrole, 0, 0, 1)
ZEND_ARG_INFO(0, role)
ZEND_ARG_INFO(0, accessInherits)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_addinherit, 0, 0, 2)
ZEND_ARG_INFO(0, roleName)
ZEND_ARG_INFO(0, roleToInherit)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_isrole, 0, 0, 1)
ZEND_ARG_INFO(0, roleName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_isresource, 0, 0, 1)
ZEND_ARG_INFO(0, resourceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_addresource, 0, 0, 2)
ZEND_ARG_INFO(0, resourceObject)
ZEND_ARG_INFO(0, accessList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_addresourceaccess, 0, 0, 2)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, accessList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_dropresourceaccess, 0, 0, 2)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, accessList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_allow, 0, 0, 3)
ZEND_ARG_INFO(0, roleName)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, access)
ZEND_ARG_INFO(0, func)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_deny, 0, 0, 3)
ZEND_ARG_INFO(0, roleName)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, access)
ZEND_ARG_INFO(0, func)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapterinterface_isallowed, 0, 0, 3)
ZEND_ARG_INFO(0, roleName)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, access)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_acl_adapterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, setDefaultAction, arginfo_phalcon_acl_adapterinterface_setdefaultaction)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, getDefaultAction, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, setNoArgumentsDefaultAction, arginfo_phalcon_acl_adapterinterface_setnoargumentsdefaultaction)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, getNoArgumentsDefaultAction, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, addRole, arginfo_phalcon_acl_adapterinterface_addrole)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, addInherit, arginfo_phalcon_acl_adapterinterface_addinherit)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, isRole, arginfo_phalcon_acl_adapterinterface_isrole)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, isResource, arginfo_phalcon_acl_adapterinterface_isresource)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, addResource, arginfo_phalcon_acl_adapterinterface_addresource)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, addResourceAccess, arginfo_phalcon_acl_adapterinterface_addresourceaccess)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, dropResourceAccess, arginfo_phalcon_acl_adapterinterface_dropresourceaccess)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, allow, arginfo_phalcon_acl_adapterinterface_allow)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, deny, arginfo_phalcon_acl_adapterinterface_deny)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, isAllowed, arginfo_phalcon_acl_adapterinterface_isallowed)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, getActiveRole, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, getActiveResource, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, getActiveAccess, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, getRoles, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_AdapterInterface, getResources, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_application_ce;
ZEPHIR_INIT_CLASS(Phalcon_Application);
static PHP_METHOD(Phalcon_Application, __construct);
static PHP_METHOD(Phalcon_Application, setEventsManager);
static PHP_METHOD(Phalcon_Application, getEventsManager);
static PHP_METHOD(Phalcon_Application, registerModules);
static PHP_METHOD(Phalcon_Application, getModules);
static PHP_METHOD(Phalcon_Application, getModule);
static PHP_METHOD(Phalcon_Application, setDefaultModule);
static PHP_METHOD(Phalcon_Application, getDefaultModule);
static PHP_METHOD(Phalcon_Application, handle);
zend_object *zephir_init_properties_Phalcon_Application(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_application___construct, 0, 0, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_application_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_application_registermodules, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, modules, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_application_getmodule, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_application_setdefaultmodule, 0, 0, 1)
ZEND_ARG_INFO(0, defaultModule)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_application_method_entry) {
PHP_ME(Phalcon_Application, __construct, arginfo_phalcon_application___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Application, setEventsManager, arginfo_phalcon_application_seteventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Application, getEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Application, registerModules, arginfo_phalcon_application_registermodules, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Application, getModules, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Application, getModule, arginfo_phalcon_application_getmodule, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Application, setDefaultModule, arginfo_phalcon_application_setdefaultmodule, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Application, getDefaultModule, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Application, handle, NULL, ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_application_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Application_Exception);
zend_class_entry *phalcon_assets_inline_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Inline);
static PHP_METHOD(Phalcon_Assets_Inline, getType);
static PHP_METHOD(Phalcon_Assets_Inline, getContent);
static PHP_METHOD(Phalcon_Assets_Inline, getFilter);
static PHP_METHOD(Phalcon_Assets_Inline, getAttributes);
static PHP_METHOD(Phalcon_Assets_Inline, __construct);
static PHP_METHOD(Phalcon_Assets_Inline, setType);
static PHP_METHOD(Phalcon_Assets_Inline, setFilter);
static PHP_METHOD(Phalcon_Assets_Inline, setAttributes);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_inline___construct, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_inline_settype, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_inline_setfilter, 0, 0, 1)
ZEND_ARG_INFO(0, filter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_inline_setattributes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_inline_method_entry) {
PHP_ME(Phalcon_Assets_Inline, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Inline, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Inline, getFilter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Inline, getAttributes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Inline, __construct, arginfo_phalcon_assets_inline___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Assets_Inline, setType, arginfo_phalcon_assets_inline_settype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Inline, setFilter, arginfo_phalcon_assets_inline_setfilter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Inline, setAttributes, arginfo_phalcon_assets_inline_setattributes, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_assets_resource_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Resource);
static PHP_METHOD(Phalcon_Assets_Resource, getType);
static PHP_METHOD(Phalcon_Assets_Resource, getPath);
static PHP_METHOD(Phalcon_Assets_Resource, getLocal);
static PHP_METHOD(Phalcon_Assets_Resource, getFilter);
static PHP_METHOD(Phalcon_Assets_Resource, getAttributes);
static PHP_METHOD(Phalcon_Assets_Resource, getSourcePath);
static PHP_METHOD(Phalcon_Assets_Resource, getTargetPath);
static PHP_METHOD(Phalcon_Assets_Resource, getTargetUri);
static PHP_METHOD(Phalcon_Assets_Resource, __construct);
static PHP_METHOD(Phalcon_Assets_Resource, setType);
static PHP_METHOD(Phalcon_Assets_Resource, setPath);
static PHP_METHOD(Phalcon_Assets_Resource, setLocal);
static PHP_METHOD(Phalcon_Assets_Resource, setFilter);
static PHP_METHOD(Phalcon_Assets_Resource, setAttributes);
static PHP_METHOD(Phalcon_Assets_Resource, setTargetUri);
static PHP_METHOD(Phalcon_Assets_Resource, setSourcePath);
static PHP_METHOD(Phalcon_Assets_Resource, setTargetPath);
static PHP_METHOD(Phalcon_Assets_Resource, getContent);
static PHP_METHOD(Phalcon_Assets_Resource, getRealTargetUri);
static PHP_METHOD(Phalcon_Assets_Resource, getRealSourcePath);
static PHP_METHOD(Phalcon_Assets_Resource, getRealTargetPath);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource___construct, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, local)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_settype, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_setpath, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_setlocal, 0, 0, 1)
ZEND_ARG_INFO(0, local)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_setfilter, 0, 0, 1)
ZEND_ARG_INFO(0, filter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_setattributes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_settargeturi, 0, 0, 1)
ZEND_ARG_INFO(0, targetUri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_setsourcepath, 0, 0, 1)
ZEND_ARG_INFO(0, sourcePath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_settargetpath, 0, 0, 1)
ZEND_ARG_INFO(0, targetPath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_getcontent, 0, 0, 0)
ZEND_ARG_INFO(0, basePath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_getrealsourcepath, 0, 0, 0)
ZEND_ARG_INFO(0, basePath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_getrealtargetpath, 0, 0, 0)
ZEND_ARG_INFO(0, basePath)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_resource_method_entry) {
PHP_ME(Phalcon_Assets_Resource, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getLocal, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getFilter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getAttributes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getSourcePath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getTargetPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getTargetUri, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, __construct, arginfo_phalcon_assets_resource___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Assets_Resource, setType, arginfo_phalcon_assets_resource_settype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, setPath, arginfo_phalcon_assets_resource_setpath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, setLocal, arginfo_phalcon_assets_resource_setlocal, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, setFilter, arginfo_phalcon_assets_resource_setfilter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, setAttributes, arginfo_phalcon_assets_resource_setattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, setTargetUri, arginfo_phalcon_assets_resource_settargeturi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, setSourcePath, arginfo_phalcon_assets_resource_setsourcepath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, setTargetPath, arginfo_phalcon_assets_resource_settargetpath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getContent, arginfo_phalcon_assets_resource_getcontent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getRealTargetUri, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getRealSourcePath, arginfo_phalcon_assets_resource_getrealsourcepath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Resource, getRealTargetPath, arginfo_phalcon_assets_resource_getrealtargetpath, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_frontend_data_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Frontend_Data);
static PHP_METHOD(Phalcon_Cache_Frontend_Data, __construct);
static PHP_METHOD(Phalcon_Cache_Frontend_Data, getLifetime);
static PHP_METHOD(Phalcon_Cache_Frontend_Data, isBuffering);
static PHP_METHOD(Phalcon_Cache_Frontend_Data, start);
static PHP_METHOD(Phalcon_Cache_Frontend_Data, getContent);
static PHP_METHOD(Phalcon_Cache_Frontend_Data, stop);
static PHP_METHOD(Phalcon_Cache_Frontend_Data, beforeStore);
static PHP_METHOD(Phalcon_Cache_Frontend_Data, afterRetrieve);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_data___construct, 0, 0, 0)
ZEND_ARG_INFO(0, frontendOptions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_data_beforestore, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_data_afterretrieve, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_frontend_data_method_entry) {
PHP_ME(Phalcon_Cache_Frontend_Data, __construct, arginfo_phalcon_cache_frontend_data___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Frontend_Data, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Data, isBuffering, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Data, start, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Data, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Data, stop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Data, beforeStore, arginfo_phalcon_cache_frontend_data_beforestore, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Data, afterRetrieve, arginfo_phalcon_cache_frontend_data_afterretrieve, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_di_ce;
ZEPHIR_INIT_CLASS(Phalcon_Di);
static PHP_METHOD(Phalcon_Di, __construct);
static PHP_METHOD(Phalcon_Di, setInternalEventsManager);
static PHP_METHOD(Phalcon_Di, getInternalEventsManager);
static PHP_METHOD(Phalcon_Di, set);
static PHP_METHOD(Phalcon_Di, setShared);
static PHP_METHOD(Phalcon_Di, remove);
static PHP_METHOD(Phalcon_Di, attempt);
static PHP_METHOD(Phalcon_Di, setRaw);
static PHP_METHOD(Phalcon_Di, getRaw);
static PHP_METHOD(Phalcon_Di, getService);
static PHP_METHOD(Phalcon_Di, get);
static PHP_METHOD(Phalcon_Di, getShared);
static PHP_METHOD(Phalcon_Di, has);
static PHP_METHOD(Phalcon_Di, wasFreshInstance);
static PHP_METHOD(Phalcon_Di, getServices);
static PHP_METHOD(Phalcon_Di, offsetExists);
static PHP_METHOD(Phalcon_Di, offsetSet);
static PHP_METHOD(Phalcon_Di, offsetGet);
static PHP_METHOD(Phalcon_Di, offsetUnset);
static PHP_METHOD(Phalcon_Di, __call);
static PHP_METHOD(Phalcon_Di, setDefault);
static PHP_METHOD(Phalcon_Di, getDefault);
static PHP_METHOD(Phalcon_Di, reset);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_setinternaleventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_set, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_ARG_INFO(0, shared)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_setshared, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_remove, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_attempt, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_ARG_INFO(0, shared)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_setraw, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_OBJ_INFO(0, rawDefinition, Phalcon\\Di\\ServiceInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_getraw, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_getservice, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_get, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_getshared, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_has, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di___call, 0, 0, 1)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_setdefault, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_di_method_entry) {
PHP_ME(Phalcon_Di, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Di, setInternalEventsManager, arginfo_phalcon_di_setinternaleventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, getInternalEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, set, arginfo_phalcon_di_set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, setShared, arginfo_phalcon_di_setshared, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, remove, arginfo_phalcon_di_remove, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, attempt, arginfo_phalcon_di_attempt, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, setRaw, arginfo_phalcon_di_setraw, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, getRaw, arginfo_phalcon_di_getraw, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, getService, arginfo_phalcon_di_getservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, get, arginfo_phalcon_di_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, getShared, arginfo_phalcon_di_getshared, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, has, arginfo_phalcon_di_has, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, wasFreshInstance, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, getServices, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, offsetExists, arginfo_phalcon_di_offsetexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, offsetSet, arginfo_phalcon_di_offsetset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, offsetGet, arginfo_phalcon_di_offsetget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, offsetUnset, arginfo_phalcon_di_offsetunset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, __call, arginfo_phalcon_di___call, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di, setDefault, arginfo_phalcon_di_setdefault, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Di, getDefault, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Di, reset, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_dispatcher_ce;
ZEPHIR_INIT_CLASS(Phalcon_Dispatcher);
static PHP_METHOD(Phalcon_Dispatcher, setDI);
static PHP_METHOD(Phalcon_Dispatcher, getDI);
static PHP_METHOD(Phalcon_Dispatcher, setEventsManager);
static PHP_METHOD(Phalcon_Dispatcher, getEventsManager);
static PHP_METHOD(Phalcon_Dispatcher, setActionSuffix);
static PHP_METHOD(Phalcon_Dispatcher, getActionSuffix);
static PHP_METHOD(Phalcon_Dispatcher, setModuleName);
static PHP_METHOD(Phalcon_Dispatcher, getModuleName);
static PHP_METHOD(Phalcon_Dispatcher, setNamespaceName);
static PHP_METHOD(Phalcon_Dispatcher, getNamespaceName);
static PHP_METHOD(Phalcon_Dispatcher, setDefaultNamespace);
static PHP_METHOD(Phalcon_Dispatcher, getDefaultNamespace);
static PHP_METHOD(Phalcon_Dispatcher, setDefaultAction);
static PHP_METHOD(Phalcon_Dispatcher, setActionName);
static PHP_METHOD(Phalcon_Dispatcher, getActionName);
static PHP_METHOD(Phalcon_Dispatcher, setParams);
static PHP_METHOD(Phalcon_Dispatcher, getParams);
static PHP_METHOD(Phalcon_Dispatcher, setParam);
static PHP_METHOD(Phalcon_Dispatcher, getParam);
static PHP_METHOD(Phalcon_Dispatcher, hasParam);
static PHP_METHOD(Phalcon_Dispatcher, getActiveMethod);
static PHP_METHOD(Phalcon_Dispatcher, isFinished);
static PHP_METHOD(Phalcon_Dispatcher, setReturnedValue);
static PHP_METHOD(Phalcon_Dispatcher, getReturnedValue);
static PHP_METHOD(Phalcon_Dispatcher, setModelBinding);
static PHP_METHOD(Phalcon_Dispatcher, dispatch);
static PHP_METHOD(Phalcon_Dispatcher, _dispatch);
static PHP_METHOD(Phalcon_Dispatcher, forward);
static PHP_METHOD(Phalcon_Dispatcher, wasForwarded);
static PHP_METHOD(Phalcon_Dispatcher, getHandlerClass);
static PHP_METHOD(Phalcon_Dispatcher, callActionMethod);
static PHP_METHOD(Phalcon_Dispatcher, _resolveEmptyProperties);
zend_object *zephir_init_properties_Phalcon_Dispatcher(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setactionsuffix, 0, 0, 1)
ZEND_ARG_INFO(0, actionSuffix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setmodulename, 0, 0, 1)
ZEND_ARG_INFO(0, moduleName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setnamespacename, 0, 0, 1)
ZEND_ARG_INFO(0, namespaceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setdefaultnamespace, 0, 0, 1)
ZEND_ARG_INFO(0, namespaceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, actionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setactionname, 0, 0, 1)
ZEND_ARG_INFO(0, actionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setparams, 0, 0, 1)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setparam, 0, 0, 2)
ZEND_ARG_INFO(0, param)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_getparam, 0, 0, 1)
ZEND_ARG_INFO(0, param)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_hasparam, 0, 0, 1)
ZEND_ARG_INFO(0, param)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setreturnedvalue, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_setmodelbinding, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_forward, 0, 0, 1)
ZEND_ARG_INFO(0, forward)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_dispatcher_callactionmethod, 0, 0, 2)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, actionMethod)
ZEND_ARG_ARRAY_INFO(0, params, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_dispatcher_method_entry) {
PHP_ME(Phalcon_Dispatcher, setDI, arginfo_phalcon_dispatcher_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setEventsManager, arginfo_phalcon_dispatcher_seteventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setActionSuffix, arginfo_phalcon_dispatcher_setactionsuffix, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getActionSuffix, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setModuleName, arginfo_phalcon_dispatcher_setmodulename, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getModuleName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setNamespaceName, arginfo_phalcon_dispatcher_setnamespacename, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getNamespaceName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setDefaultNamespace, arginfo_phalcon_dispatcher_setdefaultnamespace, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getDefaultNamespace, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setDefaultAction, arginfo_phalcon_dispatcher_setdefaultaction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setActionName, arginfo_phalcon_dispatcher_setactionname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getActionName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setParams, arginfo_phalcon_dispatcher_setparams, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getParams, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setParam, arginfo_phalcon_dispatcher_setparam, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getParam, arginfo_phalcon_dispatcher_getparam, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, hasParam, arginfo_phalcon_dispatcher_hasparam, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getActiveMethod, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, isFinished, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setReturnedValue, arginfo_phalcon_dispatcher_setreturnedvalue, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getReturnedValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, setModelBinding, arginfo_phalcon_dispatcher_setmodelbinding, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, dispatch, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, _dispatch, NULL, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Dispatcher, forward, arginfo_phalcon_dispatcher_forward, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, wasForwarded, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, getHandlerClass, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, callActionMethod, arginfo_phalcon_dispatcher_callactionmethod, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Dispatcher, _resolveEmptyProperties, NULL, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_flash_ce;
ZEPHIR_INIT_CLASS(Phalcon_Flash);
static PHP_METHOD(Phalcon_Flash, __construct);
static PHP_METHOD(Phalcon_Flash, getAutoescape);
static PHP_METHOD(Phalcon_Flash, setAutoescape);
static PHP_METHOD(Phalcon_Flash, getEscaperService);
static PHP_METHOD(Phalcon_Flash, setEscaperService);
static PHP_METHOD(Phalcon_Flash, setDI);
static PHP_METHOD(Phalcon_Flash, getDI);
static PHP_METHOD(Phalcon_Flash, setImplicitFlush);
static PHP_METHOD(Phalcon_Flash, setAutomaticHtml);
static PHP_METHOD(Phalcon_Flash, setCssClasses);
static PHP_METHOD(Phalcon_Flash, error);
static PHP_METHOD(Phalcon_Flash, notice);
static PHP_METHOD(Phalcon_Flash, success);
static PHP_METHOD(Phalcon_Flash, warning);
static PHP_METHOD(Phalcon_Flash, outputMessage);
static PHP_METHOD(Phalcon_Flash, clear);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash___construct, 0, 0, 0)
ZEND_ARG_INFO(0, cssClasses)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_setautoescape, 0, 0, 1)
ZEND_ARG_INFO(0, autoescape)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_setescaperservice, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, escaperService, Phalcon\\EscaperInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_setimplicitflush, 0, 0, 1)
ZEND_ARG_INFO(0, implicitFlush)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_setautomatichtml, 0, 0, 1)
ZEND_ARG_INFO(0, automaticHtml)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_setcssclasses, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, cssClasses, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_error, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_notice, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_success, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_warning, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_outputmessage, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_flash_method_entry) {
PHP_ME(Phalcon_Flash, __construct, arginfo_phalcon_flash___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Flash, getAutoescape, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, setAutoescape, arginfo_phalcon_flash_setautoescape, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, getEscaperService, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, setEscaperService, arginfo_phalcon_flash_setescaperservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, setDI, arginfo_phalcon_flash_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, setImplicitFlush, arginfo_phalcon_flash_setimplicitflush, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, setAutomaticHtml, arginfo_phalcon_flash_setautomatichtml, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, setCssClasses, arginfo_phalcon_flash_setcssclasses, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, error, arginfo_phalcon_flash_error, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, notice, arginfo_phalcon_flash_notice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, success, arginfo_phalcon_flash_success, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, warning, arginfo_phalcon_flash_warning, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, outputMessage, arginfo_phalcon_flash_outputmessage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash, clear, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_image_adapter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Image_Adapter);
static PHP_METHOD(Phalcon_Image_Adapter, getImage);
static PHP_METHOD(Phalcon_Image_Adapter, getRealpath);
static PHP_METHOD(Phalcon_Image_Adapter, getWidth);
static PHP_METHOD(Phalcon_Image_Adapter, getHeight);
static PHP_METHOD(Phalcon_Image_Adapter, getType);
static PHP_METHOD(Phalcon_Image_Adapter, getMime);
static PHP_METHOD(Phalcon_Image_Adapter, resize);
static PHP_METHOD(Phalcon_Image_Adapter, liquidRescale);
static PHP_METHOD(Phalcon_Image_Adapter, crop);
static PHP_METHOD(Phalcon_Image_Adapter, rotate);
static PHP_METHOD(Phalcon_Image_Adapter, flip);
static PHP_METHOD(Phalcon_Image_Adapter, sharpen);
static PHP_METHOD(Phalcon_Image_Adapter, reflection);
static PHP_METHOD(Phalcon_Image_Adapter, watermark);
static PHP_METHOD(Phalcon_Image_Adapter, text);
static PHP_METHOD(Phalcon_Image_Adapter, mask);
static PHP_METHOD(Phalcon_Image_Adapter, background);
static PHP_METHOD(Phalcon_Image_Adapter, blur);
static PHP_METHOD(Phalcon_Image_Adapter, pixelate);
static PHP_METHOD(Phalcon_Image_Adapter, save);
static PHP_METHOD(Phalcon_Image_Adapter, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_resize, 0, 0, 0)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, master)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_liquidrescale, 0, 0, 2)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, deltaX)
ZEND_ARG_INFO(0, rigidity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_crop, 0, 0, 2)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_rotate, 0, 0, 1)
ZEND_ARG_INFO(0, degrees)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_flip, 0, 0, 1)
ZEND_ARG_INFO(0, direction)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_sharpen, 0, 0, 1)
ZEND_ARG_INFO(0, amount)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_reflection, 0, 0, 1)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, opacity)
ZEND_ARG_INFO(0, fadeIn)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_watermark, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, watermark, Phalcon\\Image\\Adapter, 0)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_ARG_INFO(0, opacity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_text, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_ARG_INFO(0, opacity)
ZEND_ARG_INFO(0, color)
ZEND_ARG_INFO(0, size)
ZEND_ARG_INFO(0, fontfile)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_mask, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, watermark, Phalcon\\Image\\Adapter, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_background, 0, 0, 1)
ZEND_ARG_INFO(0, color)
ZEND_ARG_INFO(0, opacity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_blur, 0, 0, 1)
ZEND_ARG_INFO(0, radius)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_pixelate, 0, 0, 1)
ZEND_ARG_INFO(0, amount)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_save, 0, 0, 0)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, quality)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_render, 0, 0, 0)
ZEND_ARG_INFO(0, ext)
ZEND_ARG_INFO(0, quality)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_image_adapter_method_entry) {
PHP_ME(Phalcon_Image_Adapter, getImage, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, getRealpath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, getWidth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, getHeight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, getMime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, resize, arginfo_phalcon_image_adapter_resize, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, liquidRescale, arginfo_phalcon_image_adapter_liquidrescale, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, crop, arginfo_phalcon_image_adapter_crop, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, rotate, arginfo_phalcon_image_adapter_rotate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, flip, arginfo_phalcon_image_adapter_flip, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, sharpen, arginfo_phalcon_image_adapter_sharpen, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, reflection, arginfo_phalcon_image_adapter_reflection, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, watermark, arginfo_phalcon_image_adapter_watermark, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, text, arginfo_phalcon_image_adapter_text, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, mask, arginfo_phalcon_image_adapter_mask, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, background, arginfo_phalcon_image_adapter_background, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, blur, arginfo_phalcon_image_adapter_blur, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, pixelate, arginfo_phalcon_image_adapter_pixelate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, save, arginfo_phalcon_image_adapter_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter, render, arginfo_phalcon_image_adapter_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_collection_behavior_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Collection_Behavior);
static PHP_METHOD(Phalcon_Mvc_Collection_Behavior, __construct);
static PHP_METHOD(Phalcon_Mvc_Collection_Behavior, mustTakeAction);
static PHP_METHOD(Phalcon_Mvc_Collection_Behavior, getOptions);
static PHP_METHOD(Phalcon_Mvc_Collection_Behavior, notify);
static PHP_METHOD(Phalcon_Mvc_Collection_Behavior, missingMethod);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_behavior___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_behavior_musttakeaction, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_behavior_getoptions, 0, 0, 0)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_behavior_notify, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_behavior_missingmethod, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_collection_behavior_method_entry) {
PHP_ME(Phalcon_Mvc_Collection_Behavior, __construct, arginfo_phalcon_mvc_collection_behavior___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Collection_Behavior, mustTakeAction, arginfo_phalcon_mvc_collection_behavior_musttakeaction, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection_Behavior, getOptions, arginfo_phalcon_mvc_collection_behavior_getoptions, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection_Behavior, notify, arginfo_phalcon_mvc_collection_behavior_notify, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Behavior, missingMethod, arginfo_phalcon_mvc_collection_behavior_missingmethod, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_behavior_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Behavior);
static PHP_METHOD(Phalcon_Mvc_Model_Behavior, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Behavior, mustTakeAction);
static PHP_METHOD(Phalcon_Mvc_Model_Behavior, getOptions);
static PHP_METHOD(Phalcon_Mvc_Model_Behavior, notify);
static PHP_METHOD(Phalcon_Mvc_Model_Behavior, missingMethod);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_behavior___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_behavior_musttakeaction, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_behavior_getoptions, 0, 0, 0)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_behavior_notify, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_behavior_missingmethod, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_behavior_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Behavior, __construct, arginfo_phalcon_mvc_model_behavior___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Behavior, mustTakeAction, arginfo_phalcon_mvc_model_behavior_musttakeaction, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model_Behavior, getOptions, arginfo_phalcon_mvc_model_behavior_getoptions, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model_Behavior, notify, arginfo_phalcon_mvc_model_behavior_notify, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Behavior, missingMethod, arginfo_phalcon_mvc_model_behavior_missingmethod, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_strategyinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_StrategyInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_strategyinterface_getmetadata, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_strategyinterface_getcolumnmaps, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_strategyinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaData_StrategyInterface, getMetaData, arginfo_phalcon_mvc_model_metadata_strategyinterface_getmetadata)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MetaData_StrategyInterface, getColumnMaps, arginfo_phalcon_mvc_model_metadata_strategyinterface_getcolumnmaps)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_resultinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_ResultInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultinterface_setdirtystate, 0, 0, 1)
ZEND_ARG_INFO(0, dirtyState)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_resultinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ResultInterface, setDirtyState, arginfo_phalcon_mvc_model_resultinterface_setdirtystate)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_resultset_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Resultset);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, next);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, valid);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, key);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, rewind);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, seek);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, count);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, offsetExists);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, offsetGet);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, offsetSet);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, offsetUnset);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, getType);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, getFirst);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, getLast);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, setIsFresh);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, isFresh);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, setHydrateMode);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, getHydrateMode);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, getCache);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, getMessages);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, update);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, delete);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, filter);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset, jsonSerialize);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset___construct, 0, 0, 1)
ZEND_ARG_INFO(0, result)
ZEND_ARG_OBJ_INFO(0, cache, Phalcon\\Cache\\BackendInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_seek, 0, 0, 1)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_setisfresh, 0, 0, 1)
ZEND_ARG_INFO(0, isFresh)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_sethydratemode, 0, 0, 1)
ZEND_ARG_INFO(0, hydrateMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_update, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_ARG_OBJ_INFO(0, conditionCallback, Closure, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_delete, 0, 0, 0)
ZEND_ARG_OBJ_INFO(0, conditionCallback, Closure, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_filter, 0, 0, 1)
ZEND_ARG_INFO(0, filter)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_resultset_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Resultset, __construct, arginfo_phalcon_mvc_model_resultset___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Resultset, next, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, valid, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, key, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, rewind, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Resultset, seek, arginfo_phalcon_mvc_model_resultset_seek, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Resultset, count, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Resultset, offsetExists, arginfo_phalcon_mvc_model_resultset_offsetexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, offsetGet, arginfo_phalcon_mvc_model_resultset_offsetget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, offsetSet, arginfo_phalcon_mvc_model_resultset_offsetset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, offsetUnset, arginfo_phalcon_mvc_model_resultset_offsetunset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, getFirst, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, getLast, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, setIsFresh, arginfo_phalcon_mvc_model_resultset_setisfresh, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, isFresh, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, setHydrateMode, arginfo_phalcon_mvc_model_resultset_sethydratemode, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, getHydrateMode, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, getCache, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, getMessages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, update, arginfo_phalcon_mvc_model_resultset_update, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, delete, arginfo_phalcon_mvc_model_resultset_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, filter, arginfo_phalcon_mvc_model_resultset_filter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset, jsonSerialize, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_routerinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_RouterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_setdefaultmodule, 0, 0, 1)
ZEND_ARG_INFO(0, moduleName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_setdefaultcontroller, 0, 0, 1)
ZEND_ARG_INFO(0, controllerName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_setdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, actionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_setdefaults, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, defaults, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_handle, 0, 0, 0)
ZEND_ARG_INFO(0, uri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_add, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, httpMethods)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_addget, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_addpost, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_addput, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_addpatch, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_adddelete, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_addoptions, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_addhead, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_addpurge, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_addtrace, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_addconnect, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_mount, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, group, Phalcon\\Mvc\\Router\\GroupInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_getroutebyid, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_routerinterface_getroutebyname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_routerinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, setDefaultModule, arginfo_phalcon_mvc_routerinterface_setdefaultmodule)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, setDefaultController, arginfo_phalcon_mvc_routerinterface_setdefaultcontroller)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, setDefaultAction, arginfo_phalcon_mvc_routerinterface_setdefaultaction)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, setDefaults, arginfo_phalcon_mvc_routerinterface_setdefaults)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, handle, arginfo_phalcon_mvc_routerinterface_handle)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, add, arginfo_phalcon_mvc_routerinterface_add)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addGet, arginfo_phalcon_mvc_routerinterface_addget)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addPost, arginfo_phalcon_mvc_routerinterface_addpost)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addPut, arginfo_phalcon_mvc_routerinterface_addput)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addPatch, arginfo_phalcon_mvc_routerinterface_addpatch)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addDelete, arginfo_phalcon_mvc_routerinterface_adddelete)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addOptions, arginfo_phalcon_mvc_routerinterface_addoptions)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addHead, arginfo_phalcon_mvc_routerinterface_addhead)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addPurge, arginfo_phalcon_mvc_routerinterface_addpurge)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addTrace, arginfo_phalcon_mvc_routerinterface_addtrace)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, addConnect, arginfo_phalcon_mvc_routerinterface_addconnect)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, mount, arginfo_phalcon_mvc_routerinterface_mount)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, clear, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getModuleName, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getNamespaceName, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getControllerName, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getActionName, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getParams, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getMatchedRoute, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getMatches, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, wasMatched, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getRoutes, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getRouteById, arginfo_phalcon_mvc_routerinterface_getroutebyid)
PHP_ABSTRACT_ME(Phalcon_Mvc_RouterInterface, getRouteByName, arginfo_phalcon_mvc_routerinterface_getroutebyname)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_view_engine_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_View_Engine);
static PHP_METHOD(Phalcon_Mvc_View_Engine, __construct);
static PHP_METHOD(Phalcon_Mvc_View_Engine, getContent);
static PHP_METHOD(Phalcon_Mvc_View_Engine, partial);
static PHP_METHOD(Phalcon_Mvc_View_Engine, getView);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine___construct, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, view, Phalcon\\Mvc\\ViewBaseInterface, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_partial, 0, 0, 1)
ZEND_ARG_INFO(0, partialPath)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_view_engine_method_entry) {
PHP_ME(Phalcon_Mvc_View_Engine, __construct, arginfo_phalcon_mvc_view_engine___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_View_Engine, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine, partial, arginfo_phalcon_mvc_view_engine_partial, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine, getView, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_translate_interpolatorinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate_InterpolatorInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_interpolatorinterface_replaceplaceholders, 0, 0, 1)
ZEND_ARG_INFO(0, translation)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_translate_interpolatorinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Translate_InterpolatorInterface, replacePlaceholders, arginfo_phalcon_translate_interpolatorinterface_replaceplaceholders)
PHP_FE_END
};
zend_class_entry *phalcon_acl_adapter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_Adapter);
static PHP_METHOD(Phalcon_Acl_Adapter, getActiveRole);
static PHP_METHOD(Phalcon_Acl_Adapter, getActiveResource);
static PHP_METHOD(Phalcon_Acl_Adapter, getActiveAccess);
static PHP_METHOD(Phalcon_Acl_Adapter, setEventsManager);
static PHP_METHOD(Phalcon_Acl_Adapter, getEventsManager);
static PHP_METHOD(Phalcon_Acl_Adapter, setDefaultAction);
static PHP_METHOD(Phalcon_Acl_Adapter, getDefaultAction);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_setdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, defaultAccess)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_acl_adapter_method_entry) {
PHP_ME(Phalcon_Acl_Adapter, getActiveRole, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter, getActiveResource, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter, getActiveAccess, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter, setEventsManager, arginfo_phalcon_acl_adapter_seteventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter, getEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter, setDefaultAction, arginfo_phalcon_acl_adapter_setdefaultaction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter, getDefaultAction, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_acl_resourceinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_ResourceInterface);
ZEPHIR_INIT_FUNCS(phalcon_acl_resourceinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Acl_ResourceInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_ResourceInterface, getDescription, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_ResourceInterface, __toString, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_acl_roleinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_RoleInterface);
ZEPHIR_INIT_FUNCS(phalcon_acl_roleinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Acl_RoleInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_RoleInterface, getDescription, NULL)
PHP_ABSTRACT_ME(Phalcon_Acl_RoleInterface, __toString, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_readerinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_ReaderInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_readerinterface_parse, 0, 0, 1)
ZEND_ARG_INFO(0, className)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_readerinterface_parsedocblock, 0, 0, 1)
ZEND_ARG_INFO(0, docBlock)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, line)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_readerinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Annotations_ReaderInterface, parse, arginfo_phalcon_annotations_readerinterface_parse)
ZEND_FENTRY(parseDocBlock, NULL, arginfo_phalcon_annotations_readerinterface_parsedocblock, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cli_dispatcherinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_DispatcherInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcherinterface_settasksuffix, 0, 0, 1)
ZEND_ARG_INFO(0, taskSuffix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcherinterface_setdefaulttask, 0, 0, 1)
ZEND_ARG_INFO(0, taskName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcherinterface_settaskname, 0, 0, 1)
ZEND_ARG_INFO(0, taskName)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cli_dispatcherinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Cli_DispatcherInterface, setTaskSuffix, arginfo_phalcon_cli_dispatcherinterface_settasksuffix)
PHP_ABSTRACT_ME(Phalcon_Cli_DispatcherInterface, setDefaultTask, arginfo_phalcon_cli_dispatcherinterface_setdefaulttask)
PHP_ABSTRACT_ME(Phalcon_Cli_DispatcherInterface, setTaskName, arginfo_phalcon_cli_dispatcherinterface_settaskname)
PHP_ABSTRACT_ME(Phalcon_Cli_DispatcherInterface, getTaskName, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_DispatcherInterface, getLastTask, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_DispatcherInterface, getActiveTask, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_cli_taskinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_TaskInterface);
zend_class_entry *phalcon_cryptinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_CryptInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cryptinterface_setcipher, 0, 0, 1)
ZEND_ARG_INFO(0, cipher)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cryptinterface_setkey, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cryptinterface_encrypt, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cryptinterface_decrypt, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cryptinterface_encryptbase64, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cryptinterface_decryptbase64, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cryptinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_CryptInterface, setCipher, arginfo_phalcon_cryptinterface_setcipher)
PHP_ABSTRACT_ME(Phalcon_CryptInterface, getCipher, NULL)
PHP_ABSTRACT_ME(Phalcon_CryptInterface, setKey, arginfo_phalcon_cryptinterface_setkey)
PHP_ABSTRACT_ME(Phalcon_CryptInterface, getKey, NULL)
PHP_ABSTRACT_ME(Phalcon_CryptInterface, encrypt, arginfo_phalcon_cryptinterface_encrypt)
PHP_ABSTRACT_ME(Phalcon_CryptInterface, decrypt, arginfo_phalcon_cryptinterface_decrypt)
PHP_ABSTRACT_ME(Phalcon_CryptInterface, encryptBase64, arginfo_phalcon_cryptinterface_encryptbase64)
PHP_ABSTRACT_ME(Phalcon_CryptInterface, decryptBase64, arginfo_phalcon_cryptinterface_decryptbase64)
PHP_ABSTRACT_ME(Phalcon_CryptInterface, getAvailableCiphers, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_db_columninterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_ColumnInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_columninterface___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_columninterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getSchemaName, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getType, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getTypeReference, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getTypeValues, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getSize, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getScale, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, isUnsigned, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, isNotNull, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, isPrimary, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, isAutoIncrement, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, isNumeric, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, isFirst, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getAfterPosition, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getBindType, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, getDefault, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ColumnInterface, hasDefault, NULL)
ZEND_FENTRY(__set_state, NULL, arginfo_phalcon_db_columninterface___set_state, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_indexinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_IndexInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_indexinterface___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_indexinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Db_IndexInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_IndexInterface, getColumns, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_IndexInterface, getType, NULL)
ZEND_FENTRY(__set_state, NULL, arginfo_phalcon_db_indexinterface___set_state, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_referenceinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_ReferenceInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_referenceinterface___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_referenceinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Db_ReferenceInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ReferenceInterface, getSchemaName, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ReferenceInterface, getReferencedSchema, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ReferenceInterface, getColumns, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ReferenceInterface, getReferencedTable, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ReferenceInterface, getReferencedColumns, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ReferenceInterface, getOnDelete, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ReferenceInterface, getOnUpdate, NULL)
ZEND_FENTRY(__set_state, NULL, arginfo_phalcon_db_referenceinterface___set_state, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_resultinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_ResultInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_resultinterface_dataseek, 0, 0, 1)
ZEND_ARG_INFO(0, number)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_resultinterface_setfetchmode, 0, 0, 1)
ZEND_ARG_INFO(0, fetchMode)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_resultinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Db_ResultInterface, execute, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ResultInterface, fetch, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ResultInterface, fetchArray, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ResultInterface, fetchAll, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ResultInterface, numRows, NULL)
PHP_ABSTRACT_ME(Phalcon_Db_ResultInterface, dataSeek, arginfo_phalcon_db_resultinterface_dataseek)
PHP_ABSTRACT_ME(Phalcon_Db_ResultInterface, setFetchMode, arginfo_phalcon_db_resultinterface_setfetchmode)
PHP_ABSTRACT_ME(Phalcon_Db_ResultInterface, getInternalResult, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_di_factorydefault_ce;
ZEPHIR_INIT_CLASS(Phalcon_Di_FactoryDefault);
static PHP_METHOD(Phalcon_Di_FactoryDefault, __construct);
ZEPHIR_INIT_FUNCS(phalcon_di_factorydefault_method_entry) {
PHP_ME(Phalcon_Di_FactoryDefault, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_di_serviceinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Di_ServiceInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_serviceinterface_setshared, 0, 0, 1)
ZEND_ARG_INFO(0, shared)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_serviceinterface_setdefinition, 0, 0, 1)
ZEND_ARG_INFO(0, definition)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_serviceinterface_resolve, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_serviceinterface_setparameter, 0, 0, 2)
ZEND_ARG_INFO(0, position)
ZEND_ARG_ARRAY_INFO(0, parameter, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_serviceinterface___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_di_serviceinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Di_ServiceInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Di_ServiceInterface, setShared, arginfo_phalcon_di_serviceinterface_setshared)
PHP_ABSTRACT_ME(Phalcon_Di_ServiceInterface, isShared, NULL)
PHP_ABSTRACT_ME(Phalcon_Di_ServiceInterface, setDefinition, arginfo_phalcon_di_serviceinterface_setdefinition)
PHP_ABSTRACT_ME(Phalcon_Di_ServiceInterface, getDefinition, NULL)
PHP_ABSTRACT_ME(Phalcon_Di_ServiceInterface, resolve, arginfo_phalcon_di_serviceinterface_resolve)
PHP_ABSTRACT_ME(Phalcon_Di_ServiceInterface, setParameter, arginfo_phalcon_di_serviceinterface_setparameter)
ZEND_FENTRY(__set_state, NULL, arginfo_phalcon_di_serviceinterface___set_state, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_escaperinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_EscaperInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaperinterface_setencoding, 0, 0, 1)
ZEND_ARG_INFO(0, encoding)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaperinterface_sethtmlquotetype, 0, 0, 1)
ZEND_ARG_INFO(0, quoteType)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaperinterface_escapehtml, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaperinterface_escapehtmlattr, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaperinterface_escapecss, 0, 0, 1)
ZEND_ARG_INFO(0, css)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaperinterface_escapejs, 0, 0, 1)
ZEND_ARG_INFO(0, js)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaperinterface_escapeurl, 0, 0, 1)
ZEND_ARG_INFO(0, url)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_escaperinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_EscaperInterface, setEncoding, arginfo_phalcon_escaperinterface_setencoding)
PHP_ABSTRACT_ME(Phalcon_EscaperInterface, getEncoding, NULL)
PHP_ABSTRACT_ME(Phalcon_EscaperInterface, setHtmlQuoteType, arginfo_phalcon_escaperinterface_sethtmlquotetype)
PHP_ABSTRACT_ME(Phalcon_EscaperInterface, escapeHtml, arginfo_phalcon_escaperinterface_escapehtml)
PHP_ABSTRACT_ME(Phalcon_EscaperInterface, escapeHtmlAttr, arginfo_phalcon_escaperinterface_escapehtmlattr)
PHP_ABSTRACT_ME(Phalcon_EscaperInterface, escapeCss, arginfo_phalcon_escaperinterface_escapecss)
PHP_ABSTRACT_ME(Phalcon_EscaperInterface, escapeJs, arginfo_phalcon_escaperinterface_escapejs)
PHP_ABSTRACT_ME(Phalcon_EscaperInterface, escapeUrl, arginfo_phalcon_escaperinterface_escapeurl)
PHP_FE_END
};
zend_class_entry *phalcon_events_eventinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Events_EventInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_eventinterface_setdata, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_eventinterface_settype, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_events_eventinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Events_EventInterface, getData, NULL)
PHP_ABSTRACT_ME(Phalcon_Events_EventInterface, setData, arginfo_phalcon_events_eventinterface_setdata)
PHP_ABSTRACT_ME(Phalcon_Events_EventInterface, getType, NULL)
PHP_ABSTRACT_ME(Phalcon_Events_EventInterface, setType, arginfo_phalcon_events_eventinterface_settype)
PHP_ABSTRACT_ME(Phalcon_Events_EventInterface, stop, NULL)
PHP_ABSTRACT_ME(Phalcon_Events_EventInterface, isStopped, NULL)
PHP_ABSTRACT_ME(Phalcon_Events_EventInterface, isCancelable, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_events_managerinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Events_ManagerInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_managerinterface_attach, 0, 0, 2)
ZEND_ARG_INFO(0, eventType)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_managerinterface_detach, 0, 0, 2)
ZEND_ARG_INFO(0, eventType)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_managerinterface_detachall, 0, 0, 0)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_managerinterface_fire, 0, 0, 2)
ZEND_ARG_INFO(0, eventType)
ZEND_ARG_INFO(0, source)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_managerinterface_getlisteners, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_events_managerinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Events_ManagerInterface, attach, arginfo_phalcon_events_managerinterface_attach)
PHP_ABSTRACT_ME(Phalcon_Events_ManagerInterface, detach, arginfo_phalcon_events_managerinterface_detach)
PHP_ABSTRACT_ME(Phalcon_Events_ManagerInterface, detachAll, arginfo_phalcon_events_managerinterface_detachall)
PHP_ABSTRACT_ME(Phalcon_Events_ManagerInterface, fire, arginfo_phalcon_events_managerinterface_fire)
PHP_ABSTRACT_ME(Phalcon_Events_ManagerInterface, getListeners, arginfo_phalcon_events_managerinterface_getlisteners)
PHP_FE_END
};
zend_class_entry *phalcon_filterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_FilterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_filterinterface_add, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_filterinterface_sanitize, 0, 0, 2)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, filters)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_filterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_FilterInterface, add, arginfo_phalcon_filterinterface_add)
PHP_ABSTRACT_ME(Phalcon_FilterInterface, sanitize, arginfo_phalcon_filterinterface_sanitize)
PHP_ABSTRACT_ME(Phalcon_FilterInterface, getFilters, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_http_cookieinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_CookieInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookieinterface_setvalue, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookieinterface_getvalue, 0, 0, 0)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookieinterface_useencryption, 0, 0, 1)
ZEND_ARG_INFO(0, useEncryption)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookieinterface_setexpiration, 0, 0, 1)
ZEND_ARG_INFO(0, expire)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookieinterface_setpath, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookieinterface_setdomain, 0, 0, 1)
ZEND_ARG_INFO(0, domain)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookieinterface_setsecure, 0, 0, 1)
ZEND_ARG_INFO(0, secure)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookieinterface_sethttponly, 0, 0, 1)
ZEND_ARG_INFO(0, httpOnly)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_cookieinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, setValue, arginfo_phalcon_http_cookieinterface_setvalue)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, getValue, arginfo_phalcon_http_cookieinterface_getvalue)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, send, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, delete, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, useEncryption, arginfo_phalcon_http_cookieinterface_useencryption)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, isUsingEncryption, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, setExpiration, arginfo_phalcon_http_cookieinterface_setexpiration)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, getExpiration, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, setPath, arginfo_phalcon_http_cookieinterface_setpath)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, getPath, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, setDomain, arginfo_phalcon_http_cookieinterface_setdomain)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, getDomain, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, setSecure, arginfo_phalcon_http_cookieinterface_setsecure)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, getSecure, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, setHttpOnly, arginfo_phalcon_http_cookieinterface_sethttponly)
PHP_ABSTRACT_ME(Phalcon_Http_CookieInterface, getHttpOnly, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_http_request_fileinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Request_FileInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_fileinterface_moveto, 0, 0, 1)
ZEND_ARG_INFO(0, destination)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_request_fileinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Http_Request_FileInterface, getSize, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_Request_FileInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_Request_FileInterface, getTempName, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_Request_FileInterface, getType, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_Request_FileInterface, getRealType, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_Request_FileInterface, moveTo, arginfo_phalcon_http_request_fileinterface_moveto)
PHP_FE_END
};
zend_class_entry *phalcon_http_requestinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_RequestInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_get, 0, 0, 0)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_getpost, 0, 0, 0)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_getquery, 0, 0, 0)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_getserver, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_has, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_haspost, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_hasput, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_hasquery, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_hasserver, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_getheader, 0, 0, 1)
ZEND_ARG_INFO(0, header)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_getclientaddress, 0, 0, 0)
ZEND_ARG_INFO(0, trustForwardedHeader)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_ismethod, 0, 0, 1)
ZEND_ARG_INFO(0, methods)
ZEND_ARG_INFO(0, strict)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_hasfiles, 0, 0, 0)
ZEND_ARG_INFO(0, onlySuccessful)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_requestinterface_getuploadedfiles, 0, 0, 0)
ZEND_ARG_INFO(0, onlySuccessful)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_requestinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, get, arginfo_phalcon_http_requestinterface_get)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getPost, arginfo_phalcon_http_requestinterface_getpost)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getQuery, arginfo_phalcon_http_requestinterface_getquery)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getServer, arginfo_phalcon_http_requestinterface_getserver)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, has, arginfo_phalcon_http_requestinterface_has)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, hasPost, arginfo_phalcon_http_requestinterface_haspost)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, hasPut, arginfo_phalcon_http_requestinterface_hasput)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, hasQuery, arginfo_phalcon_http_requestinterface_hasquery)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, hasServer, arginfo_phalcon_http_requestinterface_hasserver)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getHeader, arginfo_phalcon_http_requestinterface_getheader)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getScheme, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isAjax, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isSoapRequested, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isSecureRequest, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getRawBody, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getServerAddress, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getServerName, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getHttpHost, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getPort, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getClientAddress, arginfo_phalcon_http_requestinterface_getclientaddress)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getMethod, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getUserAgent, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isMethod, arginfo_phalcon_http_requestinterface_ismethod)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isPost, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isGet, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isPut, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isHead, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isDelete, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isOptions, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isPurge, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isTrace, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, isConnect, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, hasFiles, arginfo_phalcon_http_requestinterface_hasfiles)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getUploadedFiles, arginfo_phalcon_http_requestinterface_getuploadedfiles)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getHTTPReferer, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getAcceptableContent, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getBestAccept, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getClientCharsets, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getBestCharset, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getLanguages, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getBestLanguage, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getBasicAuth, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_RequestInterface, getDigestAuth, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_http_response_cookiesinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Response_CookiesInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookiesinterface_useencryption, 0, 0, 1)
ZEND_ARG_INFO(0, useEncryption)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookiesinterface_set, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, expire)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, secure)
ZEND_ARG_INFO(0, domain)
ZEND_ARG_INFO(0, httpOnly)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookiesinterface_get, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookiesinterface_has, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookiesinterface_delete, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_response_cookiesinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Http_Response_CookiesInterface, useEncryption, arginfo_phalcon_http_response_cookiesinterface_useencryption)
PHP_ABSTRACT_ME(Phalcon_Http_Response_CookiesInterface, isUsingEncryption, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_Response_CookiesInterface, set, arginfo_phalcon_http_response_cookiesinterface_set)
PHP_ABSTRACT_ME(Phalcon_Http_Response_CookiesInterface, get, arginfo_phalcon_http_response_cookiesinterface_get)
PHP_ABSTRACT_ME(Phalcon_Http_Response_CookiesInterface, has, arginfo_phalcon_http_response_cookiesinterface_has)
PHP_ABSTRACT_ME(Phalcon_Http_Response_CookiesInterface, delete, arginfo_phalcon_http_response_cookiesinterface_delete)
PHP_ABSTRACT_ME(Phalcon_Http_Response_CookiesInterface, send, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_Response_CookiesInterface, reset, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_http_response_headersinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Response_HeadersInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_headersinterface_set, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_headersinterface_get, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_headersinterface_setraw, 0, 0, 1)
ZEND_ARG_INFO(0, header)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_headersinterface___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_response_headersinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Http_Response_HeadersInterface, set, arginfo_phalcon_http_response_headersinterface_set)
PHP_ABSTRACT_ME(Phalcon_Http_Response_HeadersInterface, get, arginfo_phalcon_http_response_headersinterface_get)
PHP_ABSTRACT_ME(Phalcon_Http_Response_HeadersInterface, setRaw, arginfo_phalcon_http_response_headersinterface_setraw)
PHP_ABSTRACT_ME(Phalcon_Http_Response_HeadersInterface, send, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_Response_HeadersInterface, reset, NULL)
ZEND_FENTRY(__set_state, NULL, arginfo_phalcon_http_response_headersinterface___set_state, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_http_responseinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_ResponseInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_setstatuscode, 0, 0, 1)
ZEND_ARG_INFO(0, code)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_setheader, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_setrawheader, 0, 0, 1)
ZEND_ARG_INFO(0, header)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_setexpires, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, datetime, DateTime, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_setcontenttype, 0, 0, 1)
ZEND_ARG_INFO(0, contentType)
ZEND_ARG_INFO(0, charset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_setcontentlength, 0, 0, 1)
ZEND_ARG_INFO(0, contentLength)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_redirect, 0, 0, 0)
ZEND_ARG_INFO(0, location)
ZEND_ARG_INFO(0, externalRedirect)
ZEND_ARG_INFO(0, statusCode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_setcontent, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_setjsoncontent, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_appendcontent, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_responseinterface_setfiletosend, 0, 0, 1)
ZEND_ARG_INFO(0, filePath)
ZEND_ARG_INFO(0, attachmentName)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_responseinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setStatusCode, arginfo_phalcon_http_responseinterface_setstatuscode)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, getHeaders, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setHeader, arginfo_phalcon_http_responseinterface_setheader)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setRawHeader, arginfo_phalcon_http_responseinterface_setrawheader)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, resetHeaders, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setExpires, arginfo_phalcon_http_responseinterface_setexpires)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setNotModified, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setContentType, arginfo_phalcon_http_responseinterface_setcontenttype)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setContentLength, arginfo_phalcon_http_responseinterface_setcontentlength)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, redirect, arginfo_phalcon_http_responseinterface_redirect)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setContent, arginfo_phalcon_http_responseinterface_setcontent)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setJsonContent, arginfo_phalcon_http_responseinterface_setjsoncontent)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, appendContent, arginfo_phalcon_http_responseinterface_appendcontent)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, getContent, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, sendHeaders, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, sendCookies, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, send, NULL)
PHP_ABSTRACT_ME(Phalcon_Http_ResponseInterface, setFileToSend, arginfo_phalcon_http_responseinterface_setfiletosend)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_collectioninterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_CollectionInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_setid, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_setconnectionservice, 0, 0, 1)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_cloneresult, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_ARRAY_INFO(0, document, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_fireevent, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_fireeventcancel, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_appendmessage, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, message, Phalcon\\Mvc\\Model\\MessageInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_findbyid, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_findfirst, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_find, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collectioninterface_count, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_collectioninterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, setId, arginfo_phalcon_mvc_collectioninterface_setid)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, getId, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, getReservedAttributes, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, getSource, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, setConnectionService, arginfo_phalcon_mvc_collectioninterface_setconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, getConnection, NULL)
ZEND_FENTRY(cloneResult, NULL, arginfo_phalcon_mvc_collectioninterface_cloneresult, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, fireEvent, arginfo_phalcon_mvc_collectioninterface_fireevent)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, fireEventCancel, arginfo_phalcon_mvc_collectioninterface_fireeventcancel)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, validationHasFailed, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, getMessages, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, appendMessage, arginfo_phalcon_mvc_collectioninterface_appendmessage)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, save, NULL)
ZEND_FENTRY(findById, NULL, arginfo_phalcon_mvc_collectioninterface_findbyid, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(findFirst, NULL, arginfo_phalcon_mvc_collectioninterface_findfirst, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(find, NULL, arginfo_phalcon_mvc_collectioninterface_find, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(count, NULL, arginfo_phalcon_mvc_collectioninterface_count, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_ABSTRACT_ME(Phalcon_Mvc_CollectionInterface, delete, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_controllerinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_ControllerInterface);
zend_class_entry *phalcon_mvc_dispatcherinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_DispatcherInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_dispatcherinterface_setcontrollersuffix, 0, 0, 1)
ZEND_ARG_INFO(0, controllerSuffix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_dispatcherinterface_setdefaultcontroller, 0, 0, 1)
ZEND_ARG_INFO(0, controllerName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_dispatcherinterface_setcontrollername, 0, 0, 1)
ZEND_ARG_INFO(0, controllerName)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_dispatcherinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_DispatcherInterface, setControllerSuffix, arginfo_phalcon_mvc_dispatcherinterface_setcontrollersuffix)
PHP_ABSTRACT_ME(Phalcon_Mvc_DispatcherInterface, setDefaultController, arginfo_phalcon_mvc_dispatcherinterface_setdefaultcontroller)
PHP_ABSTRACT_ME(Phalcon_Mvc_DispatcherInterface, setControllerName, arginfo_phalcon_mvc_dispatcherinterface_setcontrollername)
PHP_ABSTRACT_ME(Phalcon_Mvc_DispatcherInterface, getControllerName, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_DispatcherInterface, getLastController, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_DispatcherInterface, getActiveController, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_micro_collectioninterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Micro_CollectionInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_setprefix, 0, 0, 1)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_sethandler, 0, 0, 1)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, lazy)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_setlazy, 0, 0, 1)
ZEND_ARG_INFO(0, lazy)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_map, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_get, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_post, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_put, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_patch, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_head, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_delete, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collectioninterface_options, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_micro_collectioninterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, setPrefix, arginfo_phalcon_mvc_micro_collectioninterface_setprefix)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, getPrefix, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, getHandlers, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, setHandler, arginfo_phalcon_mvc_micro_collectioninterface_sethandler)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, setLazy, arginfo_phalcon_mvc_micro_collectioninterface_setlazy)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, isLazy, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, getHandler, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, map, arginfo_phalcon_mvc_micro_collectioninterface_map)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, get, arginfo_phalcon_mvc_micro_collectioninterface_get)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, post, arginfo_phalcon_mvc_micro_collectioninterface_post)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, put, arginfo_phalcon_mvc_micro_collectioninterface_put)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, patch, arginfo_phalcon_mvc_micro_collectioninterface_patch)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, head, arginfo_phalcon_mvc_micro_collectioninterface_head)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, delete, arginfo_phalcon_mvc_micro_collectioninterface_delete)
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_CollectionInterface, options, arginfo_phalcon_mvc_micro_collectioninterface_options)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_criteriainterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_CriteriaInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_setmodelname, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_bind, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, bindParams, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_bindtypes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, bindTypes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_where, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_conditions, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_orderby, 0, 0, 1)
ZEND_ARG_INFO(0, orderColumns)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_limit, 0, 0, 1)
ZEND_ARG_INFO(0, limit)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_forupdate, 0, 0, 0)
ZEND_ARG_INFO(0, forUpdate)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_sharedlock, 0, 0, 0)
ZEND_ARG_INFO(0, sharedLock)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_andwhere, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_orwhere, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_betweenwhere, 0, 0, 3)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_INFO(0, minimum)
ZEND_ARG_INFO(0, maximum)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_notbetweenwhere, 0, 0, 3)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_INFO(0, minimum)
ZEND_ARG_INFO(0, maximum)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_inwhere, 0, 0, 2)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteriainterface_notinwhere, 0, 0, 2)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_criteriainterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, setModelName, arginfo_phalcon_mvc_model_criteriainterface_setmodelname)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, getModelName, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, bind, arginfo_phalcon_mvc_model_criteriainterface_bind)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, bindTypes, arginfo_phalcon_mvc_model_criteriainterface_bindtypes)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, where, arginfo_phalcon_mvc_model_criteriainterface_where)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, conditions, arginfo_phalcon_mvc_model_criteriainterface_conditions)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, orderBy, arginfo_phalcon_mvc_model_criteriainterface_orderby)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, limit, arginfo_phalcon_mvc_model_criteriainterface_limit)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, forUpdate, arginfo_phalcon_mvc_model_criteriainterface_forupdate)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, sharedLock, arginfo_phalcon_mvc_model_criteriainterface_sharedlock)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, andWhere, arginfo_phalcon_mvc_model_criteriainterface_andwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, orWhere, arginfo_phalcon_mvc_model_criteriainterface_orwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, betweenWhere, arginfo_phalcon_mvc_model_criteriainterface_betweenwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, notBetweenWhere, arginfo_phalcon_mvc_model_criteriainterface_notbetweenwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, inWhere, arginfo_phalcon_mvc_model_criteriainterface_inwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, notInWhere, arginfo_phalcon_mvc_model_criteriainterface_notinwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, getWhere, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, getConditions, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, getLimit, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, getOrderBy, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, getParams, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_CriteriaInterface, execute, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_managerinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_ManagerInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_initialize, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_setmodelsource, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, source)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getmodelsource, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_setmodelschema, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getmodelschema, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_setconnectionservice, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_setreadconnectionservice, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getreadconnectionservice, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_setwriteconnectionservice, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getwriteconnectionservice, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getreadconnection, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getwriteconnection, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_isinitialized, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_load, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, newInstance)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_addhasone, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referencedModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_addbelongsto, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referencedModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_addhasmany, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referencedModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_existsbelongsto, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_existshasmany, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_existshasone, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getbelongstorecords, 0, 0, 4)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_gethasmanyrecords, 0, 0, 4)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_gethasonerecords, 0, 0, 4)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getbelongsto, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_gethasmany, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_gethasone, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_gethasoneandhasmany, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getrelations, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getrelationsbetween, 0, 0, 2)
ZEND_ARG_INFO(0, first)
ZEND_ARG_INFO(0, second)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_createquery, 0, 0, 1)
ZEND_ARG_INFO(0, phql)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_executequery, 0, 0, 1)
ZEND_ARG_INFO(0, phql)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_createbuilder, 0, 0, 0)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_addbehavior, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_OBJ_INFO(0, behavior, Phalcon\\Mvc\\Model\\BehaviorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_notifyevent, 0, 0, 2)
ZEND_ARG_INFO(0, eventName)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_missingmethod, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, eventName)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_managerinterface_getrelationbyalias, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_managerinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, initialize, arginfo_phalcon_mvc_model_managerinterface_initialize)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, setModelSource, arginfo_phalcon_mvc_model_managerinterface_setmodelsource)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getModelSource, arginfo_phalcon_mvc_model_managerinterface_getmodelsource)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, setModelSchema, arginfo_phalcon_mvc_model_managerinterface_setmodelschema)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getModelSchema, arginfo_phalcon_mvc_model_managerinterface_getmodelschema)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, setConnectionService, arginfo_phalcon_mvc_model_managerinterface_setconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, setReadConnectionService, arginfo_phalcon_mvc_model_managerinterface_setreadconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getReadConnectionService, arginfo_phalcon_mvc_model_managerinterface_getreadconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, setWriteConnectionService, arginfo_phalcon_mvc_model_managerinterface_setwriteconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getWriteConnectionService, arginfo_phalcon_mvc_model_managerinterface_getwriteconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getReadConnection, arginfo_phalcon_mvc_model_managerinterface_getreadconnection)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getWriteConnection, arginfo_phalcon_mvc_model_managerinterface_getwriteconnection)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, isInitialized, arginfo_phalcon_mvc_model_managerinterface_isinitialized)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getLastInitialized, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, load, arginfo_phalcon_mvc_model_managerinterface_load)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, addHasOne, arginfo_phalcon_mvc_model_managerinterface_addhasone)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, addBelongsTo, arginfo_phalcon_mvc_model_managerinterface_addbelongsto)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, addHasMany, arginfo_phalcon_mvc_model_managerinterface_addhasmany)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, existsBelongsTo, arginfo_phalcon_mvc_model_managerinterface_existsbelongsto)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, existsHasMany, arginfo_phalcon_mvc_model_managerinterface_existshasmany)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, existsHasOne, arginfo_phalcon_mvc_model_managerinterface_existshasone)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getBelongsToRecords, arginfo_phalcon_mvc_model_managerinterface_getbelongstorecords)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getHasManyRecords, arginfo_phalcon_mvc_model_managerinterface_gethasmanyrecords)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getHasOneRecords, arginfo_phalcon_mvc_model_managerinterface_gethasonerecords)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getBelongsTo, arginfo_phalcon_mvc_model_managerinterface_getbelongsto)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getHasMany, arginfo_phalcon_mvc_model_managerinterface_gethasmany)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getHasOne, arginfo_phalcon_mvc_model_managerinterface_gethasone)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getHasOneAndHasMany, arginfo_phalcon_mvc_model_managerinterface_gethasoneandhasmany)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getRelations, arginfo_phalcon_mvc_model_managerinterface_getrelations)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getRelationsBetween, arginfo_phalcon_mvc_model_managerinterface_getrelationsbetween)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, createQuery, arginfo_phalcon_mvc_model_managerinterface_createquery)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, executeQuery, arginfo_phalcon_mvc_model_managerinterface_executequery)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, createBuilder, arginfo_phalcon_mvc_model_managerinterface_createbuilder)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, addBehavior, arginfo_phalcon_mvc_model_managerinterface_addbehavior)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, notifyEvent, arginfo_phalcon_mvc_model_managerinterface_notifyevent)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, missingMethod, arginfo_phalcon_mvc_model_managerinterface_missingmethod)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getLastQuery, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_ManagerInterface, getRelationByAlias, arginfo_phalcon_mvc_model_managerinterface_getrelationbyalias)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_messageinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MessageInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_messageinterface_settype, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_messageinterface_setmessage, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_messageinterface_setfield, 0, 0, 1)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_messageinterface___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, message, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_messageinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MessageInterface, setType, arginfo_phalcon_mvc_model_messageinterface_settype)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MessageInterface, getType, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MessageInterface, setMessage, arginfo_phalcon_mvc_model_messageinterface_setmessage)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MessageInterface, getMessage, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MessageInterface, setField, arginfo_phalcon_mvc_model_messageinterface_setfield)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MessageInterface, getField, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_MessageInterface, __toString, NULL)
ZEND_FENTRY(__set_state, NULL, arginfo_phalcon_mvc_model_messageinterface___set_state, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_query_builderinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Query_BuilderInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_columns, 0, 0, 1)
ZEND_ARG_INFO(0, columns)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_from, 0, 0, 1)
ZEND_ARG_INFO(0, models)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_addfrom, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_join, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_innerjoin, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_leftjoin, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_rightjoin, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_where, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_andwhere, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_orwhere, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_betweenwhere, 0, 0, 3)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_INFO(0, minimum)
ZEND_ARG_INFO(0, maximum)
ZEND_ARG_INFO(0, operator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_notbetweenwhere, 0, 0, 3)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_INFO(0, minimum)
ZEND_ARG_INFO(0, maximum)
ZEND_ARG_INFO(0, operator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_inwhere, 0, 0, 2)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_ARG_INFO(0, operator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_notinwhere, 0, 0, 2)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_ARG_INFO(0, operator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_orderby, 0, 0, 1)
ZEND_ARG_INFO(0, orderBy)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_having, 0, 0, 1)
ZEND_ARG_INFO(0, having)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_limit, 0, 0, 1)
ZEND_ARG_INFO(0, limit)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builderinterface_groupby, 0, 0, 1)
ZEND_ARG_INFO(0, group)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_query_builderinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, columns, arginfo_phalcon_mvc_model_query_builderinterface_columns)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getColumns, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, from, arginfo_phalcon_mvc_model_query_builderinterface_from)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, addFrom, arginfo_phalcon_mvc_model_query_builderinterface_addfrom)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getFrom, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, join, arginfo_phalcon_mvc_model_query_builderinterface_join)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, innerJoin, arginfo_phalcon_mvc_model_query_builderinterface_innerjoin)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, leftJoin, arginfo_phalcon_mvc_model_query_builderinterface_leftjoin)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, rightJoin, arginfo_phalcon_mvc_model_query_builderinterface_rightjoin)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getJoins, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, where, arginfo_phalcon_mvc_model_query_builderinterface_where)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, andWhere, arginfo_phalcon_mvc_model_query_builderinterface_andwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, orWhere, arginfo_phalcon_mvc_model_query_builderinterface_orwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, betweenWhere, arginfo_phalcon_mvc_model_query_builderinterface_betweenwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, notBetweenWhere, arginfo_phalcon_mvc_model_query_builderinterface_notbetweenwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, inWhere, arginfo_phalcon_mvc_model_query_builderinterface_inwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, notInWhere, arginfo_phalcon_mvc_model_query_builderinterface_notinwhere)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getWhere, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, orderBy, arginfo_phalcon_mvc_model_query_builderinterface_orderby)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getOrderBy, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, having, arginfo_phalcon_mvc_model_query_builderinterface_having)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getHaving, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, limit, arginfo_phalcon_mvc_model_query_builderinterface_limit)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getLimit, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, groupBy, arginfo_phalcon_mvc_model_query_builderinterface_groupby)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getGroupBy, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getPhql, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_BuilderInterface, getQuery, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_query_statusinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Query_StatusInterface);
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_query_statusinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_StatusInterface, getModel, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_StatusInterface, getMessages, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Query_StatusInterface, success, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_queryinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_QueryInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_queryinterface_cache, 0, 0, 1)
ZEND_ARG_INFO(0, cacheOptions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_queryinterface_setuniquerow, 0, 0, 1)
ZEND_ARG_INFO(0, uniqueRow)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_queryinterface_execute, 0, 0, 0)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_queryinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_QueryInterface, parse, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_QueryInterface, cache, arginfo_phalcon_mvc_model_queryinterface_cache)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_QueryInterface, getCacheOptions, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_QueryInterface, setUniqueRow, arginfo_phalcon_mvc_model_queryinterface_setuniquerow)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_QueryInterface, getUniqueRow, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_QueryInterface, execute, arginfo_phalcon_mvc_model_queryinterface_execute)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_relationinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_RelationInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_relationinterface_setintermediaterelation, 0, 0, 3)
ZEND_ARG_INFO(0, intermediateFields)
ZEND_ARG_INFO(0, intermediateModel)
ZEND_ARG_INFO(0, intermediateReferencedFields)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_relationinterface_getoption, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_relationinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, setIntermediateRelation, arginfo_phalcon_mvc_model_relationinterface_setintermediaterelation)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, isReusable, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getType, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getReferencedModel, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getFields, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getReferencedFields, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getOptions, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getOption, arginfo_phalcon_mvc_model_relationinterface_getoption)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, isForeignKey, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getForeignKey, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, isThrough, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getIntermediateFields, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getIntermediateModel, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_RelationInterface, getIntermediateReferencedFields, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_transaction_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Transaction_Exception);
zend_class_entry *phalcon_mvc_model_transaction_managerinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Transaction_ManagerInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_managerinterface_get, 0, 0, 0)
ZEND_ARG_INFO(0, autoBegin)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_managerinterface_rollback, 0, 0, 0)
ZEND_ARG_INFO(0, collect)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_managerinterface_notifyrollback, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, transaction, Phalcon\\Mvc\\Model\\TransactionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_managerinterface_notifycommit, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, transaction, Phalcon\\Mvc\\Model\\TransactionInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_transaction_managerinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Transaction_ManagerInterface, has, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Transaction_ManagerInterface, get, arginfo_phalcon_mvc_model_transaction_managerinterface_get)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Transaction_ManagerInterface, rollbackPendent, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Transaction_ManagerInterface, commit, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Transaction_ManagerInterface, rollback, arginfo_phalcon_mvc_model_transaction_managerinterface_rollback)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Transaction_ManagerInterface, notifyRollback, arginfo_phalcon_mvc_model_transaction_managerinterface_notifyrollback)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Transaction_ManagerInterface, notifyCommit, arginfo_phalcon_mvc_model_transaction_managerinterface_notifycommit)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_Transaction_ManagerInterface, collectTransactions, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_transactioninterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_TransactionInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transactioninterface_settransactionmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, manager, Phalcon\\Mvc\\Model\\Transaction\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transactioninterface_rollback, 0, 0, 0)
ZEND_ARG_INFO(0, rollbackMessage)
ZEND_ARG_INFO(0, rollbackRecord)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transactioninterface_setisnewtransaction, 0, 0, 1)
ZEND_ARG_INFO(0, isNew)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transactioninterface_setrollbackonabort, 0, 0, 1)
ZEND_ARG_INFO(0, rollbackOnAbort)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transactioninterface_setrollbackedrecord, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_transactioninterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, setTransactionManager, arginfo_phalcon_mvc_model_transactioninterface_settransactionmanager)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, begin, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, commit, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, rollback, arginfo_phalcon_mvc_model_transactioninterface_rollback)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, getConnection, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, setIsNewTransaction, arginfo_phalcon_mvc_model_transactioninterface_setisnewtransaction)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, setRollbackOnAbort, arginfo_phalcon_mvc_model_transactioninterface_setrollbackonabort)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, isManaged, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, getMessages, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, isValid, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Model_TransactionInterface, setRollbackedRecord, arginfo_phalcon_mvc_model_transactioninterface_setrollbackedrecord)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_modelinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_ModelInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_settransaction, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, transaction, Phalcon\\Mvc\\Model\\TransactionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_setconnectionservice, 0, 0, 1)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_setwriteconnectionservice, 0, 0, 1)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_setreadconnectionservice, 0, 0, 1)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_setdirtystate, 0, 0, 1)
ZEND_ARG_INFO(0, dirtyState)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_assign, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, dataColumnMap)
ZEND_ARG_INFO(0, whiteList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_cloneresultmap, 0, 0, 3)
ZEND_ARG_INFO(0, base)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, columnMap)
ZEND_ARG_INFO(0, dirtyState)
ZEND_ARG_INFO(0, keepSnapshots)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_cloneresult, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, base, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, dirtyState)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_cloneresultmaphydrate, 0, 0, 3)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, columnMap)
ZEND_ARG_INFO(0, hydrationMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_find, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_findfirst, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_query, 0, 0, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_count, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_sum, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_maximum, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_minimum, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_average, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_fireevent, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_fireeventcancel, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_appendmessage, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, message, Phalcon\\Mvc\\Model\\MessageInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_save, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, whiteList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_create, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, whiteList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_update, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, whiteList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_skipoperation, 0, 0, 1)
ZEND_ARG_INFO(0, skip)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_getrelated, 0, 0, 1)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_modelinterface_setsnapshotdata, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, columnMap)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_modelinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, setTransaction, arginfo_phalcon_mvc_modelinterface_settransaction)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getSource, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getSchema, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, setConnectionService, arginfo_phalcon_mvc_modelinterface_setconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, setWriteConnectionService, arginfo_phalcon_mvc_modelinterface_setwriteconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, setReadConnectionService, arginfo_phalcon_mvc_modelinterface_setreadconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getReadConnectionService, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getWriteConnectionService, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getReadConnection, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getWriteConnection, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, setDirtyState, arginfo_phalcon_mvc_modelinterface_setdirtystate)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getDirtyState, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, assign, arginfo_phalcon_mvc_modelinterface_assign)
ZEND_FENTRY(cloneResultMap, NULL, arginfo_phalcon_mvc_modelinterface_cloneresultmap, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(cloneResult, NULL, arginfo_phalcon_mvc_modelinterface_cloneresult, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(cloneResultMapHydrate, NULL, arginfo_phalcon_mvc_modelinterface_cloneresultmaphydrate, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(find, NULL, arginfo_phalcon_mvc_modelinterface_find, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(findFirst, NULL, arginfo_phalcon_mvc_modelinterface_findfirst, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(query, NULL, arginfo_phalcon_mvc_modelinterface_query, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(count, NULL, arginfo_phalcon_mvc_modelinterface_count, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(sum, NULL, arginfo_phalcon_mvc_modelinterface_sum, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(maximum, NULL, arginfo_phalcon_mvc_modelinterface_maximum, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(minimum, NULL, arginfo_phalcon_mvc_modelinterface_minimum, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
ZEND_FENTRY(average, NULL, arginfo_phalcon_mvc_modelinterface_average, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, fireEvent, arginfo_phalcon_mvc_modelinterface_fireevent)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, fireEventCancel, arginfo_phalcon_mvc_modelinterface_fireeventcancel)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, appendMessage, arginfo_phalcon_mvc_modelinterface_appendmessage)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, validationHasFailed, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getMessages, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, save, arginfo_phalcon_mvc_modelinterface_save)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, create, arginfo_phalcon_mvc_modelinterface_create)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, update, arginfo_phalcon_mvc_modelinterface_update)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, delete, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getOperationMade, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, refresh, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, skipOperation, arginfo_phalcon_mvc_modelinterface_skipoperation)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, getRelated, arginfo_phalcon_mvc_modelinterface_getrelated)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, setSnapshotData, arginfo_phalcon_mvc_modelinterface_setsnapshotdata)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModelInterface, reset, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_router_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Router);
static PHP_METHOD(Phalcon_Mvc_Router, __construct);
static PHP_METHOD(Phalcon_Mvc_Router, setDI);
static PHP_METHOD(Phalcon_Mvc_Router, getDI);
static PHP_METHOD(Phalcon_Mvc_Router, setEventsManager);
static PHP_METHOD(Phalcon_Mvc_Router, getEventsManager);
static PHP_METHOD(Phalcon_Mvc_Router, getRewriteUri);
static PHP_METHOD(Phalcon_Mvc_Router, setUriSource);
static PHP_METHOD(Phalcon_Mvc_Router, removeExtraSlashes);
static PHP_METHOD(Phalcon_Mvc_Router, setDefaultNamespace);
static PHP_METHOD(Phalcon_Mvc_Router, setDefaultModule);
static PHP_METHOD(Phalcon_Mvc_Router, setDefaultController);
static PHP_METHOD(Phalcon_Mvc_Router, setDefaultAction);
static PHP_METHOD(Phalcon_Mvc_Router, setDefaults);
static PHP_METHOD(Phalcon_Mvc_Router, getDefaults);
static PHP_METHOD(Phalcon_Mvc_Router, handle);
static PHP_METHOD(Phalcon_Mvc_Router, add);
static PHP_METHOD(Phalcon_Mvc_Router, addGet);
static PHP_METHOD(Phalcon_Mvc_Router, addPost);
static PHP_METHOD(Phalcon_Mvc_Router, addPut);
static PHP_METHOD(Phalcon_Mvc_Router, addPatch);
static PHP_METHOD(Phalcon_Mvc_Router, addDelete);
static PHP_METHOD(Phalcon_Mvc_Router, addOptions);
static PHP_METHOD(Phalcon_Mvc_Router, addHead);
static PHP_METHOD(Phalcon_Mvc_Router, addPurge);
static PHP_METHOD(Phalcon_Mvc_Router, addTrace);
static PHP_METHOD(Phalcon_Mvc_Router, addConnect);
static PHP_METHOD(Phalcon_Mvc_Router, mount);
static PHP_METHOD(Phalcon_Mvc_Router, notFound);
static PHP_METHOD(Phalcon_Mvc_Router, clear);
static PHP_METHOD(Phalcon_Mvc_Router, getNamespaceName);
static PHP_METHOD(Phalcon_Mvc_Router, getModuleName);
static PHP_METHOD(Phalcon_Mvc_Router, getControllerName);
static PHP_METHOD(Phalcon_Mvc_Router, getActionName);
static PHP_METHOD(Phalcon_Mvc_Router, getParams);
static PHP_METHOD(Phalcon_Mvc_Router, getMatchedRoute);
static PHP_METHOD(Phalcon_Mvc_Router, getMatches);
static PHP_METHOD(Phalcon_Mvc_Router, wasMatched);
static PHP_METHOD(Phalcon_Mvc_Router, getRoutes);
static PHP_METHOD(Phalcon_Mvc_Router, getRouteById);
static PHP_METHOD(Phalcon_Mvc_Router, getRouteByName);
static PHP_METHOD(Phalcon_Mvc_Router, isExactControllerName);
zend_object *zephir_init_properties_Phalcon_Mvc_Router(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router___construct, 0, 0, 0)
ZEND_ARG_INFO(0, defaultRoutes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_seturisource, 0, 0, 1)
ZEND_ARG_INFO(0, uriSource)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_removeextraslashes, 0, 0, 1)
ZEND_ARG_INFO(0, remove)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_setdefaultnamespace, 0, 0, 1)
ZEND_ARG_INFO(0, namespaceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_setdefaultmodule, 0, 0, 1)
ZEND_ARG_INFO(0, moduleName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_setdefaultcontroller, 0, 0, 1)
ZEND_ARG_INFO(0, controllerName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_setdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, actionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_setdefaults, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, defaults, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_handle, 0, 0, 0)
ZEND_ARG_INFO(0, uri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_add, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, httpMethods)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_addget, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_addpost, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_addput, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_addpatch, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_adddelete, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_addoptions, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_addhead, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_addpurge, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_addtrace, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_addconnect, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_mount, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, group, Phalcon\\Mvc\\Router\\GroupInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_notfound, 0, 0, 1)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_getroutebyid, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_getroutebyname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_router_method_entry) {
PHP_ME(Phalcon_Mvc_Router, __construct, arginfo_phalcon_mvc_router___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Router, setDI, arginfo_phalcon_mvc_router_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, setEventsManager, arginfo_phalcon_mvc_router_seteventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getRewriteUri, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, setUriSource, arginfo_phalcon_mvc_router_seturisource, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, removeExtraSlashes, arginfo_phalcon_mvc_router_removeextraslashes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, setDefaultNamespace, arginfo_phalcon_mvc_router_setdefaultnamespace, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, setDefaultModule, arginfo_phalcon_mvc_router_setdefaultmodule, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, setDefaultController, arginfo_phalcon_mvc_router_setdefaultcontroller, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, setDefaultAction, arginfo_phalcon_mvc_router_setdefaultaction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, setDefaults, arginfo_phalcon_mvc_router_setdefaults, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getDefaults, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, handle, arginfo_phalcon_mvc_router_handle, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, add, arginfo_phalcon_mvc_router_add, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addGet, arginfo_phalcon_mvc_router_addget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addPost, arginfo_phalcon_mvc_router_addpost, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addPut, arginfo_phalcon_mvc_router_addput, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addPatch, arginfo_phalcon_mvc_router_addpatch, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addDelete, arginfo_phalcon_mvc_router_adddelete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addOptions, arginfo_phalcon_mvc_router_addoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addHead, arginfo_phalcon_mvc_router_addhead, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addPurge, arginfo_phalcon_mvc_router_addpurge, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addTrace, arginfo_phalcon_mvc_router_addtrace, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, addConnect, arginfo_phalcon_mvc_router_addconnect, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, mount, arginfo_phalcon_mvc_router_mount, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, notFound, arginfo_phalcon_mvc_router_notfound, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, clear, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getNamespaceName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getModuleName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getControllerName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getActionName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getParams, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getMatchedRoute, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getMatches, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, wasMatched, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getRoutes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getRouteById, arginfo_phalcon_mvc_router_getroutebyid, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, getRouteByName, arginfo_phalcon_mvc_router_getroutebyname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router, isExactControllerName, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_router_groupinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Router_GroupInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_sethostname, 0, 0, 1)
ZEND_ARG_INFO(0, hostname)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_setprefix, 0, 0, 1)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_beforematch, 0, 0, 1)
ZEND_ARG_INFO(0, beforeMatch)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_setpaths, 0, 0, 1)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_add, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, httpMethods)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_addget, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_addpost, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_addput, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_addpatch, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_adddelete, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_addoptions, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_groupinterface_addhead, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_router_groupinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, setHostname, arginfo_phalcon_mvc_router_groupinterface_sethostname)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, getHostname, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, setPrefix, arginfo_phalcon_mvc_router_groupinterface_setprefix)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, getPrefix, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, beforeMatch, arginfo_phalcon_mvc_router_groupinterface_beforematch)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, getBeforeMatch, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, setPaths, arginfo_phalcon_mvc_router_groupinterface_setpaths)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, getPaths, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, getRoutes, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, add, arginfo_phalcon_mvc_router_groupinterface_add)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, addGet, arginfo_phalcon_mvc_router_groupinterface_addget)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, addPost, arginfo_phalcon_mvc_router_groupinterface_addpost)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, addPut, arginfo_phalcon_mvc_router_groupinterface_addput)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, addPatch, arginfo_phalcon_mvc_router_groupinterface_addpatch)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, addDelete, arginfo_phalcon_mvc_router_groupinterface_adddelete)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, addOptions, arginfo_phalcon_mvc_router_groupinterface_addoptions)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, addHead, arginfo_phalcon_mvc_router_groupinterface_addhead)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_GroupInterface, clear, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_router_routeinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Router_RouteInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_routeinterface_sethostname, 0, 0, 1)
ZEND_ARG_INFO(0, hostname)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_routeinterface_compilepattern, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_routeinterface_via, 0, 0, 1)
ZEND_ARG_INFO(0, httpMethods)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_routeinterface_reconfigure, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_routeinterface_setname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_routeinterface_sethttpmethods, 0, 0, 1)
ZEND_ARG_INFO(0, httpMethods)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_router_routeinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, setHostname, arginfo_phalcon_mvc_router_routeinterface_sethostname)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, getHostname, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, compilePattern, arginfo_phalcon_mvc_router_routeinterface_compilepattern)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, via, arginfo_phalcon_mvc_router_routeinterface_via)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, reConfigure, arginfo_phalcon_mvc_router_routeinterface_reconfigure)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, setName, arginfo_phalcon_mvc_router_routeinterface_setname)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, setHttpMethods, arginfo_phalcon_mvc_router_routeinterface_sethttpmethods)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, getRouteId, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, getPattern, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, getCompiledPattern, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, getPaths, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, getReversedPaths, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Router_RouteInterface, getHttpMethods, NULL)
ZEND_FENTRY(reset, NULL, NULL, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_urlinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_UrlInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_urlinterface_setbaseuri, 0, 0, 1)
ZEND_ARG_INFO(0, baseUri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_urlinterface_setbasepath, 0, 0, 1)
ZEND_ARG_INFO(0, basePath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_urlinterface_get, 0, 0, 0)
ZEND_ARG_INFO(0, uri)
ZEND_ARG_INFO(0, args)
ZEND_ARG_INFO(0, local)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_urlinterface_path, 0, 0, 0)
ZEND_ARG_INFO(0, path)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_urlinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_UrlInterface, setBaseUri, arginfo_phalcon_mvc_urlinterface_setbaseuri)
PHP_ABSTRACT_ME(Phalcon_Mvc_UrlInterface, getBaseUri, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_UrlInterface, setBasePath, arginfo_phalcon_mvc_urlinterface_setbasepath)
PHP_ABSTRACT_ME(Phalcon_Mvc_UrlInterface, getBasePath, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_UrlInterface, get, arginfo_phalcon_mvc_urlinterface_get)
PHP_ABSTRACT_ME(Phalcon_Mvc_UrlInterface, path, arginfo_phalcon_mvc_urlinterface_path)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_view_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_View_Exception);
zend_class_entry *phalcon_mvc_viewinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_ViewInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_setlayoutsdir, 0, 0, 1)
ZEND_ARG_INFO(0, layoutsDir)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_setpartialsdir, 0, 0, 1)
ZEND_ARG_INFO(0, partialsDir)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_setbasepath, 0, 0, 1)
ZEND_ARG_INFO(0, basePath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_setrenderlevel, 0, 0, 1)
ZEND_ARG_INFO(0, level)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_setmainview, 0, 0, 1)
ZEND_ARG_INFO(0, viewPath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_setlayout, 0, 0, 1)
ZEND_ARG_INFO(0, layout)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_settemplatebefore, 0, 0, 1)
ZEND_ARG_INFO(0, templateBefore)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_settemplateafter, 0, 0, 1)
ZEND_ARG_INFO(0, templateAfter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_registerengines, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, engines, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_render, 0, 0, 2)
ZEND_ARG_INFO(0, controllerName)
ZEND_ARG_INFO(0, actionName)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_viewinterface_pick, 0, 0, 1)
ZEND_ARG_INFO(0, renderView)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_viewinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, setLayoutsDir, arginfo_phalcon_mvc_viewinterface_setlayoutsdir)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, getLayoutsDir, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, setPartialsDir, arginfo_phalcon_mvc_viewinterface_setpartialsdir)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, getPartialsDir, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, setBasePath, arginfo_phalcon_mvc_viewinterface_setbasepath)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, getBasePath, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, setRenderLevel, arginfo_phalcon_mvc_viewinterface_setrenderlevel)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, setMainView, arginfo_phalcon_mvc_viewinterface_setmainview)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, getMainView, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, setLayout, arginfo_phalcon_mvc_viewinterface_setlayout)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, getLayout, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, setTemplateBefore, arginfo_phalcon_mvc_viewinterface_settemplatebefore)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, cleanTemplateBefore, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, setTemplateAfter, arginfo_phalcon_mvc_viewinterface_settemplateafter)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, cleanTemplateAfter, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, getControllerName, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, getActionName, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, getParams, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, start, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, registerEngines, arginfo_phalcon_mvc_viewinterface_registerengines)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, render, arginfo_phalcon_mvc_viewinterface_render)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, pick, arginfo_phalcon_mvc_viewinterface_pick)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, finish, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, getActiveRenderPath, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, disable, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, enable, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, reset, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_ViewInterface, isDisabled, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_session_baginterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Session_BagInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_baginterface_set, 0, 0, 2)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_baginterface_get, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_baginterface_has, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_baginterface___set, 0, 0, 2)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_baginterface___get, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_baginterface___isset, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_session_baginterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Session_BagInterface, initialize, NULL)
PHP_ABSTRACT_ME(Phalcon_Session_BagInterface, destroy, NULL)
PHP_ABSTRACT_ME(Phalcon_Session_BagInterface, set, arginfo_phalcon_session_baginterface_set)
PHP_ABSTRACT_ME(Phalcon_Session_BagInterface, get, arginfo_phalcon_session_baginterface_get)
PHP_ABSTRACT_ME(Phalcon_Session_BagInterface, has, arginfo_phalcon_session_baginterface_has)
PHP_ABSTRACT_ME(Phalcon_Session_BagInterface, __set, arginfo_phalcon_session_baginterface___set)
PHP_ABSTRACT_ME(Phalcon_Session_BagInterface, __get, arginfo_phalcon_session_baginterface___get)
PHP_ABSTRACT_ME(Phalcon_Session_BagInterface, __isset, arginfo_phalcon_session_baginterface___isset)
PHP_FE_END
};
zend_class_entry *phalcon_validation_combinedfieldsvalidator_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_CombinedFieldsValidator);
zend_class_entry *phalcon_validation_messageinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_MessageInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_messageinterface_settype, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_messageinterface_setmessage, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_messageinterface_setfield, 0, 0, 1)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_messageinterface___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, message, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_messageinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Validation_MessageInterface, setType, arginfo_phalcon_validation_messageinterface_settype)
PHP_ABSTRACT_ME(Phalcon_Validation_MessageInterface, getType, NULL)
PHP_ABSTRACT_ME(Phalcon_Validation_MessageInterface, setMessage, arginfo_phalcon_validation_messageinterface_setmessage)
PHP_ABSTRACT_ME(Phalcon_Validation_MessageInterface, getMessage, NULL)
PHP_ABSTRACT_ME(Phalcon_Validation_MessageInterface, setField, arginfo_phalcon_validation_messageinterface_setfield)
PHP_ABSTRACT_ME(Phalcon_Validation_MessageInterface, getField, NULL)
PHP_ABSTRACT_ME(Phalcon_Validation_MessageInterface, __toString, NULL)
ZEND_FENTRY(__set_state, NULL, arginfo_phalcon_validation_messageinterface___set_state, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validationinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_ValidationInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_validate, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, entity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_add, 0, 0, 2)
ZEND_ARG_INFO(0, field)
ZEND_ARG_OBJ_INFO(0, validator, Phalcon\\Validation\\ValidatorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_rule, 0, 0, 2)
ZEND_ARG_INFO(0, field)
ZEND_ARG_OBJ_INFO(0, validator, Phalcon\\Validation\\ValidatorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_rules, 0, 0, 2)
ZEND_ARG_INFO(0, field)
ZEND_ARG_ARRAY_INFO(0, validators, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_setfilters, 0, 0, 2)
ZEND_ARG_INFO(0, field)
ZEND_ARG_INFO(0, filters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_getfilters, 0, 0, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_setdefaultmessages, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, messages, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_getdefaultmessage, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_setlabels, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, labels, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_getlabel, 0, 0, 1)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_appendmessage, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, message, Phalcon\\Validation\\MessageInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_bind, 0, 0, 2)
ZEND_ARG_INFO(0, entity)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validationinterface_getvalue, 0, 0, 1)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validationinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, validate, arginfo_phalcon_validationinterface_validate)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, add, arginfo_phalcon_validationinterface_add)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, rule, arginfo_phalcon_validationinterface_rule)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, rules, arginfo_phalcon_validationinterface_rules)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, setFilters, arginfo_phalcon_validationinterface_setfilters)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, getFilters, arginfo_phalcon_validationinterface_getfilters)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, getValidators, NULL)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, getEntity, NULL)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, setDefaultMessages, arginfo_phalcon_validationinterface_setdefaultmessages)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, getDefaultMessage, arginfo_phalcon_validationinterface_getdefaultmessage)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, getMessages, NULL)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, setLabels, arginfo_phalcon_validationinterface_setlabels)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, getLabel, arginfo_phalcon_validationinterface_getlabel)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, appendMessage, arginfo_phalcon_validationinterface_appendmessage)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, bind, arginfo_phalcon_validationinterface_bind)
PHP_ABSTRACT_ME(Phalcon_ValidationInterface, getValue, arginfo_phalcon_validationinterface_getvalue)
PHP_FE_END
};
zend_class_entry *phalcon_acl_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl);
zend_class_entry *phalcon_acl_adapter_memory_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_Adapter_Memory);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, __construct);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, addRole);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, addInherit);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, isRole);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, isResource);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, addResource);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, addResourceAccess);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, dropResourceAccess);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, _allowOrDeny);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, allow);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, deny);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, isAllowed);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, setNoArgumentsDefaultAction);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, getNoArgumentsDefaultAction);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, getRoles);
static PHP_METHOD(Phalcon_Acl_Adapter_Memory, getResources);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_addrole, 0, 0, 1)
ZEND_ARG_INFO(0, role)
ZEND_ARG_INFO(0, accessInherits)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_addinherit, 0, 0, 2)
ZEND_ARG_INFO(0, roleName)
ZEND_ARG_INFO(0, roleToInherit)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_isrole, 0, 0, 1)
ZEND_ARG_INFO(0, roleName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_isresource, 0, 0, 1)
ZEND_ARG_INFO(0, resourceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_addresource, 0, 0, 2)
ZEND_ARG_INFO(0, resourceValue)
ZEND_ARG_INFO(0, accessList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_addresourceaccess, 0, 0, 2)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, accessList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_dropresourceaccess, 0, 0, 2)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, accessList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory__allowordeny, 0, 0, 4)
ZEND_ARG_INFO(0, roleName)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, access)
ZEND_ARG_INFO(0, action)
ZEND_ARG_INFO(0, func)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_allow, 0, 0, 3)
ZEND_ARG_INFO(0, roleName)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, access)
ZEND_ARG_INFO(0, func)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_deny, 0, 0, 3)
ZEND_ARG_INFO(0, roleName)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, access)
ZEND_ARG_INFO(0, func)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_isallowed, 0, 0, 3)
ZEND_ARG_INFO(0, roleName)
ZEND_ARG_INFO(0, resourceName)
ZEND_ARG_INFO(0, access)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_adapter_memory_setnoargumentsdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, defaultAccess)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_acl_adapter_memory_method_entry) {
PHP_ME(Phalcon_Acl_Adapter_Memory, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Acl_Adapter_Memory, addRole, arginfo_phalcon_acl_adapter_memory_addrole, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, addInherit, arginfo_phalcon_acl_adapter_memory_addinherit, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, isRole, arginfo_phalcon_acl_adapter_memory_isrole, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, isResource, arginfo_phalcon_acl_adapter_memory_isresource, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, addResource, arginfo_phalcon_acl_adapter_memory_addresource, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, addResourceAccess, arginfo_phalcon_acl_adapter_memory_addresourceaccess, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, dropResourceAccess, arginfo_phalcon_acl_adapter_memory_dropresourceaccess, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, _allowOrDeny, arginfo_phalcon_acl_adapter_memory__allowordeny, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Acl_Adapter_Memory, allow, arginfo_phalcon_acl_adapter_memory_allow, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, deny, arginfo_phalcon_acl_adapter_memory_deny, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, isAllowed, arginfo_phalcon_acl_adapter_memory_isallowed, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, setNoArgumentsDefaultAction, arginfo_phalcon_acl_adapter_memory_setnoargumentsdefaultaction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, getNoArgumentsDefaultAction, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, getRoles, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Adapter_Memory, getResources, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_acl_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_Exception);
zend_class_entry *phalcon_acl_resource_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_Resource);
static PHP_METHOD(Phalcon_Acl_Resource, getName);
static PHP_METHOD(Phalcon_Acl_Resource, __toString);
static PHP_METHOD(Phalcon_Acl_Resource, getDescription);
static PHP_METHOD(Phalcon_Acl_Resource, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_resource___construct, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, description)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_acl_resource_method_entry) {
PHP_ME(Phalcon_Acl_Resource, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Resource, __toString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Resource, getDescription, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Resource, __construct, arginfo_phalcon_acl_resource___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_acl_resourceaware_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_ResourceAware);
ZEPHIR_INIT_FUNCS(phalcon_acl_resourceaware_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Acl_ResourceAware, getResourceName, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_acl_role_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_Role);
static PHP_METHOD(Phalcon_Acl_Role, getName);
static PHP_METHOD(Phalcon_Acl_Role, __toString);
static PHP_METHOD(Phalcon_Acl_Role, getDescription);
static PHP_METHOD(Phalcon_Acl_Role, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_acl_role___construct, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, description)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_acl_role_method_entry) {
PHP_ME(Phalcon_Acl_Role, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Role, __toString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Role, getDescription, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Acl_Role, __construct, arginfo_phalcon_acl_role___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_acl_roleaware_ce;
ZEPHIR_INIT_CLASS(Phalcon_Acl_RoleAware);
ZEPHIR_INIT_FUNCS(phalcon_acl_roleaware_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Acl_RoleAware, getRoleName, NULL)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_adapter_apc_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Adapter_Apc);
static PHP_METHOD(Phalcon_Annotations_Adapter_Apc, __construct);
static PHP_METHOD(Phalcon_Annotations_Adapter_Apc, read);
static PHP_METHOD(Phalcon_Annotations_Adapter_Apc, write);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_apc___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_apc_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_apc_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_OBJ_INFO(0, data, Phalcon\\Annotations\\Reflection, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_adapter_apc_method_entry) {
PHP_ME(Phalcon_Annotations_Adapter_Apc, __construct, arginfo_phalcon_annotations_adapter_apc___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Annotations_Adapter_Apc, read, arginfo_phalcon_annotations_adapter_apc_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter_Apc, write, arginfo_phalcon_annotations_adapter_apc_write, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_adapter_files_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Adapter_Files);
static PHP_METHOD(Phalcon_Annotations_Adapter_Files, __construct);
static PHP_METHOD(Phalcon_Annotations_Adapter_Files, read);
static PHP_METHOD(Phalcon_Annotations_Adapter_Files, write);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_files___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_files_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_files_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_OBJ_INFO(0, data, Phalcon\\Annotations\\Reflection, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_adapter_files_method_entry) {
PHP_ME(Phalcon_Annotations_Adapter_Files, __construct, arginfo_phalcon_annotations_adapter_files___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Annotations_Adapter_Files, read, arginfo_phalcon_annotations_adapter_files_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter_Files, write, arginfo_phalcon_annotations_adapter_files_write, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_adapter_memory_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Adapter_Memory);
static PHP_METHOD(Phalcon_Annotations_Adapter_Memory, read);
static PHP_METHOD(Phalcon_Annotations_Adapter_Memory, write);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_memory_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_memory_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_OBJ_INFO(0, data, Phalcon\\Annotations\\Reflection, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_adapter_memory_method_entry) {
PHP_ME(Phalcon_Annotations_Adapter_Memory, read, arginfo_phalcon_annotations_adapter_memory_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter_Memory, write, arginfo_phalcon_annotations_adapter_memory_write, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_adapter_xcache_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Adapter_Xcache);
static PHP_METHOD(Phalcon_Annotations_Adapter_Xcache, read);
static PHP_METHOD(Phalcon_Annotations_Adapter_Xcache, write);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_xcache_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapter_xcache_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_OBJ_INFO(0, data, Phalcon\\Annotations\\Reflection, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_adapter_xcache_method_entry) {
PHP_ME(Phalcon_Annotations_Adapter_Xcache, read, arginfo_phalcon_annotations_adapter_xcache_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Adapter_Xcache, write, arginfo_phalcon_annotations_adapter_xcache_write, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_annotation_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Annotation);
static PHP_METHOD(Phalcon_Annotations_Annotation, __construct);
static PHP_METHOD(Phalcon_Annotations_Annotation, getName);
static PHP_METHOD(Phalcon_Annotations_Annotation, getExpression);
static PHP_METHOD(Phalcon_Annotations_Annotation, getExprArguments);
static PHP_METHOD(Phalcon_Annotations_Annotation, getArguments);
static PHP_METHOD(Phalcon_Annotations_Annotation, numberArguments);
static PHP_METHOD(Phalcon_Annotations_Annotation, getArgument);
static PHP_METHOD(Phalcon_Annotations_Annotation, hasArgument);
static PHP_METHOD(Phalcon_Annotations_Annotation, getNamedArgument);
static PHP_METHOD(Phalcon_Annotations_Annotation, getNamedParameter);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_annotation___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, reflectionData, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_annotation_getexpression, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expr, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_annotation_getargument, 0, 0, 1)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_annotation_hasargument, 0, 0, 1)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_annotation_getnamedargument, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_annotation_getnamedparameter, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_annotation_method_entry) {
PHP_ME(Phalcon_Annotations_Annotation, __construct, arginfo_phalcon_annotations_annotation___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Annotations_Annotation, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Annotation, getExpression, arginfo_phalcon_annotations_annotation_getexpression, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Annotation, getExprArguments, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Annotation, getArguments, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Annotation, numberArguments, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Annotation, getArgument, arginfo_phalcon_annotations_annotation_getargument, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Annotation, hasArgument, arginfo_phalcon_annotations_annotation_hasargument, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Annotation, getNamedArgument, arginfo_phalcon_annotations_annotation_getnamedargument, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Annotation, getNamedParameter, arginfo_phalcon_annotations_annotation_getnamedparameter, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_collection_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Collection);
static PHP_METHOD(Phalcon_Annotations_Collection, __construct);
static PHP_METHOD(Phalcon_Annotations_Collection, count);
static PHP_METHOD(Phalcon_Annotations_Collection, rewind);
static PHP_METHOD(Phalcon_Annotations_Collection, current);
static PHP_METHOD(Phalcon_Annotations_Collection, key);
static PHP_METHOD(Phalcon_Annotations_Collection, next);
static PHP_METHOD(Phalcon_Annotations_Collection, valid);
static PHP_METHOD(Phalcon_Annotations_Collection, getAnnotations);
static PHP_METHOD(Phalcon_Annotations_Collection, get);
static PHP_METHOD(Phalcon_Annotations_Collection, getAll);
static PHP_METHOD(Phalcon_Annotations_Collection, has);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_collection___construct, 0, 0, 0)
ZEND_ARG_INFO(0, reflectionData)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_collection_get, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_collection_getall, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_collection_has, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_collection_method_entry) {
PHP_ME(Phalcon_Annotations_Collection, __construct, arginfo_phalcon_annotations_collection___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Annotations_Collection, count, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Collection, rewind, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Collection, current, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Collection, key, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Collection, next, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Collection, valid, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Collection, getAnnotations, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Collection, get, arginfo_phalcon_annotations_collection_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Collection, getAll, arginfo_phalcon_annotations_collection_getall, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Collection, has, arginfo_phalcon_annotations_collection_has, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Exception);
zend_class_entry *phalcon_annotations_reader_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Reader);
static PHP_METHOD(Phalcon_Annotations_Reader, parse);
static PHP_METHOD(Phalcon_Annotations_Reader, parseDocBlock);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_reader_parse, 0, 0, 1)
ZEND_ARG_INFO(0, className)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_reader_parsedocblock, 0, 0, 1)
ZEND_ARG_INFO(0, docBlock)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, line)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_reader_method_entry) {
PHP_ME(Phalcon_Annotations_Reader, parse, arginfo_phalcon_annotations_reader_parse, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Reader, parseDocBlock, arginfo_phalcon_annotations_reader_parsedocblock, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_annotations_reflection_ce;
ZEPHIR_INIT_CLASS(Phalcon_Annotations_Reflection);
static PHP_METHOD(Phalcon_Annotations_Reflection, __construct);
static PHP_METHOD(Phalcon_Annotations_Reflection, getClassAnnotations);
static PHP_METHOD(Phalcon_Annotations_Reflection, getMethodsAnnotations);
static PHP_METHOD(Phalcon_Annotations_Reflection, getPropertiesAnnotations);
static PHP_METHOD(Phalcon_Annotations_Reflection, getReflectionData);
static PHP_METHOD(Phalcon_Annotations_Reflection, __set_state);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_reflection___construct, 0, 0, 0)
ZEND_ARG_INFO(0, reflectionData)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_reflection___set_state, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_annotations_reflection_method_entry) {
PHP_ME(Phalcon_Annotations_Reflection, __construct, arginfo_phalcon_annotations_reflection___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Annotations_Reflection, getClassAnnotations, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Reflection, getMethodsAnnotations, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Reflection, getPropertiesAnnotations, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Reflection, getReflectionData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Annotations_Reflection, __set_state, arginfo_phalcon_annotations_reflection___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_assets_collection_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Collection);
static PHP_METHOD(Phalcon_Assets_Collection, getPrefix);
static PHP_METHOD(Phalcon_Assets_Collection, getLocal);
static PHP_METHOD(Phalcon_Assets_Collection, getResources);
static PHP_METHOD(Phalcon_Assets_Collection, getCodes);
static PHP_METHOD(Phalcon_Assets_Collection, getPosition);
static PHP_METHOD(Phalcon_Assets_Collection, getFilters);
static PHP_METHOD(Phalcon_Assets_Collection, getAttributes);
static PHP_METHOD(Phalcon_Assets_Collection, getJoin);
static PHP_METHOD(Phalcon_Assets_Collection, getTargetUri);
static PHP_METHOD(Phalcon_Assets_Collection, getTargetPath);
static PHP_METHOD(Phalcon_Assets_Collection, getTargetLocal);
static PHP_METHOD(Phalcon_Assets_Collection, getSourcePath);
static PHP_METHOD(Phalcon_Assets_Collection, add);
static PHP_METHOD(Phalcon_Assets_Collection, addInline);
static PHP_METHOD(Phalcon_Assets_Collection, addCss);
static PHP_METHOD(Phalcon_Assets_Collection, addInlineCss);
static PHP_METHOD(Phalcon_Assets_Collection, addJs);
static PHP_METHOD(Phalcon_Assets_Collection, addInlineJs);
static PHP_METHOD(Phalcon_Assets_Collection, count);
static PHP_METHOD(Phalcon_Assets_Collection, rewind);
static PHP_METHOD(Phalcon_Assets_Collection, current);
static PHP_METHOD(Phalcon_Assets_Collection, key);
static PHP_METHOD(Phalcon_Assets_Collection, next);
static PHP_METHOD(Phalcon_Assets_Collection, valid);
static PHP_METHOD(Phalcon_Assets_Collection, setTargetPath);
static PHP_METHOD(Phalcon_Assets_Collection, setSourcePath);
static PHP_METHOD(Phalcon_Assets_Collection, setTargetUri);
static PHP_METHOD(Phalcon_Assets_Collection, setPrefix);
static PHP_METHOD(Phalcon_Assets_Collection, setLocal);
static PHP_METHOD(Phalcon_Assets_Collection, setAttributes);
static PHP_METHOD(Phalcon_Assets_Collection, setFilters);
static PHP_METHOD(Phalcon_Assets_Collection, setTargetLocal);
static PHP_METHOD(Phalcon_Assets_Collection, join);
static PHP_METHOD(Phalcon_Assets_Collection, getRealTargetPath);
static PHP_METHOD(Phalcon_Assets_Collection, addFilter);
zend_object *zephir_init_properties_Phalcon_Assets_Collection(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_add, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, resource, Phalcon\\Assets\\Resource, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_addinline, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, code, Phalcon\\Assets\\Inline, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_addcss, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, local)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_addinlinecss, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_addjs, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, local)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_addinlinejs, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_settargetpath, 0, 0, 1)
ZEND_ARG_INFO(0, targetPath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_setsourcepath, 0, 0, 1)
ZEND_ARG_INFO(0, sourcePath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_settargeturi, 0, 0, 1)
ZEND_ARG_INFO(0, targetUri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_setprefix, 0, 0, 1)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_setlocal, 0, 0, 1)
ZEND_ARG_INFO(0, local)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_setattributes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_setfilters, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, filters, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_settargetlocal, 0, 0, 1)
ZEND_ARG_INFO(0, targetLocal)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_join, 0, 0, 1)
ZEND_ARG_INFO(0, join)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_getrealtargetpath, 0, 0, 1)
ZEND_ARG_INFO(0, basePath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_collection_addfilter, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, filter, Phalcon\\Assets\\FilterInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_collection_method_entry) {
PHP_ME(Phalcon_Assets_Collection, getPrefix, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getLocal, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getResources, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getCodes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getPosition, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getFilters, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getAttributes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getJoin, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getTargetUri, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getTargetPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getTargetLocal, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getSourcePath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, add, arginfo_phalcon_assets_collection_add, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, addInline, arginfo_phalcon_assets_collection_addinline, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, addCss, arginfo_phalcon_assets_collection_addcss, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, addInlineCss, arginfo_phalcon_assets_collection_addinlinecss, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, addJs, arginfo_phalcon_assets_collection_addjs, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, addInlineJs, arginfo_phalcon_assets_collection_addinlinejs, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, count, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, rewind, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, current, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, key, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, next, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, valid, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, setTargetPath, arginfo_phalcon_assets_collection_settargetpath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, setSourcePath, arginfo_phalcon_assets_collection_setsourcepath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, setTargetUri, arginfo_phalcon_assets_collection_settargeturi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, setPrefix, arginfo_phalcon_assets_collection_setprefix, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, setLocal, arginfo_phalcon_assets_collection_setlocal, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, setAttributes, arginfo_phalcon_assets_collection_setattributes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, setFilters, arginfo_phalcon_assets_collection_setfilters, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, setTargetLocal, arginfo_phalcon_assets_collection_settargetlocal, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, join, arginfo_phalcon_assets_collection_join, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, getRealTargetPath, arginfo_phalcon_assets_collection_getrealtargetpath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Collection, addFilter, arginfo_phalcon_assets_collection_addfilter, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_assets_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Exception);
zend_class_entry *phalcon_assets_filters_cssmin_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Filters_Cssmin);
static PHP_METHOD(Phalcon_Assets_Filters_Cssmin, filter);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_filters_cssmin_filter, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_filters_cssmin_method_entry) {
PHP_ME(Phalcon_Assets_Filters_Cssmin, filter, arginfo_phalcon_assets_filters_cssmin_filter, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_assets_filters_jsmin_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Filters_Jsmin);
static PHP_METHOD(Phalcon_Assets_Filters_Jsmin, filter);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_filters_jsmin_filter, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_filters_jsmin_method_entry) {
PHP_ME(Phalcon_Assets_Filters_Jsmin, filter, arginfo_phalcon_assets_filters_jsmin_filter, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_assets_filters_none_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Filters_None);
static PHP_METHOD(Phalcon_Assets_Filters_None, filter);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_filters_none_filter, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_filters_none_method_entry) {
PHP_ME(Phalcon_Assets_Filters_None, filter, arginfo_phalcon_assets_filters_none_filter, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_assets_inline_css_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Inline_Css);
static PHP_METHOD(Phalcon_Assets_Inline_Css, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_inline_css___construct, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_inline_css_method_entry) {
PHP_ME(Phalcon_Assets_Inline_Css, __construct, arginfo_phalcon_assets_inline_css___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_assets_inline_js_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Inline_Js);
static PHP_METHOD(Phalcon_Assets_Inline_Js, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_inline_js___construct, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_inline_js_method_entry) {
PHP_ME(Phalcon_Assets_Inline_Js, __construct, arginfo_phalcon_assets_inline_js___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_assets_manager_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Manager);
static PHP_METHOD(Phalcon_Assets_Manager, __construct);
static PHP_METHOD(Phalcon_Assets_Manager, setOptions);
static PHP_METHOD(Phalcon_Assets_Manager, getOptions);
static PHP_METHOD(Phalcon_Assets_Manager, useImplicitOutput);
static PHP_METHOD(Phalcon_Assets_Manager, addCss);
static PHP_METHOD(Phalcon_Assets_Manager, addInlineCss);
static PHP_METHOD(Phalcon_Assets_Manager, addJs);
static PHP_METHOD(Phalcon_Assets_Manager, addInlineJs);
static PHP_METHOD(Phalcon_Assets_Manager, addResourceByType);
static PHP_METHOD(Phalcon_Assets_Manager, addInlineCodeByType);
static PHP_METHOD(Phalcon_Assets_Manager, addResource);
static PHP_METHOD(Phalcon_Assets_Manager, addInlineCode);
static PHP_METHOD(Phalcon_Assets_Manager, set);
static PHP_METHOD(Phalcon_Assets_Manager, get);
static PHP_METHOD(Phalcon_Assets_Manager, getCss);
static PHP_METHOD(Phalcon_Assets_Manager, getJs);
static PHP_METHOD(Phalcon_Assets_Manager, collection);
static PHP_METHOD(Phalcon_Assets_Manager, output);
static PHP_METHOD(Phalcon_Assets_Manager, outputInline);
static PHP_METHOD(Phalcon_Assets_Manager, outputCss);
static PHP_METHOD(Phalcon_Assets_Manager, outputInlineCss);
static PHP_METHOD(Phalcon_Assets_Manager, outputJs);
static PHP_METHOD(Phalcon_Assets_Manager, outputInlineJs);
static PHP_METHOD(Phalcon_Assets_Manager, getCollections);
static PHP_METHOD(Phalcon_Assets_Manager, exists);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_setoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_useimplicitoutput, 0, 0, 1)
ZEND_ARG_INFO(0, implicitOutput)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_addcss, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, local)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_addinlinecss, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_addjs, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, local)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_addinlinejs, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_addresourcebytype, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, resource, Phalcon\\Assets\\Resource, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_addinlinecodebytype, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, code, Phalcon\\Assets\\Inline, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_addresource, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, resource, Phalcon\\Assets\\Resource, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_addinlinecode, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, code, Phalcon\\Assets\\Inline, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_set, 0, 0, 2)
ZEND_ARG_INFO(0, id)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Assets\\Collection, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_get, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_collection, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_output, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Assets\\Collection, 0)
ZEND_ARG_INFO(0, callback)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_outputinline, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Assets\\Collection, 0)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_outputcss, 0, 0, 0)
ZEND_ARG_INFO(0, collectionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_outputinlinecss, 0, 0, 0)
ZEND_ARG_INFO(0, collectionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_outputjs, 0, 0, 0)
ZEND_ARG_INFO(0, collectionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_outputinlinejs, 0, 0, 0)
ZEND_ARG_INFO(0, collectionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_manager_exists, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_manager_method_entry) {
PHP_ME(Phalcon_Assets_Manager, __construct, arginfo_phalcon_assets_manager___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Assets_Manager, setOptions, arginfo_phalcon_assets_manager_setoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, getOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, useImplicitOutput, arginfo_phalcon_assets_manager_useimplicitoutput, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, addCss, arginfo_phalcon_assets_manager_addcss, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, addInlineCss, arginfo_phalcon_assets_manager_addinlinecss, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, addJs, arginfo_phalcon_assets_manager_addjs, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, addInlineJs, arginfo_phalcon_assets_manager_addinlinejs, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, addResourceByType, arginfo_phalcon_assets_manager_addresourcebytype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, addInlineCodeByType, arginfo_phalcon_assets_manager_addinlinecodebytype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, addResource, arginfo_phalcon_assets_manager_addresource, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, addInlineCode, arginfo_phalcon_assets_manager_addinlinecode, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, set, arginfo_phalcon_assets_manager_set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, get, arginfo_phalcon_assets_manager_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, getCss, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, getJs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, collection, arginfo_phalcon_assets_manager_collection, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, output, arginfo_phalcon_assets_manager_output, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, outputInline, arginfo_phalcon_assets_manager_outputinline, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, outputCss, arginfo_phalcon_assets_manager_outputcss, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, outputInlineCss, arginfo_phalcon_assets_manager_outputinlinecss, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, outputJs, arginfo_phalcon_assets_manager_outputjs, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, outputInlineJs, arginfo_phalcon_assets_manager_outputinlinejs, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, getCollections, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Assets_Manager, exists, arginfo_phalcon_assets_manager_exists, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_assets_resource_css_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Resource_Css);
static PHP_METHOD(Phalcon_Assets_Resource_Css, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_css___construct, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, local)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_resource_css_method_entry) {
PHP_ME(Phalcon_Assets_Resource_Css, __construct, arginfo_phalcon_assets_resource_css___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_assets_resource_js_ce;
ZEPHIR_INIT_CLASS(Phalcon_Assets_Resource_Js);
static PHP_METHOD(Phalcon_Assets_Resource_Js, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_assets_resource_js___construct, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, local)
ZEND_ARG_INFO(0, filter)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_assets_resource_js_method_entry) {
PHP_ME(Phalcon_Assets_Resource_Js, __construct, arginfo_phalcon_assets_resource_js___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backend_apc_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Backend_Apc);
static PHP_METHOD(Phalcon_Cache_Backend_Apc, get);
static PHP_METHOD(Phalcon_Cache_Backend_Apc, save);
static PHP_METHOD(Phalcon_Cache_Backend_Apc, increment);
static PHP_METHOD(Phalcon_Cache_Backend_Apc, decrement);
static PHP_METHOD(Phalcon_Cache_Backend_Apc, delete);
static PHP_METHOD(Phalcon_Cache_Backend_Apc, queryKeys);
static PHP_METHOD(Phalcon_Cache_Backend_Apc, exists);
static PHP_METHOD(Phalcon_Cache_Backend_Apc, flush);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_apc_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_apc_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_apc_increment, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_apc_decrement, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_apc_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_apc_querykeys, 0, 0, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_apc_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backend_apc_method_entry) {
PHP_ME(Phalcon_Cache_Backend_Apc, get, arginfo_phalcon_cache_backend_apc_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Apc, save, arginfo_phalcon_cache_backend_apc_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Apc, increment, arginfo_phalcon_cache_backend_apc_increment, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Apc, decrement, arginfo_phalcon_cache_backend_apc_decrement, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Apc, delete, arginfo_phalcon_cache_backend_apc_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Apc, queryKeys, arginfo_phalcon_cache_backend_apc_querykeys, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Apc, exists, arginfo_phalcon_cache_backend_apc_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Apc, flush, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backend_file_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Backend_File);
static PHP_METHOD(Phalcon_Cache_Backend_File, __construct);
static PHP_METHOD(Phalcon_Cache_Backend_File, get);
static PHP_METHOD(Phalcon_Cache_Backend_File, save);
static PHP_METHOD(Phalcon_Cache_Backend_File, delete);
static PHP_METHOD(Phalcon_Cache_Backend_File, queryKeys);
static PHP_METHOD(Phalcon_Cache_Backend_File, exists);
static PHP_METHOD(Phalcon_Cache_Backend_File, increment);
static PHP_METHOD(Phalcon_Cache_Backend_File, decrement);
static PHP_METHOD(Phalcon_Cache_Backend_File, flush);
static PHP_METHOD(Phalcon_Cache_Backend_File, getKey);
static PHP_METHOD(Phalcon_Cache_Backend_File, useSafeKey);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file___construct, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, frontend, Phalcon\\Cache\\FrontendInterface, 0)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file_querykeys, 0, 0, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file_increment, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file_decrement, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file_getkey, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_file_usesafekey, 0, 0, 1)
ZEND_ARG_INFO(0, useSafeKey)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backend_file_method_entry) {
PHP_ME(Phalcon_Cache_Backend_File, __construct, arginfo_phalcon_cache_backend_file___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Backend_File, get, arginfo_phalcon_cache_backend_file_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_File, save, arginfo_phalcon_cache_backend_file_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_File, delete, arginfo_phalcon_cache_backend_file_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_File, queryKeys, arginfo_phalcon_cache_backend_file_querykeys, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_File, exists, arginfo_phalcon_cache_backend_file_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_File, increment, arginfo_phalcon_cache_backend_file_increment, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_File, decrement, arginfo_phalcon_cache_backend_file_decrement, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_File, flush, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_File, getKey, arginfo_phalcon_cache_backend_file_getkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_File, useSafeKey, arginfo_phalcon_cache_backend_file_usesafekey, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backend_libmemcached_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Backend_Libmemcached);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, __construct);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, _connect);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, get);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, save);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, delete);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, queryKeys);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, exists);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, increment);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, decrement);
static PHP_METHOD(Phalcon_Cache_Backend_Libmemcached, flush);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_libmemcached___construct, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, frontend, Phalcon\\Cache\\FrontendInterface, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_libmemcached_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_libmemcached_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_libmemcached_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_libmemcached_querykeys, 0, 0, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_libmemcached_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_libmemcached_increment, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_libmemcached_decrement, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backend_libmemcached_method_entry) {
PHP_ME(Phalcon_Cache_Backend_Libmemcached, __construct, arginfo_phalcon_cache_backend_libmemcached___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Backend_Libmemcached, _connect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Libmemcached, get, arginfo_phalcon_cache_backend_libmemcached_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Libmemcached, save, arginfo_phalcon_cache_backend_libmemcached_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Libmemcached, delete, arginfo_phalcon_cache_backend_libmemcached_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Libmemcached, queryKeys, arginfo_phalcon_cache_backend_libmemcached_querykeys, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Libmemcached, exists, arginfo_phalcon_cache_backend_libmemcached_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Libmemcached, increment, arginfo_phalcon_cache_backend_libmemcached_increment, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Libmemcached, decrement, arginfo_phalcon_cache_backend_libmemcached_decrement, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Libmemcached, flush, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backend_memcache_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Backend_Memcache);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, __construct);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, _connect);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, addServers);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, get);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, save);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, delete);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, queryKeys);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, exists);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, increment);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, decrement);
static PHP_METHOD(Phalcon_Cache_Backend_Memcache, flush);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memcache___construct, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, frontend, Phalcon\\Cache\\FrontendInterface, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memcache_addservers, 0, 0, 2)
ZEND_ARG_INFO(0, host)
ZEND_ARG_INFO(0, port)
ZEND_ARG_INFO(0, persistent)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memcache_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memcache_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memcache_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memcache_querykeys, 0, 0, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memcache_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memcache_increment, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memcache_decrement, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backend_memcache_method_entry) {
PHP_ME(Phalcon_Cache_Backend_Memcache, __construct, arginfo_phalcon_cache_backend_memcache___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Backend_Memcache, _connect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memcache, addServers, arginfo_phalcon_cache_backend_memcache_addservers, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memcache, get, arginfo_phalcon_cache_backend_memcache_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memcache, save, arginfo_phalcon_cache_backend_memcache_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memcache, delete, arginfo_phalcon_cache_backend_memcache_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memcache, queryKeys, arginfo_phalcon_cache_backend_memcache_querykeys, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memcache, exists, arginfo_phalcon_cache_backend_memcache_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memcache, increment, arginfo_phalcon_cache_backend_memcache_increment, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memcache, decrement, arginfo_phalcon_cache_backend_memcache_decrement, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memcache, flush, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backend_memory_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Backend_Memory);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, get);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, save);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, delete);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, queryKeys);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, exists);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, increment);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, decrement);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, flush);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, serialize);
static PHP_METHOD(Phalcon_Cache_Backend_Memory, unserialize);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memory_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memory_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memory_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memory_querykeys, 0, 0, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memory_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memory_increment, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memory_decrement, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_memory_unserialize, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backend_memory_method_entry) {
PHP_ME(Phalcon_Cache_Backend_Memory, get, arginfo_phalcon_cache_backend_memory_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memory, save, arginfo_phalcon_cache_backend_memory_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memory, delete, arginfo_phalcon_cache_backend_memory_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memory, queryKeys, arginfo_phalcon_cache_backend_memory_querykeys, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memory, exists, arginfo_phalcon_cache_backend_memory_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memory, increment, arginfo_phalcon_cache_backend_memory_increment, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memory, decrement, arginfo_phalcon_cache_backend_memory_decrement, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memory, flush, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memory, serialize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Memory, unserialize, arginfo_phalcon_cache_backend_memory_unserialize, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backend_mongo_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Backend_Mongo);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, __construct);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, _getCollection);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, get);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, save);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, delete);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, queryKeys);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, exists);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, gc);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, increment);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, decrement);
static PHP_METHOD(Phalcon_Cache_Backend_Mongo, flush);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_mongo___construct, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, frontend, Phalcon\\Cache\\FrontendInterface, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_mongo_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_mongo_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_mongo_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_mongo_querykeys, 0, 0, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_mongo_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_mongo_increment, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_mongo_decrement, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backend_mongo_method_entry) {
PHP_ME(Phalcon_Cache_Backend_Mongo, __construct, arginfo_phalcon_cache_backend_mongo___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Backend_Mongo, _getCollection, NULL, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Cache_Backend_Mongo, get, arginfo_phalcon_cache_backend_mongo_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Mongo, save, arginfo_phalcon_cache_backend_mongo_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Mongo, delete, arginfo_phalcon_cache_backend_mongo_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Mongo, queryKeys, arginfo_phalcon_cache_backend_mongo_querykeys, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Mongo, exists, arginfo_phalcon_cache_backend_mongo_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Mongo, gc, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Mongo, increment, arginfo_phalcon_cache_backend_mongo_increment, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Mongo, decrement, arginfo_phalcon_cache_backend_mongo_decrement, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Mongo, flush, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backend_redis_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Backend_Redis);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, __construct);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, _connect);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, get);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, save);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, delete);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, queryKeys);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, exists);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, increment);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, decrement);
static PHP_METHOD(Phalcon_Cache_Backend_Redis, flush);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_redis___construct, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, frontend, Phalcon\\Cache\\FrontendInterface, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_redis_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_redis_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_redis_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_redis_querykeys, 0, 0, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_redis_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_redis_increment, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_redis_decrement, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backend_redis_method_entry) {
PHP_ME(Phalcon_Cache_Backend_Redis, __construct, arginfo_phalcon_cache_backend_redis___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Backend_Redis, _connect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Redis, get, arginfo_phalcon_cache_backend_redis_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Redis, save, arginfo_phalcon_cache_backend_redis_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Redis, delete, arginfo_phalcon_cache_backend_redis_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Redis, queryKeys, arginfo_phalcon_cache_backend_redis_querykeys, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Redis, exists, arginfo_phalcon_cache_backend_redis_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Redis, increment, arginfo_phalcon_cache_backend_redis_increment, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Redis, decrement, arginfo_phalcon_cache_backend_redis_decrement, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Redis, flush, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_backend_xcache_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Backend_Xcache);
static PHP_METHOD(Phalcon_Cache_Backend_Xcache, __construct);
static PHP_METHOD(Phalcon_Cache_Backend_Xcache, get);
static PHP_METHOD(Phalcon_Cache_Backend_Xcache, save);
static PHP_METHOD(Phalcon_Cache_Backend_Xcache, delete);
static PHP_METHOD(Phalcon_Cache_Backend_Xcache, queryKeys);
static PHP_METHOD(Phalcon_Cache_Backend_Xcache, exists);
static PHP_METHOD(Phalcon_Cache_Backend_Xcache, increment);
static PHP_METHOD(Phalcon_Cache_Backend_Xcache, decrement);
static PHP_METHOD(Phalcon_Cache_Backend_Xcache, flush);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_xcache___construct, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, frontend, Phalcon\\Cache\\FrontendInterface, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_xcache_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_xcache_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_xcache_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_xcache_querykeys, 0, 0, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_xcache_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_xcache_increment, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_backend_xcache_decrement, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_backend_xcache_method_entry) {
PHP_ME(Phalcon_Cache_Backend_Xcache, __construct, arginfo_phalcon_cache_backend_xcache___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Backend_Xcache, get, arginfo_phalcon_cache_backend_xcache_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Xcache, save, arginfo_phalcon_cache_backend_xcache_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Xcache, delete, arginfo_phalcon_cache_backend_xcache_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Xcache, queryKeys, arginfo_phalcon_cache_backend_xcache_querykeys, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Xcache, exists, arginfo_phalcon_cache_backend_xcache_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Xcache, increment, arginfo_phalcon_cache_backend_xcache_increment, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Xcache, decrement, arginfo_phalcon_cache_backend_xcache_decrement, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Backend_Xcache, flush, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Exception);
zend_class_entry *phalcon_cache_frontend_base64_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Frontend_Base64);
static PHP_METHOD(Phalcon_Cache_Frontend_Base64, __construct);
static PHP_METHOD(Phalcon_Cache_Frontend_Base64, getLifetime);
static PHP_METHOD(Phalcon_Cache_Frontend_Base64, isBuffering);
static PHP_METHOD(Phalcon_Cache_Frontend_Base64, start);
static PHP_METHOD(Phalcon_Cache_Frontend_Base64, getContent);
static PHP_METHOD(Phalcon_Cache_Frontend_Base64, stop);
static PHP_METHOD(Phalcon_Cache_Frontend_Base64, beforeStore);
static PHP_METHOD(Phalcon_Cache_Frontend_Base64, afterRetrieve);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_base64___construct, 0, 0, 0)
ZEND_ARG_INFO(0, frontendOptions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_base64_beforestore, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_base64_afterretrieve, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_frontend_base64_method_entry) {
PHP_ME(Phalcon_Cache_Frontend_Base64, __construct, arginfo_phalcon_cache_frontend_base64___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Frontend_Base64, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Base64, isBuffering, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Base64, start, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Base64, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Base64, stop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Base64, beforeStore, arginfo_phalcon_cache_frontend_base64_beforestore, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Base64, afterRetrieve, arginfo_phalcon_cache_frontend_base64_afterretrieve, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_frontend_igbinary_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Frontend_Igbinary);
static PHP_METHOD(Phalcon_Cache_Frontend_Igbinary, __construct);
static PHP_METHOD(Phalcon_Cache_Frontend_Igbinary, getLifetime);
static PHP_METHOD(Phalcon_Cache_Frontend_Igbinary, isBuffering);
static PHP_METHOD(Phalcon_Cache_Frontend_Igbinary, start);
static PHP_METHOD(Phalcon_Cache_Frontend_Igbinary, getContent);
static PHP_METHOD(Phalcon_Cache_Frontend_Igbinary, stop);
static PHP_METHOD(Phalcon_Cache_Frontend_Igbinary, beforeStore);
static PHP_METHOD(Phalcon_Cache_Frontend_Igbinary, afterRetrieve);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_igbinary___construct, 0, 0, 0)
ZEND_ARG_INFO(0, frontendOptions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_igbinary_beforestore, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_igbinary_afterretrieve, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_frontend_igbinary_method_entry) {
PHP_ME(Phalcon_Cache_Frontend_Igbinary, __construct, arginfo_phalcon_cache_frontend_igbinary___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Frontend_Igbinary, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Igbinary, isBuffering, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Igbinary, start, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Igbinary, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Igbinary, stop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Igbinary, beforeStore, arginfo_phalcon_cache_frontend_igbinary_beforestore, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Igbinary, afterRetrieve, arginfo_phalcon_cache_frontend_igbinary_afterretrieve, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_frontend_json_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Frontend_Json);
static PHP_METHOD(Phalcon_Cache_Frontend_Json, __construct);
static PHP_METHOD(Phalcon_Cache_Frontend_Json, getLifetime);
static PHP_METHOD(Phalcon_Cache_Frontend_Json, isBuffering);
static PHP_METHOD(Phalcon_Cache_Frontend_Json, start);
static PHP_METHOD(Phalcon_Cache_Frontend_Json, getContent);
static PHP_METHOD(Phalcon_Cache_Frontend_Json, stop);
static PHP_METHOD(Phalcon_Cache_Frontend_Json, beforeStore);
static PHP_METHOD(Phalcon_Cache_Frontend_Json, afterRetrieve);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_json___construct, 0, 0, 0)
ZEND_ARG_INFO(0, frontendOptions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_json_beforestore, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_json_afterretrieve, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_frontend_json_method_entry) {
PHP_ME(Phalcon_Cache_Frontend_Json, __construct, arginfo_phalcon_cache_frontend_json___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Frontend_Json, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Json, isBuffering, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Json, start, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Json, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Json, stop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Json, beforeStore, arginfo_phalcon_cache_frontend_json_beforestore, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Json, afterRetrieve, arginfo_phalcon_cache_frontend_json_afterretrieve, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_frontend_msgpack_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Frontend_Msgpack);
static PHP_METHOD(Phalcon_Cache_Frontend_Msgpack, __construct);
static PHP_METHOD(Phalcon_Cache_Frontend_Msgpack, getLifetime);
static PHP_METHOD(Phalcon_Cache_Frontend_Msgpack, isBuffering);
static PHP_METHOD(Phalcon_Cache_Frontend_Msgpack, start);
static PHP_METHOD(Phalcon_Cache_Frontend_Msgpack, getContent);
static PHP_METHOD(Phalcon_Cache_Frontend_Msgpack, stop);
static PHP_METHOD(Phalcon_Cache_Frontend_Msgpack, beforeStore);
static PHP_METHOD(Phalcon_Cache_Frontend_Msgpack, afterRetrieve);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_msgpack___construct, 0, 0, 0)
ZEND_ARG_INFO(0, frontendOptions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_msgpack_beforestore, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_msgpack_afterretrieve, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_frontend_msgpack_method_entry) {
PHP_ME(Phalcon_Cache_Frontend_Msgpack, __construct, arginfo_phalcon_cache_frontend_msgpack___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Frontend_Msgpack, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Msgpack, isBuffering, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Msgpack, start, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Msgpack, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Msgpack, stop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Msgpack, beforeStore, arginfo_phalcon_cache_frontend_msgpack_beforestore, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Msgpack, afterRetrieve, arginfo_phalcon_cache_frontend_msgpack_afterretrieve, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_frontend_none_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Frontend_None);
static PHP_METHOD(Phalcon_Cache_Frontend_None, getLifetime);
static PHP_METHOD(Phalcon_Cache_Frontend_None, isBuffering);
static PHP_METHOD(Phalcon_Cache_Frontend_None, start);
static PHP_METHOD(Phalcon_Cache_Frontend_None, getContent);
static PHP_METHOD(Phalcon_Cache_Frontend_None, stop);
static PHP_METHOD(Phalcon_Cache_Frontend_None, beforeStore);
static PHP_METHOD(Phalcon_Cache_Frontend_None, afterRetrieve);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_none_beforestore, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_none_afterretrieve, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_frontend_none_method_entry) {
PHP_ME(Phalcon_Cache_Frontend_None, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_None, isBuffering, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_None, start, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_None, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_None, stop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_None, beforeStore, arginfo_phalcon_cache_frontend_none_beforestore, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_None, afterRetrieve, arginfo_phalcon_cache_frontend_none_afterretrieve, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_frontend_output_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Frontend_Output);
static PHP_METHOD(Phalcon_Cache_Frontend_Output, __construct);
static PHP_METHOD(Phalcon_Cache_Frontend_Output, getLifetime);
static PHP_METHOD(Phalcon_Cache_Frontend_Output, isBuffering);
static PHP_METHOD(Phalcon_Cache_Frontend_Output, start);
static PHP_METHOD(Phalcon_Cache_Frontend_Output, getContent);
static PHP_METHOD(Phalcon_Cache_Frontend_Output, stop);
static PHP_METHOD(Phalcon_Cache_Frontend_Output, beforeStore);
static PHP_METHOD(Phalcon_Cache_Frontend_Output, afterRetrieve);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_output___construct, 0, 0, 0)
ZEND_ARG_INFO(0, frontendOptions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_output_beforestore, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_frontend_output_afterretrieve, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_frontend_output_method_entry) {
PHP_ME(Phalcon_Cache_Frontend_Output, __construct, arginfo_phalcon_cache_frontend_output___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Frontend_Output, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Output, isBuffering, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Output, start, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Output, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Output, stop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Output, beforeStore, arginfo_phalcon_cache_frontend_output_beforestore, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Frontend_Output, afterRetrieve, arginfo_phalcon_cache_frontend_output_afterretrieve, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cache_multiple_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cache_Multiple);
static PHP_METHOD(Phalcon_Cache_Multiple, __construct);
static PHP_METHOD(Phalcon_Cache_Multiple, push);
static PHP_METHOD(Phalcon_Cache_Multiple, get);
static PHP_METHOD(Phalcon_Cache_Multiple, start);
static PHP_METHOD(Phalcon_Cache_Multiple, save);
static PHP_METHOD(Phalcon_Cache_Multiple, delete);
static PHP_METHOD(Phalcon_Cache_Multiple, exists);
static PHP_METHOD(Phalcon_Cache_Multiple, flush);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_multiple___construct, 0, 0, 0)
ZEND_ARG_INFO(0, backends)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_multiple_push, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, backend, Phalcon\\Cache\\BackendInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_multiple_get, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_multiple_start, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_multiple_save, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, lifetime)
ZEND_ARG_INFO(0, stopBuffer)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_multiple_delete, 0, 0, 1)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cache_multiple_exists, 0, 0, 0)
ZEND_ARG_INFO(0, keyName)
ZEND_ARG_INFO(0, lifetime)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cache_multiple_method_entry) {
PHP_ME(Phalcon_Cache_Multiple, __construct, arginfo_phalcon_cache_multiple___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cache_Multiple, push, arginfo_phalcon_cache_multiple_push, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Multiple, get, arginfo_phalcon_cache_multiple_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Multiple, start, arginfo_phalcon_cache_multiple_start, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Multiple, save, arginfo_phalcon_cache_multiple_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Multiple, delete, arginfo_phalcon_cache_multiple_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Multiple, exists, arginfo_phalcon_cache_multiple_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cache_Multiple, flush, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cli_console_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_Console);
static PHP_METHOD(Phalcon_Cli_Console, addModules);
static PHP_METHOD(Phalcon_Cli_Console, handle);
static PHP_METHOD(Phalcon_Cli_Console, setArgument);
zend_object *zephir_init_properties_Phalcon_Cli_Console(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_console_addmodules, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, modules, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_console_handle, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, arguments, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_console_setargument, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, arguments, 1)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, shift)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cli_console_method_entry) {
PHP_ME(Phalcon_Cli_Console, addModules, arginfo_phalcon_cli_console_addmodules, ZEND_ACC_DEPRECATED|ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Console, handle, arginfo_phalcon_cli_console_handle, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Console, setArgument, arginfo_phalcon_cli_console_setargument, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cli_console_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_Console_Exception);
zend_class_entry *phalcon_cli_dispatcher_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_Dispatcher);
static PHP_METHOD(Phalcon_Cli_Dispatcher, setTaskSuffix);
static PHP_METHOD(Phalcon_Cli_Dispatcher, setDefaultTask);
static PHP_METHOD(Phalcon_Cli_Dispatcher, setTaskName);
static PHP_METHOD(Phalcon_Cli_Dispatcher, getTaskName);
static PHP_METHOD(Phalcon_Cli_Dispatcher, _throwDispatchException);
static PHP_METHOD(Phalcon_Cli_Dispatcher, _handleException);
static PHP_METHOD(Phalcon_Cli_Dispatcher, getLastTask);
static PHP_METHOD(Phalcon_Cli_Dispatcher, getActiveTask);
static PHP_METHOD(Phalcon_Cli_Dispatcher, setOptions);
static PHP_METHOD(Phalcon_Cli_Dispatcher, getOptions);
static PHP_METHOD(Phalcon_Cli_Dispatcher, callActionMethod);
zend_object *zephir_init_properties_Phalcon_Cli_Dispatcher(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcher_settasksuffix, 0, 0, 1)
ZEND_ARG_INFO(0, taskSuffix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcher_setdefaulttask, 0, 0, 1)
ZEND_ARG_INFO(0, taskName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcher_settaskname, 0, 0, 1)
ZEND_ARG_INFO(0, taskName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcher__throwdispatchexception, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, exceptionCode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcher__handleexception, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, exception, Exception, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcher_setoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_dispatcher_callactionmethod, 0, 0, 2)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, actionMethod)
ZEND_ARG_ARRAY_INFO(0, params, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cli_dispatcher_method_entry) {
PHP_ME(Phalcon_Cli_Dispatcher, setTaskSuffix, arginfo_phalcon_cli_dispatcher_settasksuffix, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Dispatcher, setDefaultTask, arginfo_phalcon_cli_dispatcher_setdefaulttask, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Dispatcher, setTaskName, arginfo_phalcon_cli_dispatcher_settaskname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Dispatcher, getTaskName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Dispatcher, _throwDispatchException, arginfo_phalcon_cli_dispatcher__throwdispatchexception, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Cli_Dispatcher, _handleException, arginfo_phalcon_cli_dispatcher__handleexception, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Cli_Dispatcher, getLastTask, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Dispatcher, getActiveTask, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Dispatcher, setOptions, arginfo_phalcon_cli_dispatcher_setoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Dispatcher, getOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Dispatcher, callActionMethod, arginfo_phalcon_cli_dispatcher_callactionmethod, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cli_dispatcher_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_Dispatcher_Exception);
zend_class_entry *phalcon_cli_router_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_Router);
static PHP_METHOD(Phalcon_Cli_Router, __construct);
static PHP_METHOD(Phalcon_Cli_Router, setDI);
static PHP_METHOD(Phalcon_Cli_Router, getDI);
static PHP_METHOD(Phalcon_Cli_Router, setDefaultModule);
static PHP_METHOD(Phalcon_Cli_Router, setDefaultTask);
static PHP_METHOD(Phalcon_Cli_Router, setDefaultAction);
static PHP_METHOD(Phalcon_Cli_Router, setDefaults);
static PHP_METHOD(Phalcon_Cli_Router, handle);
static PHP_METHOD(Phalcon_Cli_Router, add);
static PHP_METHOD(Phalcon_Cli_Router, getModuleName);
static PHP_METHOD(Phalcon_Cli_Router, getTaskName);
static PHP_METHOD(Phalcon_Cli_Router, getActionName);
static PHP_METHOD(Phalcon_Cli_Router, getParams);
static PHP_METHOD(Phalcon_Cli_Router, getMatchedRoute);
static PHP_METHOD(Phalcon_Cli_Router, getMatches);
static PHP_METHOD(Phalcon_Cli_Router, wasMatched);
static PHP_METHOD(Phalcon_Cli_Router, getRoutes);
static PHP_METHOD(Phalcon_Cli_Router, getRouteById);
static PHP_METHOD(Phalcon_Cli_Router, getRouteByName);
zend_object *zephir_init_properties_Phalcon_Cli_Router(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router___construct, 0, 0, 0)
ZEND_ARG_INFO(0, defaultRoutes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_setdefaultmodule, 0, 0, 1)
ZEND_ARG_INFO(0, moduleName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_setdefaulttask, 0, 0, 1)
ZEND_ARG_INFO(0, taskName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_setdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, actionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_setdefaults, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, defaults, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_handle, 0, 0, 0)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_add, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_getroutebyid, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_getroutebyname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cli_router_method_entry) {
PHP_ME(Phalcon_Cli_Router, __construct, arginfo_phalcon_cli_router___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cli_Router, setDI, arginfo_phalcon_cli_router_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, setDefaultModule, arginfo_phalcon_cli_router_setdefaultmodule, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, setDefaultTask, arginfo_phalcon_cli_router_setdefaulttask, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, setDefaultAction, arginfo_phalcon_cli_router_setdefaultaction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, setDefaults, arginfo_phalcon_cli_router_setdefaults, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, handle, arginfo_phalcon_cli_router_handle, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, add, arginfo_phalcon_cli_router_add, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getModuleName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getTaskName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getActionName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getParams, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getMatchedRoute, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getMatches, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, wasMatched, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getRoutes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getRouteById, arginfo_phalcon_cli_router_getroutebyid, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router, getRouteByName, arginfo_phalcon_cli_router_getroutebyname, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cli_router_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_Router_Exception);
zend_class_entry *phalcon_cli_router_route_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_Router_Route);
static PHP_METHOD(Phalcon_Cli_Router_Route, __construct);
static PHP_METHOD(Phalcon_Cli_Router_Route, compilePattern);
static PHP_METHOD(Phalcon_Cli_Router_Route, extractNamedParams);
static PHP_METHOD(Phalcon_Cli_Router_Route, reConfigure);
static PHP_METHOD(Phalcon_Cli_Router_Route, getName);
static PHP_METHOD(Phalcon_Cli_Router_Route, setName);
static PHP_METHOD(Phalcon_Cli_Router_Route, beforeMatch);
static PHP_METHOD(Phalcon_Cli_Router_Route, getBeforeMatch);
static PHP_METHOD(Phalcon_Cli_Router_Route, getRouteId);
static PHP_METHOD(Phalcon_Cli_Router_Route, getPattern);
static PHP_METHOD(Phalcon_Cli_Router_Route, getCompiledPattern);
static PHP_METHOD(Phalcon_Cli_Router_Route, getPaths);
static PHP_METHOD(Phalcon_Cli_Router_Route, getReversedPaths);
static PHP_METHOD(Phalcon_Cli_Router_Route, convert);
static PHP_METHOD(Phalcon_Cli_Router_Route, getConverters);
static PHP_METHOD(Phalcon_Cli_Router_Route, reset);
static PHP_METHOD(Phalcon_Cli_Router_Route, delimiter);
static PHP_METHOD(Phalcon_Cli_Router_Route, getDelimiter);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_route___construct, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_route_compilepattern, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_route_extractnamedparams, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_route_reconfigure, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_route_setname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_route_beforematch, 0, 0, 1)
ZEND_ARG_INFO(0, callback)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_route_convert, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, converter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_route_delimiter, 0, 0, 0)
ZEND_ARG_INFO(0, delimiter)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cli_router_route_method_entry) {
PHP_ME(Phalcon_Cli_Router_Route, __construct, arginfo_phalcon_cli_router_route___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Cli_Router_Route, compilePattern, arginfo_phalcon_cli_router_route_compilepattern, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, extractNamedParams, arginfo_phalcon_cli_router_route_extractnamedparams, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, reConfigure, arginfo_phalcon_cli_router_route_reconfigure, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, setName, arginfo_phalcon_cli_router_route_setname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, beforeMatch, arginfo_phalcon_cli_router_route_beforematch, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, getBeforeMatch, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, getRouteId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, getPattern, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, getCompiledPattern, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, getPaths, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, getReversedPaths, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, convert, arginfo_phalcon_cli_router_route_convert, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, getConverters, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Cli_Router_Route, reset, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Cli_Router_Route, delimiter, arginfo_phalcon_cli_router_route_delimiter, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Cli_Router_Route, getDelimiter, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_cli_router_routeinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_Router_RouteInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_routeinterface_compilepattern, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_routeinterface_reconfigure, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_router_routeinterface_setname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cli_router_routeinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Cli_Router_RouteInterface, compilePattern, arginfo_phalcon_cli_router_routeinterface_compilepattern)
PHP_ABSTRACT_ME(Phalcon_Cli_Router_RouteInterface, reConfigure, arginfo_phalcon_cli_router_routeinterface_reconfigure)
PHP_ABSTRACT_ME(Phalcon_Cli_Router_RouteInterface, getName, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_Router_RouteInterface, setName, arginfo_phalcon_cli_router_routeinterface_setname)
PHP_ABSTRACT_ME(Phalcon_Cli_Router_RouteInterface, getRouteId, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_Router_RouteInterface, getPattern, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_Router_RouteInterface, getCompiledPattern, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_Router_RouteInterface, getPaths, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_Router_RouteInterface, getReversedPaths, NULL)
ZEND_FENTRY(reset, NULL, NULL, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_cli_routerinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_RouterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_routerinterface_setdefaultmodule, 0, 0, 1)
ZEND_ARG_INFO(0, moduleName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_routerinterface_setdefaulttask, 0, 0, 1)
ZEND_ARG_INFO(0, taskName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_routerinterface_setdefaultaction, 0, 0, 1)
ZEND_ARG_INFO(0, actionName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_routerinterface_setdefaults, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, defaults, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_routerinterface_handle, 0, 0, 0)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_routerinterface_add, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_routerinterface_getroutebyid, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_cli_routerinterface_getroutebyname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_cli_routerinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, setDefaultModule, arginfo_phalcon_cli_routerinterface_setdefaultmodule)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, setDefaultTask, arginfo_phalcon_cli_routerinterface_setdefaulttask)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, setDefaultAction, arginfo_phalcon_cli_routerinterface_setdefaultaction)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, setDefaults, arginfo_phalcon_cli_routerinterface_setdefaults)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, handle, arginfo_phalcon_cli_routerinterface_handle)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, add, arginfo_phalcon_cli_routerinterface_add)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, getModuleName, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, getTaskName, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, getActionName, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, getParams, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, getMatchedRoute, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, getMatches, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, wasMatched, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, getRoutes, NULL)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, getRouteById, arginfo_phalcon_cli_routerinterface_getroutebyid)
PHP_ABSTRACT_ME(Phalcon_Cli_RouterInterface, getRouteByName, arginfo_phalcon_cli_routerinterface_getroutebyname)
PHP_FE_END
};
zend_class_entry *phalcon_cli_task_ce;
ZEPHIR_INIT_CLASS(Phalcon_Cli_Task);
static PHP_METHOD(Phalcon_Cli_Task, __construct);
ZEPHIR_INIT_FUNCS(phalcon_cli_task_method_entry) {
PHP_ME(Phalcon_Cli_Task, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_config_adapter_ini_ce;
ZEPHIR_INIT_CLASS(Phalcon_Config_Adapter_Ini);
static PHP_METHOD(Phalcon_Config_Adapter_Ini, __construct);
static PHP_METHOD(Phalcon_Config_Adapter_Ini, _parseIniString);
static PHP_METHOD(Phalcon_Config_Adapter_Ini, _cast);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_adapter_ini___construct, 0, 0, 1)
ZEND_ARG_INFO(0, filePath)
ZEND_ARG_INFO(0, mode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_adapter_ini__parseinistring, 0, 0, 2)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_adapter_ini__cast, 0, 0, 1)
ZEND_ARG_INFO(0, ini)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_config_adapter_ini_method_entry) {
PHP_ME(Phalcon_Config_Adapter_Ini, __construct, arginfo_phalcon_config_adapter_ini___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Config_Adapter_Ini, _parseIniString, arginfo_phalcon_config_adapter_ini__parseinistring, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Config_Adapter_Ini, _cast, arginfo_phalcon_config_adapter_ini__cast, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_config_adapter_json_ce;
ZEPHIR_INIT_CLASS(Phalcon_Config_Adapter_Json);
static PHP_METHOD(Phalcon_Config_Adapter_Json, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_adapter_json___construct, 0, 0, 1)
ZEND_ARG_INFO(0, filePath)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_config_adapter_json_method_entry) {
PHP_ME(Phalcon_Config_Adapter_Json, __construct, arginfo_phalcon_config_adapter_json___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_config_adapter_php_ce;
ZEPHIR_INIT_CLASS(Phalcon_Config_Adapter_Php);
static PHP_METHOD(Phalcon_Config_Adapter_Php, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_adapter_php___construct, 0, 0, 1)
ZEND_ARG_INFO(0, filePath)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_config_adapter_php_method_entry) {
PHP_ME(Phalcon_Config_Adapter_Php, __construct, arginfo_phalcon_config_adapter_php___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_config_adapter_yaml_ce;
ZEPHIR_INIT_CLASS(Phalcon_Config_Adapter_Yaml);
static PHP_METHOD(Phalcon_Config_Adapter_Yaml, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_config_adapter_yaml___construct, 0, 0, 1)
ZEND_ARG_INFO(0, filePath)
ZEND_ARG_ARRAY_INFO(0, callbacks, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_config_adapter_yaml_method_entry) {
PHP_ME(Phalcon_Config_Adapter_Yaml, __construct, arginfo_phalcon_config_adapter_yaml___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_config_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Config_Exception);
zend_class_entry *phalcon_crypt_ce;
ZEPHIR_INIT_CLASS(Phalcon_Crypt);
static PHP_METHOD(Phalcon_Crypt, setPadding);
static PHP_METHOD(Phalcon_Crypt, setCipher);
static PHP_METHOD(Phalcon_Crypt, getCipher);
static PHP_METHOD(Phalcon_Crypt, setKey);
static PHP_METHOD(Phalcon_Crypt, getKey);
static PHP_METHOD(Phalcon_Crypt, _cryptPadText);
static PHP_METHOD(Phalcon_Crypt, _cryptUnpadText);
static PHP_METHOD(Phalcon_Crypt, encrypt);
static PHP_METHOD(Phalcon_Crypt, decrypt);
static PHP_METHOD(Phalcon_Crypt, encryptBase64);
static PHP_METHOD(Phalcon_Crypt, decryptBase64);
static PHP_METHOD(Phalcon_Crypt, getAvailableCiphers);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_crypt_setpadding, 0, 0, 1)
ZEND_ARG_INFO(0, scheme)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_crypt_setcipher, 0, 0, 1)
ZEND_ARG_INFO(0, cipher)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_crypt_setkey, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_crypt__cryptpadtext, 0, 0, 4)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, mode)
ZEND_ARG_INFO(0, blockSize)
ZEND_ARG_INFO(0, paddingType)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_crypt__cryptunpadtext, 0, 0, 4)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, mode)
ZEND_ARG_INFO(0, blockSize)
ZEND_ARG_INFO(0, paddingType)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_crypt_encrypt, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_crypt_decrypt, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_crypt_encryptbase64, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, safe)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_crypt_decryptbase64, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, safe)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_crypt_method_entry) {
PHP_ME(Phalcon_Crypt, setPadding, arginfo_phalcon_crypt_setpadding, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Crypt, setCipher, arginfo_phalcon_crypt_setcipher, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Crypt, getCipher, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Crypt, setKey, arginfo_phalcon_crypt_setkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Crypt, getKey, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Crypt, _cryptPadText, arginfo_phalcon_crypt__cryptpadtext, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Crypt, _cryptUnpadText, arginfo_phalcon_crypt__cryptunpadtext, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Crypt, encrypt, arginfo_phalcon_crypt_encrypt, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Crypt, decrypt, arginfo_phalcon_crypt_decrypt, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Crypt, encryptBase64, arginfo_phalcon_crypt_encryptbase64, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Crypt, decryptBase64, arginfo_phalcon_crypt_decryptbase64, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Crypt, getAvailableCiphers, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_crypt_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Crypt_Exception);
zend_class_entry *phalcon_db_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db);
static PHP_METHOD(Phalcon_Db, setup);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_setup, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_method_entry) {
PHP_ME(Phalcon_Db, setup, arginfo_phalcon_db_setup, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_adapter_pdo_mysql_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Adapter_Pdo_Mysql);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Mysql, describeColumns);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Mysql, describeIndexes);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Mysql, describeReferences);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_mysql_describecolumns, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_mysql_describeindexes, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_mysql_describereferences, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_adapter_pdo_mysql_method_entry) {
PHP_ME(Phalcon_Db_Adapter_Pdo_Mysql, describeColumns, arginfo_phalcon_db_adapter_pdo_mysql_describecolumns, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Mysql, describeIndexes, arginfo_phalcon_db_adapter_pdo_mysql_describeindexes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Mysql, describeReferences, arginfo_phalcon_db_adapter_pdo_mysql_describereferences, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_adapter_pdo_postgresql_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Adapter_Pdo_Postgresql);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Postgresql, connect);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Postgresql, describeColumns);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Postgresql, createTable);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Postgresql, modifyColumn);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Postgresql, useExplicitIdValue);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Postgresql, getDefaultIdValue);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Postgresql, supportSequences);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_postgresql_connect, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, descriptor, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_postgresql_describecolumns, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_postgresql_createtable, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_postgresql_modifycolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_ARG_OBJ_INFO(0, currentColumn, Phalcon\\Db\\ColumnInterface, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_adapter_pdo_postgresql_method_entry) {
PHP_ME(Phalcon_Db_Adapter_Pdo_Postgresql, connect, arginfo_phalcon_db_adapter_pdo_postgresql_connect, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Postgresql, describeColumns, arginfo_phalcon_db_adapter_pdo_postgresql_describecolumns, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Postgresql, createTable, arginfo_phalcon_db_adapter_pdo_postgresql_createtable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Postgresql, modifyColumn, arginfo_phalcon_db_adapter_pdo_postgresql_modifycolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Postgresql, useExplicitIdValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Postgresql, getDefaultIdValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Postgresql, supportSequences, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_adapter_pdo_sqlite_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Adapter_Pdo_Sqlite);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Sqlite, connect);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Sqlite, describeColumns);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Sqlite, describeIndexes);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Sqlite, describeReferences);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Sqlite, useExplicitIdValue);
static PHP_METHOD(Phalcon_Db_Adapter_Pdo_Sqlite, getDefaultValue);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_sqlite_connect, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, descriptor, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_sqlite_describecolumns, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_sqlite_describeindexes, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_adapter_pdo_sqlite_describereferences, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_adapter_pdo_sqlite_method_entry) {
PHP_ME(Phalcon_Db_Adapter_Pdo_Sqlite, connect, arginfo_phalcon_db_adapter_pdo_sqlite_connect, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Sqlite, describeColumns, arginfo_phalcon_db_adapter_pdo_sqlite_describecolumns, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Sqlite, describeIndexes, arginfo_phalcon_db_adapter_pdo_sqlite_describeindexes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Sqlite, describeReferences, arginfo_phalcon_db_adapter_pdo_sqlite_describereferences, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Sqlite, useExplicitIdValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Adapter_Pdo_Sqlite, getDefaultValue, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_column_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Column);
static PHP_METHOD(Phalcon_Db_Column, getName);
static PHP_METHOD(Phalcon_Db_Column, getSchemaName);
static PHP_METHOD(Phalcon_Db_Column, getType);
static PHP_METHOD(Phalcon_Db_Column, getTypeReference);
static PHP_METHOD(Phalcon_Db_Column, getTypeValues);
static PHP_METHOD(Phalcon_Db_Column, getSize);
static PHP_METHOD(Phalcon_Db_Column, getScale);
static PHP_METHOD(Phalcon_Db_Column, getDefault);
static PHP_METHOD(Phalcon_Db_Column, __construct);
static PHP_METHOD(Phalcon_Db_Column, isUnsigned);
static PHP_METHOD(Phalcon_Db_Column, isNotNull);
static PHP_METHOD(Phalcon_Db_Column, isPrimary);
static PHP_METHOD(Phalcon_Db_Column, isAutoIncrement);
static PHP_METHOD(Phalcon_Db_Column, isNumeric);
static PHP_METHOD(Phalcon_Db_Column, isFirst);
static PHP_METHOD(Phalcon_Db_Column, getAfterPosition);
static PHP_METHOD(Phalcon_Db_Column, getBindType);
static PHP_METHOD(Phalcon_Db_Column, __set_state);
static PHP_METHOD(Phalcon_Db_Column, hasDefault);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_column___construct, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_column___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_column_method_entry) {
PHP_ME(Phalcon_Db_Column, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, getSchemaName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, getTypeReference, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, getTypeValues, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, getSize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, getScale, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, getDefault, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, __construct, arginfo_phalcon_db_column___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Db_Column, isUnsigned, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, isNotNull, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, isPrimary, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, isAutoIncrement, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, isNumeric, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, isFirst, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, getAfterPosition, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, getBindType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Column, __set_state, arginfo_phalcon_db_column___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Db_Column, hasDefault, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_dialect_mysql_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Dialect_Mysql);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, getColumnDefinition);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, addColumn);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, modifyColumn);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, dropColumn);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, addIndex);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, dropIndex);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, addPrimaryKey);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, dropPrimaryKey);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, addForeignKey);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, dropForeignKey);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, createTable);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, dropTable);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, createView);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, dropView);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, tableExists);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, viewExists);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, describeColumns);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, listTables);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, listViews);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, describeIndexes);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, describeReferences);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, tableOptions);
static PHP_METHOD(Phalcon_Db_Dialect_Mysql, _getTableOptions);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_getcolumndefinition, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_addcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_modifycolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_ARG_OBJ_INFO(0, currentColumn, Phalcon\\Db\\ColumnInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_dropcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, columnName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_addindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_dropindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, indexName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_addprimarykey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_dropprimarykey, 0, 0, 2)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_addforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, reference, Phalcon\\Db\\ReferenceInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_dropforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, referenceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_createtable, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_droptable, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_createview, 0, 0, 2)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_dropview, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_tableexists, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_viewexists, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_describecolumns, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_listtables, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_listviews, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_describeindexes, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_describereferences, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql_tableoptions, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_mysql__gettableoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_dialect_mysql_method_entry) {
PHP_ME(Phalcon_Db_Dialect_Mysql, getColumnDefinition, arginfo_phalcon_db_dialect_mysql_getcolumndefinition, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, addColumn, arginfo_phalcon_db_dialect_mysql_addcolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, modifyColumn, arginfo_phalcon_db_dialect_mysql_modifycolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, dropColumn, arginfo_phalcon_db_dialect_mysql_dropcolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, addIndex, arginfo_phalcon_db_dialect_mysql_addindex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, dropIndex, arginfo_phalcon_db_dialect_mysql_dropindex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, addPrimaryKey, arginfo_phalcon_db_dialect_mysql_addprimarykey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, dropPrimaryKey, arginfo_phalcon_db_dialect_mysql_dropprimarykey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, addForeignKey, arginfo_phalcon_db_dialect_mysql_addforeignkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, dropForeignKey, arginfo_phalcon_db_dialect_mysql_dropforeignkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, createTable, arginfo_phalcon_db_dialect_mysql_createtable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, dropTable, arginfo_phalcon_db_dialect_mysql_droptable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, createView, arginfo_phalcon_db_dialect_mysql_createview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, dropView, arginfo_phalcon_db_dialect_mysql_dropview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, tableExists, arginfo_phalcon_db_dialect_mysql_tableexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, viewExists, arginfo_phalcon_db_dialect_mysql_viewexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, describeColumns, arginfo_phalcon_db_dialect_mysql_describecolumns, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, listTables, arginfo_phalcon_db_dialect_mysql_listtables, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, listViews, arginfo_phalcon_db_dialect_mysql_listviews, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, describeIndexes, arginfo_phalcon_db_dialect_mysql_describeindexes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, describeReferences, arginfo_phalcon_db_dialect_mysql_describereferences, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, tableOptions, arginfo_phalcon_db_dialect_mysql_tableoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Mysql, _getTableOptions, arginfo_phalcon_db_dialect_mysql__gettableoptions, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_db_dialect_postgresql_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Dialect_Postgresql);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, getColumnDefinition);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, addColumn);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, modifyColumn);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, dropColumn);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, addIndex);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, dropIndex);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, addPrimaryKey);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, dropPrimaryKey);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, addForeignKey);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, dropForeignKey);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, createTable);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, dropTable);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, createView);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, dropView);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, tableExists);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, viewExists);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, describeColumns);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, listTables);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, listViews);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, describeIndexes);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, describeReferences);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, tableOptions);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, _castDefault);
static PHP_METHOD(Phalcon_Db_Dialect_Postgresql, _getTableOptions);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_getcolumndefinition, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_addcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_modifycolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_ARG_OBJ_INFO(0, currentColumn, Phalcon\\Db\\ColumnInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_dropcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, columnName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_addindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_dropindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, indexName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_addprimarykey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_dropprimarykey, 0, 0, 2)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_addforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, reference, Phalcon\\Db\\ReferenceInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_dropforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, referenceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_createtable, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_droptable, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_createview, 0, 0, 2)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_dropview, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_tableexists, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_viewexists, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_describecolumns, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_listtables, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_listviews, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_describeindexes, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_describereferences, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql_tableoptions, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql__castdefault, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_postgresql__gettableoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_dialect_postgresql_method_entry) {
PHP_ME(Phalcon_Db_Dialect_Postgresql, getColumnDefinition, arginfo_phalcon_db_dialect_postgresql_getcolumndefinition, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, addColumn, arginfo_phalcon_db_dialect_postgresql_addcolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, modifyColumn, arginfo_phalcon_db_dialect_postgresql_modifycolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, dropColumn, arginfo_phalcon_db_dialect_postgresql_dropcolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, addIndex, arginfo_phalcon_db_dialect_postgresql_addindex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, dropIndex, arginfo_phalcon_db_dialect_postgresql_dropindex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, addPrimaryKey, arginfo_phalcon_db_dialect_postgresql_addprimarykey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, dropPrimaryKey, arginfo_phalcon_db_dialect_postgresql_dropprimarykey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, addForeignKey, arginfo_phalcon_db_dialect_postgresql_addforeignkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, dropForeignKey, arginfo_phalcon_db_dialect_postgresql_dropforeignkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, createTable, arginfo_phalcon_db_dialect_postgresql_createtable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, dropTable, arginfo_phalcon_db_dialect_postgresql_droptable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, createView, arginfo_phalcon_db_dialect_postgresql_createview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, dropView, arginfo_phalcon_db_dialect_postgresql_dropview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, tableExists, arginfo_phalcon_db_dialect_postgresql_tableexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, viewExists, arginfo_phalcon_db_dialect_postgresql_viewexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, describeColumns, arginfo_phalcon_db_dialect_postgresql_describecolumns, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, listTables, arginfo_phalcon_db_dialect_postgresql_listtables, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, listViews, arginfo_phalcon_db_dialect_postgresql_listviews, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, describeIndexes, arginfo_phalcon_db_dialect_postgresql_describeindexes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, describeReferences, arginfo_phalcon_db_dialect_postgresql_describereferences, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, tableOptions, arginfo_phalcon_db_dialect_postgresql_tableoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Postgresql, _castDefault, arginfo_phalcon_db_dialect_postgresql__castdefault, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Db_Dialect_Postgresql, _getTableOptions, arginfo_phalcon_db_dialect_postgresql__gettableoptions, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_db_dialect_sqlite_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Dialect_Sqlite);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, getColumnDefinition);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, addColumn);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, modifyColumn);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, dropColumn);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, addIndex);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, dropIndex);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, addPrimaryKey);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, dropPrimaryKey);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, addForeignKey);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, dropForeignKey);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, createTable);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, dropTable);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, createView);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, dropView);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, tableExists);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, viewExists);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, describeColumns);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, listTables);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, listViews);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, listIndexesSql);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, describeIndexes);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, describeIndex);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, describeReferences);
static PHP_METHOD(Phalcon_Db_Dialect_Sqlite, tableOptions);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_getcolumndefinition, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_addcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_modifycolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, column, Phalcon\\Db\\ColumnInterface, 0)
ZEND_ARG_OBJ_INFO(0, currentColumn, Phalcon\\Db\\ColumnInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_dropcolumn, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, columnName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_addindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_dropindex, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, indexName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_addprimarykey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, index, Phalcon\\Db\\IndexInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_dropprimarykey, 0, 0, 2)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_addforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_OBJ_INFO(0, reference, Phalcon\\Db\\ReferenceInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_dropforeignkey, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, referenceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_createtable, 0, 0, 3)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_droptable, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_createview, 0, 0, 2)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_dropview, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_ARG_INFO(0, ifExists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_tableexists, 0, 0, 1)
ZEND_ARG_INFO(0, tableName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_viewexists, 0, 0, 1)
ZEND_ARG_INFO(0, viewName)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_describecolumns, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_listtables, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_listviews, 0, 0, 0)
ZEND_ARG_INFO(0, schemaName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_listindexessql, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_ARG_INFO(0, keyName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_describeindexes, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_describeindex, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_describereferences, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_dialect_sqlite_tableoptions, 0, 0, 1)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_dialect_sqlite_method_entry) {
PHP_ME(Phalcon_Db_Dialect_Sqlite, getColumnDefinition, arginfo_phalcon_db_dialect_sqlite_getcolumndefinition, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, addColumn, arginfo_phalcon_db_dialect_sqlite_addcolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, modifyColumn, arginfo_phalcon_db_dialect_sqlite_modifycolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, dropColumn, arginfo_phalcon_db_dialect_sqlite_dropcolumn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, addIndex, arginfo_phalcon_db_dialect_sqlite_addindex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, dropIndex, arginfo_phalcon_db_dialect_sqlite_dropindex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, addPrimaryKey, arginfo_phalcon_db_dialect_sqlite_addprimarykey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, dropPrimaryKey, arginfo_phalcon_db_dialect_sqlite_dropprimarykey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, addForeignKey, arginfo_phalcon_db_dialect_sqlite_addforeignkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, dropForeignKey, arginfo_phalcon_db_dialect_sqlite_dropforeignkey, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, createTable, arginfo_phalcon_db_dialect_sqlite_createtable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, dropTable, arginfo_phalcon_db_dialect_sqlite_droptable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, createView, arginfo_phalcon_db_dialect_sqlite_createview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, dropView, arginfo_phalcon_db_dialect_sqlite_dropview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, tableExists, arginfo_phalcon_db_dialect_sqlite_tableexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, viewExists, arginfo_phalcon_db_dialect_sqlite_viewexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, describeColumns, arginfo_phalcon_db_dialect_sqlite_describecolumns, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, listTables, arginfo_phalcon_db_dialect_sqlite_listtables, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, listViews, arginfo_phalcon_db_dialect_sqlite_listviews, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, listIndexesSql, arginfo_phalcon_db_dialect_sqlite_listindexessql, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, describeIndexes, arginfo_phalcon_db_dialect_sqlite_describeindexes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, describeIndex, arginfo_phalcon_db_dialect_sqlite_describeindex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, describeReferences, arginfo_phalcon_db_dialect_sqlite_describereferences, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Dialect_Sqlite, tableOptions, arginfo_phalcon_db_dialect_sqlite_tableoptions, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Exception);
zend_class_entry *phalcon_db_index_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Index);
static PHP_METHOD(Phalcon_Db_Index, getName);
static PHP_METHOD(Phalcon_Db_Index, getColumns);
static PHP_METHOD(Phalcon_Db_Index, getType);
static PHP_METHOD(Phalcon_Db_Index, __construct);
static PHP_METHOD(Phalcon_Db_Index, __set_state);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_index___construct, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_ARRAY_INFO(0, columns, 0)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_index___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_index_method_entry) {
PHP_ME(Phalcon_Db_Index, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Index, getColumns, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Index, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Index, __construct, arginfo_phalcon_db_index___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Db_Index, __set_state, arginfo_phalcon_db_index___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_profiler_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Profiler);
static PHP_METHOD(Phalcon_Db_Profiler, startProfile);
static PHP_METHOD(Phalcon_Db_Profiler, stopProfile);
static PHP_METHOD(Phalcon_Db_Profiler, getNumberTotalStatements);
static PHP_METHOD(Phalcon_Db_Profiler, getTotalElapsedSeconds);
static PHP_METHOD(Phalcon_Db_Profiler, getProfiles);
static PHP_METHOD(Phalcon_Db_Profiler, reset);
static PHP_METHOD(Phalcon_Db_Profiler, getLastProfile);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_profiler_startprofile, 0, 0, 1)
ZEND_ARG_INFO(0, sqlStatement)
ZEND_ARG_INFO(0, sqlVariables)
ZEND_ARG_INFO(0, sqlBindTypes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_profiler_method_entry) {
PHP_ME(Phalcon_Db_Profiler, startProfile, arginfo_phalcon_db_profiler_startprofile, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler, stopProfile, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler, getNumberTotalStatements, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler, getTotalElapsedSeconds, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler, getProfiles, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler, reset, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler, getLastProfile, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_profiler_item_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Profiler_Item);
static PHP_METHOD(Phalcon_Db_Profiler_Item, setSqlStatement);
static PHP_METHOD(Phalcon_Db_Profiler_Item, getSqlStatement);
static PHP_METHOD(Phalcon_Db_Profiler_Item, setSqlVariables);
static PHP_METHOD(Phalcon_Db_Profiler_Item, getSqlVariables);
static PHP_METHOD(Phalcon_Db_Profiler_Item, setSqlBindTypes);
static PHP_METHOD(Phalcon_Db_Profiler_Item, getSqlBindTypes);
static PHP_METHOD(Phalcon_Db_Profiler_Item, setInitialTime);
static PHP_METHOD(Phalcon_Db_Profiler_Item, getInitialTime);
static PHP_METHOD(Phalcon_Db_Profiler_Item, setFinalTime);
static PHP_METHOD(Phalcon_Db_Profiler_Item, getFinalTime);
static PHP_METHOD(Phalcon_Db_Profiler_Item, getTotalElapsedSeconds);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_profiler_item_setsqlstatement, 0, 0, 1)
ZEND_ARG_INFO(0, sqlStatement)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_profiler_item_setsqlvariables, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, sqlVariables, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_profiler_item_setsqlbindtypes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, sqlBindTypes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_profiler_item_setinitialtime, 0, 0, 1)
ZEND_ARG_INFO(0, initialTime)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_profiler_item_setfinaltime, 0, 0, 1)
ZEND_ARG_INFO(0, finalTime)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_profiler_item_method_entry) {
PHP_ME(Phalcon_Db_Profiler_Item, setSqlStatement, arginfo_phalcon_db_profiler_item_setsqlstatement, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, getSqlStatement, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, setSqlVariables, arginfo_phalcon_db_profiler_item_setsqlvariables, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, getSqlVariables, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, setSqlBindTypes, arginfo_phalcon_db_profiler_item_setsqlbindtypes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, getSqlBindTypes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, setInitialTime, arginfo_phalcon_db_profiler_item_setinitialtime, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, getInitialTime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, setFinalTime, arginfo_phalcon_db_profiler_item_setfinaltime, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, getFinalTime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Profiler_Item, getTotalElapsedSeconds, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_rawvalue_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_RawValue);
static PHP_METHOD(Phalcon_Db_RawValue, getValue);
static PHP_METHOD(Phalcon_Db_RawValue, __toString);
static PHP_METHOD(Phalcon_Db_RawValue, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_rawvalue___construct, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_rawvalue_method_entry) {
PHP_ME(Phalcon_Db_RawValue, getValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_RawValue, __toString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_RawValue, __construct, arginfo_phalcon_db_rawvalue___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_db_reference_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Reference);
static PHP_METHOD(Phalcon_Db_Reference, getName);
static PHP_METHOD(Phalcon_Db_Reference, getSchemaName);
static PHP_METHOD(Phalcon_Db_Reference, getReferencedSchema);
static PHP_METHOD(Phalcon_Db_Reference, getReferencedTable);
static PHP_METHOD(Phalcon_Db_Reference, getColumns);
static PHP_METHOD(Phalcon_Db_Reference, getReferencedColumns);
static PHP_METHOD(Phalcon_Db_Reference, getOnDelete);
static PHP_METHOD(Phalcon_Db_Reference, getOnUpdate);
static PHP_METHOD(Phalcon_Db_Reference, __construct);
static PHP_METHOD(Phalcon_Db_Reference, __set_state);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_reference___construct, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_reference___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_reference_method_entry) {
PHP_ME(Phalcon_Db_Reference, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Reference, getSchemaName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Reference, getReferencedSchema, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Reference, getReferencedTable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Reference, getColumns, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Reference, getReferencedColumns, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Reference, getOnDelete, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Reference, getOnUpdate, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Reference, __construct, arginfo_phalcon_db_reference___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Db_Reference, __set_state, arginfo_phalcon_db_reference___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_db_result_pdo_ce;
ZEPHIR_INIT_CLASS(Phalcon_Db_Result_Pdo);
static PHP_METHOD(Phalcon_Db_Result_Pdo, __construct);
static PHP_METHOD(Phalcon_Db_Result_Pdo, execute);
static PHP_METHOD(Phalcon_Db_Result_Pdo, fetch);
static PHP_METHOD(Phalcon_Db_Result_Pdo, fetchArray);
static PHP_METHOD(Phalcon_Db_Result_Pdo, fetchAll);
static PHP_METHOD(Phalcon_Db_Result_Pdo, numRows);
static PHP_METHOD(Phalcon_Db_Result_Pdo, dataSeek);
static PHP_METHOD(Phalcon_Db_Result_Pdo, setFetchMode);
static PHP_METHOD(Phalcon_Db_Result_Pdo, getInternalResult);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_result_pdo___construct, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, connection, Phalcon\\Db\\AdapterInterface, 0)
ZEND_ARG_OBJ_INFO(0, result, PDOStatement, 0)
ZEND_ARG_INFO(0, sqlStatement)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_result_pdo_fetch, 0, 0, 0)
ZEND_ARG_INFO(0, fetchStyle)
ZEND_ARG_INFO(0, cursorOrientation)
ZEND_ARG_INFO(0, cursorOffset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_result_pdo_fetchall, 0, 0, 0)
ZEND_ARG_INFO(0, fetchStyle)
ZEND_ARG_INFO(0, fetchArgument)
ZEND_ARG_INFO(0, ctorArgs)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_result_pdo_dataseek, 0, 0, 1)
ZEND_ARG_INFO(0, number)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_db_result_pdo_setfetchmode, 0, 0, 1)
ZEND_ARG_INFO(0, fetchMode)
ZEND_ARG_INFO(0, colNoOrClassNameOrObject)
ZEND_ARG_INFO(0, ctorargs)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_db_result_pdo_method_entry) {
PHP_ME(Phalcon_Db_Result_Pdo, __construct, arginfo_phalcon_db_result_pdo___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Db_Result_Pdo, execute, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Result_Pdo, fetch, arginfo_phalcon_db_result_pdo_fetch, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Result_Pdo, fetchArray, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Result_Pdo, fetchAll, arginfo_phalcon_db_result_pdo_fetchall, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Result_Pdo, numRows, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Result_Pdo, dataSeek, arginfo_phalcon_db_result_pdo_dataseek, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Result_Pdo, setFetchMode, arginfo_phalcon_db_result_pdo_setfetchmode, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Db_Result_Pdo, getInternalResult, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_debug_ce;
ZEPHIR_INIT_CLASS(Phalcon_Debug);
static PHP_METHOD(Phalcon_Debug, setUri);
static PHP_METHOD(Phalcon_Debug, setShowBackTrace);
static PHP_METHOD(Phalcon_Debug, setShowFiles);
static PHP_METHOD(Phalcon_Debug, setShowFileFragment);
static PHP_METHOD(Phalcon_Debug, listen);
static PHP_METHOD(Phalcon_Debug, listenExceptions);
static PHP_METHOD(Phalcon_Debug, listenLowSeverity);
static PHP_METHOD(Phalcon_Debug, halt);
static PHP_METHOD(Phalcon_Debug, debugVar);
static PHP_METHOD(Phalcon_Debug, clearVars);
static PHP_METHOD(Phalcon_Debug, _escapeString);
static PHP_METHOD(Phalcon_Debug, _getArrayDump);
static PHP_METHOD(Phalcon_Debug, _getVarDump);
static PHP_METHOD(Phalcon_Debug, getMajorVersion);
static PHP_METHOD(Phalcon_Debug, getVersion);
static PHP_METHOD(Phalcon_Debug, getCssSources);
static PHP_METHOD(Phalcon_Debug, getJsSources);
static PHP_METHOD(Phalcon_Debug, showTraceItem);
static PHP_METHOD(Phalcon_Debug, onUncaughtLowSeverity);
static PHP_METHOD(Phalcon_Debug, onUncaughtException);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_seturi, 0, 0, 1)
ZEND_ARG_INFO(0, uri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_setshowbacktrace, 0, 0, 1)
ZEND_ARG_INFO(0, showBackTrace)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_setshowfiles, 0, 0, 1)
ZEND_ARG_INFO(0, showFiles)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_setshowfilefragment, 0, 0, 1)
ZEND_ARG_INFO(0, showFileFragment)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_listen, 0, 0, 0)
ZEND_ARG_INFO(0, exceptions)
ZEND_ARG_INFO(0, lowSeverity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_debugvar, 0, 0, 1)
ZEND_ARG_INFO(0, varz)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug__escapestring, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug__getarraydump, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, argument, 0)
ZEND_ARG_INFO(0, n)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug__getvardump, 0, 0, 1)
ZEND_ARG_INFO(0, variable)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_showtraceitem, 0, 0, 2)
ZEND_ARG_INFO(0, n)
ZEND_ARG_ARRAY_INFO(0, trace, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_onuncaughtlowseverity, 0, 0, 5)
ZEND_ARG_INFO(0, severity)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, line)
ZEND_ARG_INFO(0, context)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_onuncaughtexception, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, exception, Exception, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_debug_method_entry) {
PHP_ME(Phalcon_Debug, setUri, arginfo_phalcon_debug_seturi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, setShowBackTrace, arginfo_phalcon_debug_setshowbacktrace, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, setShowFiles, arginfo_phalcon_debug_setshowfiles, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, setShowFileFragment, arginfo_phalcon_debug_setshowfilefragment, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, listen, arginfo_phalcon_debug_listen, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, listenExceptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, listenLowSeverity, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, halt, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, debugVar, arginfo_phalcon_debug_debugvar, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, clearVars, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, _escapeString, arginfo_phalcon_debug__escapestring, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Debug, _getArrayDump, arginfo_phalcon_debug__getarraydump, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Debug, _getVarDump, arginfo_phalcon_debug__getvardump, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Debug, getMajorVersion, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, getVersion, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, getCssSources, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, getJsSources, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, showTraceItem, arginfo_phalcon_debug_showtraceitem, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Debug, onUncaughtLowSeverity, arginfo_phalcon_debug_onuncaughtlowseverity, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug, onUncaughtException, arginfo_phalcon_debug_onuncaughtexception, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_debug_dump_ce;
ZEPHIR_INIT_CLASS(Phalcon_Debug_Dump);
static PHP_METHOD(Phalcon_Debug_Dump, getDetailed);
static PHP_METHOD(Phalcon_Debug_Dump, setDetailed);
static PHP_METHOD(Phalcon_Debug_Dump, __construct);
static PHP_METHOD(Phalcon_Debug_Dump, all);
static PHP_METHOD(Phalcon_Debug_Dump, getStyle);
static PHP_METHOD(Phalcon_Debug_Dump, setStyles);
static PHP_METHOD(Phalcon_Debug_Dump, one);
static PHP_METHOD(Phalcon_Debug_Dump, output);
static PHP_METHOD(Phalcon_Debug_Dump, variable);
static PHP_METHOD(Phalcon_Debug_Dump, variables);
static PHP_METHOD(Phalcon_Debug_Dump, toJson);
zend_object *zephir_init_properties_Phalcon_Debug_Dump(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_dump_setdetailed, 0, 0, 1)
ZEND_ARG_INFO(0, detailed)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_dump___construct, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, styles, 1)
ZEND_ARG_INFO(0, detailed)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_dump_getstyle, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_dump_setstyles, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, styles, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_dump_one, 0, 0, 1)
ZEND_ARG_INFO(0, variable)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_dump_output, 0, 0, 1)
ZEND_ARG_INFO(0, variable)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, tab)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_dump_variable, 0, 0, 1)
ZEND_ARG_INFO(0, variable)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_debug_dump_tojson, 0, 0, 1)
ZEND_ARG_INFO(0, variable)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_debug_dump_method_entry) {
PHP_ME(Phalcon_Debug_Dump, getDetailed, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug_Dump, setDetailed, arginfo_phalcon_debug_dump_setdetailed, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug_Dump, __construct, arginfo_phalcon_debug_dump___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Debug_Dump, all, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug_Dump, getStyle, arginfo_phalcon_debug_dump_getstyle, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Debug_Dump, setStyles, arginfo_phalcon_debug_dump_setstyles, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug_Dump, one, arginfo_phalcon_debug_dump_one, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug_Dump, output, arginfo_phalcon_debug_dump_output, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Debug_Dump, variable, arginfo_phalcon_debug_dump_variable, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug_Dump, variables, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Debug_Dump, toJson, arginfo_phalcon_debug_dump_tojson, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_debug_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Debug_Exception);
zend_class_entry *phalcon_di_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Di_Exception);
zend_class_entry *phalcon_di_factorydefault_cli_ce;
ZEPHIR_INIT_CLASS(Phalcon_Di_FactoryDefault_Cli);
static PHP_METHOD(Phalcon_Di_FactoryDefault_Cli, __construct);
ZEPHIR_INIT_FUNCS(phalcon_di_factorydefault_cli_method_entry) {
PHP_ME(Phalcon_Di_FactoryDefault_Cli, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_di_service_ce;
ZEPHIR_INIT_CLASS(Phalcon_Di_Service);
static PHP_METHOD(Phalcon_Di_Service, __construct);
static PHP_METHOD(Phalcon_Di_Service, getName);
static PHP_METHOD(Phalcon_Di_Service, setShared);
static PHP_METHOD(Phalcon_Di_Service, isShared);
static PHP_METHOD(Phalcon_Di_Service, setSharedInstance);
static PHP_METHOD(Phalcon_Di_Service, setDefinition);
static PHP_METHOD(Phalcon_Di_Service, getDefinition);
static PHP_METHOD(Phalcon_Di_Service, resolve);
static PHP_METHOD(Phalcon_Di_Service, setParameter);
static PHP_METHOD(Phalcon_Di_Service, getParameter);
static PHP_METHOD(Phalcon_Di_Service, isResolved);
static PHP_METHOD(Phalcon_Di_Service, __set_state);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service___construct, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_ARG_INFO(0, shared)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service_setshared, 0, 0, 1)
ZEND_ARG_INFO(0, shared)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service_setsharedinstance, 0, 0, 1)
ZEND_ARG_INFO(0, sharedInstance)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service_setdefinition, 0, 0, 1)
ZEND_ARG_INFO(0, definition)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service_resolve, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service_setparameter, 0, 0, 2)
ZEND_ARG_INFO(0, position)
ZEND_ARG_ARRAY_INFO(0, parameter, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service_getparameter, 0, 0, 1)
ZEND_ARG_INFO(0, position)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_di_service_method_entry) {
PHP_ME(Phalcon_Di_Service, __construct, arginfo_phalcon_di_service___construct, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Di_Service, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, setShared, arginfo_phalcon_di_service_setshared, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, isShared, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, setSharedInstance, arginfo_phalcon_di_service_setsharedinstance, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, setDefinition, arginfo_phalcon_di_service_setdefinition, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, getDefinition, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, resolve, arginfo_phalcon_di_service_resolve, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, setParameter, arginfo_phalcon_di_service_setparameter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, getParameter, arginfo_phalcon_di_service_getparameter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, isResolved, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Di_Service, __set_state, arginfo_phalcon_di_service___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_di_service_builder_ce;
ZEPHIR_INIT_CLASS(Phalcon_Di_Service_Builder);
static PHP_METHOD(Phalcon_Di_Service_Builder, _buildParameter);
static PHP_METHOD(Phalcon_Di_Service_Builder, _buildParameters);
static PHP_METHOD(Phalcon_Di_Service_Builder, build);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service_builder__buildparameter, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_ARG_INFO(0, position)
ZEND_ARG_ARRAY_INFO(0, argument, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service_builder__buildparameters, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_ARG_ARRAY_INFO(0, arguments, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_di_service_builder_build, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_ARG_ARRAY_INFO(0, definition, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_di_service_builder_method_entry) {
PHP_ME(Phalcon_Di_Service_Builder, _buildParameter, arginfo_phalcon_di_service_builder__buildparameter, ZEND_ACC_PRIVATE)
PHP_ME(Phalcon_Di_Service_Builder, _buildParameters, arginfo_phalcon_di_service_builder__buildparameters, ZEND_ACC_PRIVATE)
PHP_ME(Phalcon_Di_Service_Builder, build, arginfo_phalcon_di_service_builder_build, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_escaper_ce;
ZEPHIR_INIT_CLASS(Phalcon_Escaper);
static PHP_METHOD(Phalcon_Escaper, setEncoding);
static PHP_METHOD(Phalcon_Escaper, getEncoding);
static PHP_METHOD(Phalcon_Escaper, setHtmlQuoteType);
static PHP_METHOD(Phalcon_Escaper, setDoubleEncode);
static PHP_METHOD(Phalcon_Escaper, detectEncoding);
static PHP_METHOD(Phalcon_Escaper, normalizeEncoding);
static PHP_METHOD(Phalcon_Escaper, escapeHtml);
static PHP_METHOD(Phalcon_Escaper, escapeHtmlAttr);
static PHP_METHOD(Phalcon_Escaper, escapeCss);
static PHP_METHOD(Phalcon_Escaper, escapeJs);
static PHP_METHOD(Phalcon_Escaper, escapeUrl);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_setencoding, 0, 0, 1)
ZEND_ARG_INFO(0, encoding)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_sethtmlquotetype, 0, 0, 1)
ZEND_ARG_INFO(0, quoteType)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_setdoubleencode, 0, 0, 1)
ZEND_ARG_INFO(0, doubleEncode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_detectencoding, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_normalizeencoding, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_escapehtml, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_escapehtmlattr, 0, 0, 1)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_escapecss, 0, 0, 1)
ZEND_ARG_INFO(0, css)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_escapejs, 0, 0, 1)
ZEND_ARG_INFO(0, js)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_escaper_escapeurl, 0, 0, 1)
ZEND_ARG_INFO(0, url)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_escaper_method_entry) {
PHP_ME(Phalcon_Escaper, setEncoding, arginfo_phalcon_escaper_setencoding, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Escaper, getEncoding, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Escaper, setHtmlQuoteType, arginfo_phalcon_escaper_sethtmlquotetype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Escaper, setDoubleEncode, arginfo_phalcon_escaper_setdoubleencode, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Escaper, detectEncoding, arginfo_phalcon_escaper_detectencoding, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Escaper, normalizeEncoding, arginfo_phalcon_escaper_normalizeencoding, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Escaper, escapeHtml, arginfo_phalcon_escaper_escapehtml, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Escaper, escapeHtmlAttr, arginfo_phalcon_escaper_escapehtmlattr, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Escaper, escapeCss, arginfo_phalcon_escaper_escapecss, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Escaper, escapeJs, arginfo_phalcon_escaper_escapejs, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Escaper, escapeUrl, arginfo_phalcon_escaper_escapeurl, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_escaper_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Escaper_Exception);
zend_class_entry *phalcon_events_event_ce;
ZEPHIR_INIT_CLASS(Phalcon_Events_Event);
static PHP_METHOD(Phalcon_Events_Event, getType);
static PHP_METHOD(Phalcon_Events_Event, getSource);
static PHP_METHOD(Phalcon_Events_Event, getData);
static PHP_METHOD(Phalcon_Events_Event, __construct);
static PHP_METHOD(Phalcon_Events_Event, setData);
static PHP_METHOD(Phalcon_Events_Event, setType);
static PHP_METHOD(Phalcon_Events_Event, stop);
static PHP_METHOD(Phalcon_Events_Event, isStopped);
static PHP_METHOD(Phalcon_Events_Event, isCancelable);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_event___construct, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, source)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, cancelable)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_event_setdata, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_event_settype, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_events_event_method_entry) {
PHP_ME(Phalcon_Events_Event, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Event, getSource, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Event, getData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Event, __construct, arginfo_phalcon_events_event___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Events_Event, setData, arginfo_phalcon_events_event_setdata, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Event, setType, arginfo_phalcon_events_event_settype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Event, stop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Event, isStopped, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Event, isCancelable, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_events_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Events_Exception);
zend_class_entry *phalcon_events_manager_ce;
ZEPHIR_INIT_CLASS(Phalcon_Events_Manager);
static PHP_METHOD(Phalcon_Events_Manager, attach);
static PHP_METHOD(Phalcon_Events_Manager, detach);
static PHP_METHOD(Phalcon_Events_Manager, enablePriorities);
static PHP_METHOD(Phalcon_Events_Manager, arePrioritiesEnabled);
static PHP_METHOD(Phalcon_Events_Manager, collectResponses);
static PHP_METHOD(Phalcon_Events_Manager, isCollecting);
static PHP_METHOD(Phalcon_Events_Manager, getResponses);
static PHP_METHOD(Phalcon_Events_Manager, detachAll);
static PHP_METHOD(Phalcon_Events_Manager, fireQueue);
static PHP_METHOD(Phalcon_Events_Manager, fire);
static PHP_METHOD(Phalcon_Events_Manager, hasListeners);
static PHP_METHOD(Phalcon_Events_Manager, getListeners);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_manager_attach, 0, 0, 2)
ZEND_ARG_INFO(0, eventType)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, priority)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_manager_detach, 0, 0, 2)
ZEND_ARG_INFO(0, eventType)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_manager_enablepriorities, 0, 0, 1)
ZEND_ARG_INFO(0, enablePriorities)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_manager_collectresponses, 0, 0, 1)
ZEND_ARG_INFO(0, collect)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_manager_detachall, 0, 0, 0)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_manager_firequeue, 0, 0, 2)
ZEND_ARG_INFO(0, queue)
ZEND_ARG_OBJ_INFO(0, event, Phalcon\\Events\\EventInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_manager_fire, 0, 0, 2)
ZEND_ARG_INFO(0, eventType)
ZEND_ARG_INFO(0, source)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, cancelable)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_manager_haslisteners, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_events_manager_getlisteners, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_events_manager_method_entry) {
PHP_ME(Phalcon_Events_Manager, attach, arginfo_phalcon_events_manager_attach, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, detach, arginfo_phalcon_events_manager_detach, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, enablePriorities, arginfo_phalcon_events_manager_enablepriorities, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, arePrioritiesEnabled, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, collectResponses, arginfo_phalcon_events_manager_collectresponses, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, isCollecting, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, getResponses, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, detachAll, arginfo_phalcon_events_manager_detachall, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, fireQueue, arginfo_phalcon_events_manager_firequeue, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Events_Manager, fire, arginfo_phalcon_events_manager_fire, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, hasListeners, arginfo_phalcon_events_manager_haslisteners, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Events_Manager, getListeners, arginfo_phalcon_events_manager_getlisteners, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_filter_ce;
ZEPHIR_INIT_CLASS(Phalcon_Filter);
static PHP_METHOD(Phalcon_Filter, add);
static PHP_METHOD(Phalcon_Filter, sanitize);
static PHP_METHOD(Phalcon_Filter, _sanitize);
static PHP_METHOD(Phalcon_Filter, getFilters);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_filter_add, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_filter_sanitize, 0, 0, 2)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, noRecursive)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_filter__sanitize, 0, 0, 2)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, filter)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_filter_method_entry) {
PHP_ME(Phalcon_Filter, add, arginfo_phalcon_filter_add, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Filter, sanitize, arginfo_phalcon_filter_sanitize, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Filter, _sanitize, arginfo_phalcon_filter__sanitize, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Filter, getFilters, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_filter_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Filter_Exception);
zend_class_entry *phalcon_filter_userfilterinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Filter_UserFilterInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_filter_userfilterinterface_filter, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_filter_userfilterinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Filter_UserFilterInterface, filter, arginfo_phalcon_filter_userfilterinterface_filter)
PHP_FE_END
};
zend_class_entry *phalcon_flash_direct_ce;
ZEPHIR_INIT_CLASS(Phalcon_Flash_Direct);
static PHP_METHOD(Phalcon_Flash_Direct, message);
static PHP_METHOD(Phalcon_Flash_Direct, output);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_direct_message, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_direct_output, 0, 0, 0)
ZEND_ARG_INFO(0, remove)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_flash_direct_method_entry) {
PHP_ME(Phalcon_Flash_Direct, message, arginfo_phalcon_flash_direct_message, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash_Direct, output, arginfo_phalcon_flash_direct_output, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_flash_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Flash_Exception);
zend_class_entry *phalcon_flash_session_ce;
ZEPHIR_INIT_CLASS(Phalcon_Flash_Session);
static PHP_METHOD(Phalcon_Flash_Session, _getSessionMessages);
static PHP_METHOD(Phalcon_Flash_Session, _setSessionMessages);
static PHP_METHOD(Phalcon_Flash_Session, message);
static PHP_METHOD(Phalcon_Flash_Session, has);
static PHP_METHOD(Phalcon_Flash_Session, getMessages);
static PHP_METHOD(Phalcon_Flash_Session, output);
static PHP_METHOD(Phalcon_Flash_Session, clear);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_session__getsessionmessages, 0, 0, 1)
ZEND_ARG_INFO(0, remove)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_session__setsessionmessages, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, messages, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_session_message, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_session_has, 0, 0, 0)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_session_getmessages, 0, 0, 0)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, remove)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_flash_session_output, 0, 0, 0)
ZEND_ARG_INFO(0, remove)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_flash_session_method_entry) {
PHP_ME(Phalcon_Flash_Session, _getSessionMessages, arginfo_phalcon_flash_session__getsessionmessages, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Flash_Session, _setSessionMessages, arginfo_phalcon_flash_session__setsessionmessages, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Flash_Session, message, arginfo_phalcon_flash_session_message, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash_Session, has, arginfo_phalcon_flash_session_has, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash_Session, getMessages, arginfo_phalcon_flash_session_getmessages, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash_Session, output, arginfo_phalcon_flash_session_output, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Flash_Session, clear, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_check_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Check);
static PHP_METHOD(Phalcon_Forms_Element_Check, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_check_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_check_method_entry) {
PHP_ME(Phalcon_Forms_Element_Check, render, arginfo_phalcon_forms_element_check_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_date_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Date);
static PHP_METHOD(Phalcon_Forms_Element_Date, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_date_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_date_method_entry) {
PHP_ME(Phalcon_Forms_Element_Date, render, arginfo_phalcon_forms_element_date_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_email_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Email);
static PHP_METHOD(Phalcon_Forms_Element_Email, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_email_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_email_method_entry) {
PHP_ME(Phalcon_Forms_Element_Email, render, arginfo_phalcon_forms_element_email_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_file_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_File);
static PHP_METHOD(Phalcon_Forms_Element_File, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_file_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_file_method_entry) {
PHP_ME(Phalcon_Forms_Element_File, render, arginfo_phalcon_forms_element_file_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_hidden_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Hidden);
static PHP_METHOD(Phalcon_Forms_Element_Hidden, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_hidden_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_hidden_method_entry) {
PHP_ME(Phalcon_Forms_Element_Hidden, render, arginfo_phalcon_forms_element_hidden_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_numeric_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Numeric);
static PHP_METHOD(Phalcon_Forms_Element_Numeric, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_numeric_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_numeric_method_entry) {
PHP_ME(Phalcon_Forms_Element_Numeric, render, arginfo_phalcon_forms_element_numeric_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_password_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Password);
static PHP_METHOD(Phalcon_Forms_Element_Password, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_password_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_password_method_entry) {
PHP_ME(Phalcon_Forms_Element_Password, render, arginfo_phalcon_forms_element_password_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_radio_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Radio);
static PHP_METHOD(Phalcon_Forms_Element_Radio, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_radio_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_radio_method_entry) {
PHP_ME(Phalcon_Forms_Element_Radio, render, arginfo_phalcon_forms_element_radio_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_select_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Select);
static PHP_METHOD(Phalcon_Forms_Element_Select, __construct);
static PHP_METHOD(Phalcon_Forms_Element_Select, setOptions);
static PHP_METHOD(Phalcon_Forms_Element_Select, getOptions);
static PHP_METHOD(Phalcon_Forms_Element_Select, addOption);
static PHP_METHOD(Phalcon_Forms_Element_Select, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_select___construct, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, options)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_select_setoptions, 0, 0, 1)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_select_addoption, 0, 0, 1)
ZEND_ARG_INFO(0, option)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_select_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_select_method_entry) {
PHP_ME(Phalcon_Forms_Element_Select, __construct, arginfo_phalcon_forms_element_select___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Forms_Element_Select, setOptions, arginfo_phalcon_forms_element_select_setoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element_Select, getOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element_Select, addOption, arginfo_phalcon_forms_element_select_addoption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Element_Select, render, arginfo_phalcon_forms_element_select_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_submit_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Submit);
static PHP_METHOD(Phalcon_Forms_Element_Submit, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_submit_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_submit_method_entry) {
PHP_ME(Phalcon_Forms_Element_Submit, render, arginfo_phalcon_forms_element_submit_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_text_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_Text);
static PHP_METHOD(Phalcon_Forms_Element_Text, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_text_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_text_method_entry) {
PHP_ME(Phalcon_Forms_Element_Text, render, arginfo_phalcon_forms_element_text_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_element_textarea_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Element_TextArea);
static PHP_METHOD(Phalcon_Forms_Element_TextArea, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_element_textarea_render, 0, 0, 0)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_element_textarea_method_entry) {
PHP_ME(Phalcon_Forms_Element_TextArea, render, arginfo_phalcon_forms_element_textarea_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Exception);
zend_class_entry *phalcon_forms_form_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Form);
static PHP_METHOD(Phalcon_Forms_Form, setValidation);
static PHP_METHOD(Phalcon_Forms_Form, getValidation);
static PHP_METHOD(Phalcon_Forms_Form, __construct);
static PHP_METHOD(Phalcon_Forms_Form, setAction);
static PHP_METHOD(Phalcon_Forms_Form, getAction);
static PHP_METHOD(Phalcon_Forms_Form, setUserOption);
static PHP_METHOD(Phalcon_Forms_Form, getUserOption);
static PHP_METHOD(Phalcon_Forms_Form, setUserOptions);
static PHP_METHOD(Phalcon_Forms_Form, getUserOptions);
static PHP_METHOD(Phalcon_Forms_Form, setEntity);
static PHP_METHOD(Phalcon_Forms_Form, getEntity);
static PHP_METHOD(Phalcon_Forms_Form, getElements);
static PHP_METHOD(Phalcon_Forms_Form, bind);
static PHP_METHOD(Phalcon_Forms_Form, isValid);
static PHP_METHOD(Phalcon_Forms_Form, getMessages);
static PHP_METHOD(Phalcon_Forms_Form, getMessagesFor);
static PHP_METHOD(Phalcon_Forms_Form, hasMessagesFor);
static PHP_METHOD(Phalcon_Forms_Form, add);
static PHP_METHOD(Phalcon_Forms_Form, render);
static PHP_METHOD(Phalcon_Forms_Form, get);
static PHP_METHOD(Phalcon_Forms_Form, label);
static PHP_METHOD(Phalcon_Forms_Form, getLabel);
static PHP_METHOD(Phalcon_Forms_Form, getValue);
static PHP_METHOD(Phalcon_Forms_Form, has);
static PHP_METHOD(Phalcon_Forms_Form, remove);
static PHP_METHOD(Phalcon_Forms_Form, clear);
static PHP_METHOD(Phalcon_Forms_Form, count);
static PHP_METHOD(Phalcon_Forms_Form, rewind);
static PHP_METHOD(Phalcon_Forms_Form, current);
static PHP_METHOD(Phalcon_Forms_Form, key);
static PHP_METHOD(Phalcon_Forms_Form, next);
static PHP_METHOD(Phalcon_Forms_Form, valid);
zend_object *zephir_init_properties_Phalcon_Forms_Form(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_setvalidation, 0, 0, 1)
ZEND_ARG_INFO(0, validation)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form___construct, 0, 0, 0)
ZEND_ARG_INFO(0, entity)
ZEND_ARG_INFO(0, userOptions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_setaction, 0, 0, 1)
ZEND_ARG_INFO(0, action)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_setuseroption, 0, 0, 2)
ZEND_ARG_INFO(0, option)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_getuseroption, 0, 0, 1)
ZEND_ARG_INFO(0, option)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_setuseroptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_setentity, 0, 0, 1)
ZEND_ARG_INFO(0, entity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_bind, 0, 0, 2)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, entity)
ZEND_ARG_INFO(0, whitelist)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_isvalid, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, entity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_getmessages, 0, 0, 0)
ZEND_ARG_INFO(0, byItemName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_getmessagesfor, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_hasmessagesfor, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_add, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, element, Phalcon\\Forms\\ElementInterface, 0)
ZEND_ARG_INFO(0, position)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_render, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, attributes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_get, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_label, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_ARRAY_INFO(0, attributes, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_getlabel, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_getvalue, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_has, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_remove, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_form_clear, 0, 0, 0)
ZEND_ARG_INFO(0, fields)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_form_method_entry) {
PHP_ME(Phalcon_Forms_Form, setValidation, arginfo_phalcon_forms_form_setvalidation, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getValidation, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, __construct, arginfo_phalcon_forms_form___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Forms_Form, setAction, arginfo_phalcon_forms_form_setaction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getAction, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, setUserOption, arginfo_phalcon_forms_form_setuseroption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getUserOption, arginfo_phalcon_forms_form_getuseroption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, setUserOptions, arginfo_phalcon_forms_form_setuseroptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getUserOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, setEntity, arginfo_phalcon_forms_form_setentity, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getEntity, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getElements, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, bind, arginfo_phalcon_forms_form_bind, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, isValid, arginfo_phalcon_forms_form_isvalid, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getMessages, arginfo_phalcon_forms_form_getmessages, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getMessagesFor, arginfo_phalcon_forms_form_getmessagesfor, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, hasMessagesFor, arginfo_phalcon_forms_form_hasmessagesfor, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, add, arginfo_phalcon_forms_form_add, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, render, arginfo_phalcon_forms_form_render, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, get, arginfo_phalcon_forms_form_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, label, arginfo_phalcon_forms_form_label, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getLabel, arginfo_phalcon_forms_form_getlabel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, getValue, arginfo_phalcon_forms_form_getvalue, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, has, arginfo_phalcon_forms_form_has, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, remove, arginfo_phalcon_forms_form_remove, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, clear, arginfo_phalcon_forms_form_clear, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, count, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, rewind, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, current, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, key, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, next, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Form, valid, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_forms_manager_ce;
ZEPHIR_INIT_CLASS(Phalcon_Forms_Manager);
static PHP_METHOD(Phalcon_Forms_Manager, create);
static PHP_METHOD(Phalcon_Forms_Manager, get);
static PHP_METHOD(Phalcon_Forms_Manager, has);
static PHP_METHOD(Phalcon_Forms_Manager, set);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_manager_create, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, entity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_manager_get, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_manager_has, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_forms_manager_set, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_OBJ_INFO(0, form, Phalcon\\Forms\\Form, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_forms_manager_method_entry) {
PHP_ME(Phalcon_Forms_Manager, create, arginfo_phalcon_forms_manager_create, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Manager, get, arginfo_phalcon_forms_manager_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Manager, has, arginfo_phalcon_forms_manager_has, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Forms_Manager, set, arginfo_phalcon_forms_manager_set, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_http_cookie_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Cookie);
static PHP_METHOD(Phalcon_Http_Cookie, __construct);
static PHP_METHOD(Phalcon_Http_Cookie, setDI);
static PHP_METHOD(Phalcon_Http_Cookie, getDI);
static PHP_METHOD(Phalcon_Http_Cookie, setValue);
static PHP_METHOD(Phalcon_Http_Cookie, getValue);
static PHP_METHOD(Phalcon_Http_Cookie, send);
static PHP_METHOD(Phalcon_Http_Cookie, restore);
static PHP_METHOD(Phalcon_Http_Cookie, delete);
static PHP_METHOD(Phalcon_Http_Cookie, useEncryption);
static PHP_METHOD(Phalcon_Http_Cookie, isUsingEncryption);
static PHP_METHOD(Phalcon_Http_Cookie, setExpiration);
static PHP_METHOD(Phalcon_Http_Cookie, getExpiration);
static PHP_METHOD(Phalcon_Http_Cookie, setPath);
static PHP_METHOD(Phalcon_Http_Cookie, getName);
static PHP_METHOD(Phalcon_Http_Cookie, getPath);
static PHP_METHOD(Phalcon_Http_Cookie, setDomain);
static PHP_METHOD(Phalcon_Http_Cookie, getDomain);
static PHP_METHOD(Phalcon_Http_Cookie, setSecure);
static PHP_METHOD(Phalcon_Http_Cookie, getSecure);
static PHP_METHOD(Phalcon_Http_Cookie, setHttpOnly);
static PHP_METHOD(Phalcon_Http_Cookie, getHttpOnly);
static PHP_METHOD(Phalcon_Http_Cookie, __toString);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie___construct, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, expire)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, secure)
ZEND_ARG_INFO(0, domain)
ZEND_ARG_INFO(0, httpOnly)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie_setvalue, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie_getvalue, 0, 0, 0)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie_useencryption, 0, 0, 1)
ZEND_ARG_INFO(0, useEncryption)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie_setexpiration, 0, 0, 1)
ZEND_ARG_INFO(0, expire)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie_setpath, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie_setdomain, 0, 0, 1)
ZEND_ARG_INFO(0, domain)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie_setsecure, 0, 0, 1)
ZEND_ARG_INFO(0, secure)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_cookie_sethttponly, 0, 0, 1)
ZEND_ARG_INFO(0, httpOnly)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_cookie_method_entry) {
PHP_ME(Phalcon_Http_Cookie, __construct, arginfo_phalcon_http_cookie___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Http_Cookie, setDI, arginfo_phalcon_http_cookie_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, setValue, arginfo_phalcon_http_cookie_setvalue, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, getValue, arginfo_phalcon_http_cookie_getvalue, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, send, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, restore, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, delete, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, useEncryption, arginfo_phalcon_http_cookie_useencryption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, isUsingEncryption, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, setExpiration, arginfo_phalcon_http_cookie_setexpiration, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, getExpiration, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, setPath, arginfo_phalcon_http_cookie_setpath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, getPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, setDomain, arginfo_phalcon_http_cookie_setdomain, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, getDomain, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, setSecure, arginfo_phalcon_http_cookie_setsecure, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, getSecure, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, setHttpOnly, arginfo_phalcon_http_cookie_sethttponly, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, getHttpOnly, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Cookie, __toString, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_http_cookie_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Cookie_Exception);
zend_class_entry *phalcon_http_request_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Request);
static PHP_METHOD(Phalcon_Http_Request, getHttpMethodParameterOverride);
static PHP_METHOD(Phalcon_Http_Request, setHttpMethodParameterOverride);
static PHP_METHOD(Phalcon_Http_Request, setDI);
static PHP_METHOD(Phalcon_Http_Request, getDI);
static PHP_METHOD(Phalcon_Http_Request, get);
static PHP_METHOD(Phalcon_Http_Request, getPost);
static PHP_METHOD(Phalcon_Http_Request, getPut);
static PHP_METHOD(Phalcon_Http_Request, getQuery);
static PHP_METHOD(Phalcon_Http_Request, getHelper);
static PHP_METHOD(Phalcon_Http_Request, getServer);
static PHP_METHOD(Phalcon_Http_Request, has);
static PHP_METHOD(Phalcon_Http_Request, hasPost);
static PHP_METHOD(Phalcon_Http_Request, hasPut);
static PHP_METHOD(Phalcon_Http_Request, hasQuery);
static PHP_METHOD(Phalcon_Http_Request, hasServer);
static PHP_METHOD(Phalcon_Http_Request, getHeader);
static PHP_METHOD(Phalcon_Http_Request, getScheme);
static PHP_METHOD(Phalcon_Http_Request, isAjax);
static PHP_METHOD(Phalcon_Http_Request, isSoap);
static PHP_METHOD(Phalcon_Http_Request, isSoapRequested);
static PHP_METHOD(Phalcon_Http_Request, isSecure);
static PHP_METHOD(Phalcon_Http_Request, isSecureRequest);
static PHP_METHOD(Phalcon_Http_Request, getRawBody);
static PHP_METHOD(Phalcon_Http_Request, getJsonRawBody);
static PHP_METHOD(Phalcon_Http_Request, getServerAddress);
static PHP_METHOD(Phalcon_Http_Request, getServerName);
static PHP_METHOD(Phalcon_Http_Request, getHttpHost);
static PHP_METHOD(Phalcon_Http_Request, setStrictHostCheck);
static PHP_METHOD(Phalcon_Http_Request, isStrictHostCheck);
static PHP_METHOD(Phalcon_Http_Request, getPort);
static PHP_METHOD(Phalcon_Http_Request, getURI);
static PHP_METHOD(Phalcon_Http_Request, getClientAddress);
static PHP_METHOD(Phalcon_Http_Request, getMethod);
static PHP_METHOD(Phalcon_Http_Request, getUserAgent);
static PHP_METHOD(Phalcon_Http_Request, isValidHttpMethod);
static PHP_METHOD(Phalcon_Http_Request, isMethod);
static PHP_METHOD(Phalcon_Http_Request, isPost);
static PHP_METHOD(Phalcon_Http_Request, isGet);
static PHP_METHOD(Phalcon_Http_Request, isPut);
static PHP_METHOD(Phalcon_Http_Request, isPatch);
static PHP_METHOD(Phalcon_Http_Request, isHead);
static PHP_METHOD(Phalcon_Http_Request, isDelete);
static PHP_METHOD(Phalcon_Http_Request, isOptions);
static PHP_METHOD(Phalcon_Http_Request, isPurge);
static PHP_METHOD(Phalcon_Http_Request, isTrace);
static PHP_METHOD(Phalcon_Http_Request, isConnect);
static PHP_METHOD(Phalcon_Http_Request, hasFiles);
static PHP_METHOD(Phalcon_Http_Request, hasFileHelper);
static PHP_METHOD(Phalcon_Http_Request, getUploadedFiles);
static PHP_METHOD(Phalcon_Http_Request, smoothFiles);
static PHP_METHOD(Phalcon_Http_Request, getHeaders);
static PHP_METHOD(Phalcon_Http_Request, getHTTPReferer);
static PHP_METHOD(Phalcon_Http_Request, _getBestQuality);
static PHP_METHOD(Phalcon_Http_Request, getContentType);
static PHP_METHOD(Phalcon_Http_Request, getAcceptableContent);
static PHP_METHOD(Phalcon_Http_Request, getBestAccept);
static PHP_METHOD(Phalcon_Http_Request, getClientCharsets);
static PHP_METHOD(Phalcon_Http_Request, getBestCharset);
static PHP_METHOD(Phalcon_Http_Request, getLanguages);
static PHP_METHOD(Phalcon_Http_Request, getBestLanguage);
static PHP_METHOD(Phalcon_Http_Request, getBasicAuth);
static PHP_METHOD(Phalcon_Http_Request, getDigestAuth);
static PHP_METHOD(Phalcon_Http_Request, _getQualityHeader);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_sethttpmethodparameteroverride, 0, 0, 1)
ZEND_ARG_INFO(0, httpMethodParameterOverride)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_get, 0, 0, 0)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_ARG_INFO(0, notAllowEmpty)
ZEND_ARG_INFO(0, noRecursive)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_getpost, 0, 0, 0)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_ARG_INFO(0, notAllowEmpty)
ZEND_ARG_INFO(0, noRecursive)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_getput, 0, 0, 0)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_ARG_INFO(0, notAllowEmpty)
ZEND_ARG_INFO(0, noRecursive)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_getquery, 0, 0, 0)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_ARG_INFO(0, notAllowEmpty)
ZEND_ARG_INFO(0, noRecursive)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_gethelper, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, source, 0)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, filters)
ZEND_ARG_INFO(0, defaultValue)
ZEND_ARG_INFO(0, notAllowEmpty)
ZEND_ARG_INFO(0, noRecursive)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_getserver, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_has, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_haspost, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_hasput, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_hasquery, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_hasserver, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_getheader, 0, 0, 1)
ZEND_ARG_INFO(0, header)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_getjsonrawbody, 0, 0, 0)
ZEND_ARG_INFO(0, associative)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_setstricthostcheck, 0, 0, 0)
ZEND_ARG_INFO(0, flag)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_getclientaddress, 0, 0, 0)
ZEND_ARG_INFO(0, trustForwardedHeader)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_isvalidhttpmethod, 0, 0, 1)
ZEND_ARG_INFO(0, method)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_ismethod, 0, 0, 1)
ZEND_ARG_INFO(0, methods)
ZEND_ARG_INFO(0, strict)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_hasfiles, 0, 0, 0)
ZEND_ARG_INFO(0, onlySuccessful)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_hasfilehelper, 0, 0, 2)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, onlySuccessful)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_getuploadedfiles, 0, 0, 0)
ZEND_ARG_INFO(0, onlySuccessful)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_smoothfiles, 0, 0, 6)
ZEND_ARG_ARRAY_INFO(0, names, 0)
ZEND_ARG_ARRAY_INFO(0, types, 0)
ZEND_ARG_ARRAY_INFO(0, tmp_names, 0)
ZEND_ARG_ARRAY_INFO(0, sizes, 0)
ZEND_ARG_ARRAY_INFO(0, errors, 0)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request__getbestquality, 0, 0, 2)
ZEND_ARG_ARRAY_INFO(0, qualityParts, 0)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request__getqualityheader, 0, 0, 2)
ZEND_ARG_INFO(0, serverIndex)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_request_method_entry) {
PHP_ME(Phalcon_Http_Request, getHttpMethodParameterOverride, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, setHttpMethodParameterOverride, arginfo_phalcon_http_request_sethttpmethodparameteroverride, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, setDI, arginfo_phalcon_http_request_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, get, arginfo_phalcon_http_request_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getPost, arginfo_phalcon_http_request_getpost, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getPut, arginfo_phalcon_http_request_getput, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getQuery, arginfo_phalcon_http_request_getquery, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getHelper, arginfo_phalcon_http_request_gethelper, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Http_Request, getServer, arginfo_phalcon_http_request_getserver, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, has, arginfo_phalcon_http_request_has, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, hasPost, arginfo_phalcon_http_request_haspost, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, hasPut, arginfo_phalcon_http_request_hasput, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, hasQuery, arginfo_phalcon_http_request_hasquery, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, hasServer, arginfo_phalcon_http_request_hasserver, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Http_Request, getHeader, arginfo_phalcon_http_request_getheader, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Http_Request, getScheme, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isAjax, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isSoap, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isSoapRequested, NULL, ZEND_ACC_DEPRECATED|ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isSecure, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isSecureRequest, NULL, ZEND_ACC_DEPRECATED|ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getRawBody, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getJsonRawBody, arginfo_phalcon_http_request_getjsonrawbody, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getServerAddress, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getServerName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getHttpHost, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, setStrictHostCheck, arginfo_phalcon_http_request_setstricthostcheck, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isStrictHostCheck, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getPort, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getURI, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Http_Request, getClientAddress, arginfo_phalcon_http_request_getclientaddress, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getMethod, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Http_Request, getUserAgent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isValidHttpMethod, arginfo_phalcon_http_request_isvalidhttpmethod, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isMethod, arginfo_phalcon_http_request_ismethod, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isPost, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isGet, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isPut, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isPatch, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isHead, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isDelete, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isPurge, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isTrace, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, isConnect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, hasFiles, arginfo_phalcon_http_request_hasfiles, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, hasFileHelper, arginfo_phalcon_http_request_hasfilehelper, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Http_Request, getUploadedFiles, arginfo_phalcon_http_request_getuploadedfiles, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, smoothFiles, arginfo_phalcon_http_request_smoothfiles, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Http_Request, getHeaders, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getHTTPReferer, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, _getBestQuality, arginfo_phalcon_http_request__getbestquality, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Http_Request, getContentType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getAcceptableContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getBestAccept, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getClientCharsets, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getBestCharset, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getLanguages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getBestLanguage, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getBasicAuth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, getDigestAuth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request, _getQualityHeader, arginfo_phalcon_http_request__getqualityheader, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_FE_END
};
zend_class_entry *phalcon_http_request_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Request_Exception);
zend_class_entry *phalcon_http_request_file_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Request_File);
static PHP_METHOD(Phalcon_Http_Request_File, getError);
static PHP_METHOD(Phalcon_Http_Request_File, getKey);
static PHP_METHOD(Phalcon_Http_Request_File, getExtension);
static PHP_METHOD(Phalcon_Http_Request_File, __construct);
static PHP_METHOD(Phalcon_Http_Request_File, getSize);
static PHP_METHOD(Phalcon_Http_Request_File, getName);
static PHP_METHOD(Phalcon_Http_Request_File, getTempName);
static PHP_METHOD(Phalcon_Http_Request_File, getType);
static PHP_METHOD(Phalcon_Http_Request_File, getRealType);
static PHP_METHOD(Phalcon_Http_Request_File, isUploadedFile);
static PHP_METHOD(Phalcon_Http_Request_File, moveTo);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_file___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, file, 0)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_request_file_moveto, 0, 0, 1)
ZEND_ARG_INFO(0, destination)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_request_file_method_entry) {
PHP_ME(Phalcon_Http_Request_File, getError, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request_File, getKey, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request_File, getExtension, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request_File, __construct, arginfo_phalcon_http_request_file___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Http_Request_File, getSize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request_File, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request_File, getTempName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request_File, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request_File, getRealType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request_File, isUploadedFile, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Request_File, moveTo, arginfo_phalcon_http_request_file_moveto, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_http_response_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Response);
static PHP_METHOD(Phalcon_Http_Response, __construct);
static PHP_METHOD(Phalcon_Http_Response, setDI);
static PHP_METHOD(Phalcon_Http_Response, getDI);
static PHP_METHOD(Phalcon_Http_Response, setStatusCode);
static PHP_METHOD(Phalcon_Http_Response, getStatusCode);
static PHP_METHOD(Phalcon_Http_Response, setHeaders);
static PHP_METHOD(Phalcon_Http_Response, getHeaders);
static PHP_METHOD(Phalcon_Http_Response, setCookies);
static PHP_METHOD(Phalcon_Http_Response, getCookies);
static PHP_METHOD(Phalcon_Http_Response, setHeader);
static PHP_METHOD(Phalcon_Http_Response, setRawHeader);
static PHP_METHOD(Phalcon_Http_Response, resetHeaders);
static PHP_METHOD(Phalcon_Http_Response, setExpires);
static PHP_METHOD(Phalcon_Http_Response, setLastModified);
static PHP_METHOD(Phalcon_Http_Response, setCache);
static PHP_METHOD(Phalcon_Http_Response, setNotModified);
static PHP_METHOD(Phalcon_Http_Response, setContentType);
static PHP_METHOD(Phalcon_Http_Response, setContentLength);
static PHP_METHOD(Phalcon_Http_Response, setEtag);
static PHP_METHOD(Phalcon_Http_Response, redirect);
static PHP_METHOD(Phalcon_Http_Response, setContent);
static PHP_METHOD(Phalcon_Http_Response, setJsonContent);
static PHP_METHOD(Phalcon_Http_Response, appendContent);
static PHP_METHOD(Phalcon_Http_Response, getContent);
static PHP_METHOD(Phalcon_Http_Response, isSent);
static PHP_METHOD(Phalcon_Http_Response, sendHeaders);
static PHP_METHOD(Phalcon_Http_Response, sendCookies);
static PHP_METHOD(Phalcon_Http_Response, send);
static PHP_METHOD(Phalcon_Http_Response, setFileToSend);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response___construct, 0, 0, 0)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, code)
ZEND_ARG_INFO(0, status)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setstatuscode, 0, 0, 1)
ZEND_ARG_INFO(0, code)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setheaders, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, headers, Phalcon\\Http\\Response\\HeadersInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setcookies, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, cookies, Phalcon\\Http\\Response\\CookiesInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setheader, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setrawheader, 0, 0, 1)
ZEND_ARG_INFO(0, header)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setexpires, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, datetime, DateTime, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setlastmodified, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, datetime, DateTime, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setcache, 0, 0, 1)
ZEND_ARG_INFO(0, minutes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setcontenttype, 0, 0, 1)
ZEND_ARG_INFO(0, contentType)
ZEND_ARG_INFO(0, charset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setcontentlength, 0, 0, 1)
ZEND_ARG_INFO(0, contentLength)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setetag, 0, 0, 1)
ZEND_ARG_INFO(0, etag)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_redirect, 0, 0, 0)
ZEND_ARG_INFO(0, location)
ZEND_ARG_INFO(0, externalRedirect)
ZEND_ARG_INFO(0, statusCode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setcontent, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setjsoncontent, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_ARG_INFO(0, jsonOptions)
ZEND_ARG_INFO(0, depth)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_appendcontent, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_setfiletosend, 0, 0, 1)
ZEND_ARG_INFO(0, filePath)
ZEND_ARG_INFO(0, attachmentName)
ZEND_ARG_INFO(0, attachment)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_response_method_entry) {
PHP_ME(Phalcon_Http_Response, __construct, arginfo_phalcon_http_response___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Http_Response, setDI, arginfo_phalcon_http_response_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setStatusCode, arginfo_phalcon_http_response_setstatuscode, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, getStatusCode, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setHeaders, arginfo_phalcon_http_response_setheaders, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, getHeaders, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setCookies, arginfo_phalcon_http_response_setcookies, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, getCookies, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setHeader, arginfo_phalcon_http_response_setheader, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setRawHeader, arginfo_phalcon_http_response_setrawheader, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, resetHeaders, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setExpires, arginfo_phalcon_http_response_setexpires, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setLastModified, arginfo_phalcon_http_response_setlastmodified, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setCache, arginfo_phalcon_http_response_setcache, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setNotModified, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setContentType, arginfo_phalcon_http_response_setcontenttype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setContentLength, arginfo_phalcon_http_response_setcontentlength, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setEtag, arginfo_phalcon_http_response_setetag, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, redirect, arginfo_phalcon_http_response_redirect, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setContent, arginfo_phalcon_http_response_setcontent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setJsonContent, arginfo_phalcon_http_response_setjsoncontent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, appendContent, arginfo_phalcon_http_response_appendcontent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, isSent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, sendHeaders, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, sendCookies, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, send, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response, setFileToSend, arginfo_phalcon_http_response_setfiletosend, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_http_response_cookies_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Response_Cookies);
static PHP_METHOD(Phalcon_Http_Response_Cookies, setDI);
static PHP_METHOD(Phalcon_Http_Response_Cookies, getDI);
static PHP_METHOD(Phalcon_Http_Response_Cookies, useEncryption);
static PHP_METHOD(Phalcon_Http_Response_Cookies, isUsingEncryption);
static PHP_METHOD(Phalcon_Http_Response_Cookies, set);
static PHP_METHOD(Phalcon_Http_Response_Cookies, get);
static PHP_METHOD(Phalcon_Http_Response_Cookies, has);
static PHP_METHOD(Phalcon_Http_Response_Cookies, delete);
static PHP_METHOD(Phalcon_Http_Response_Cookies, send);
static PHP_METHOD(Phalcon_Http_Response_Cookies, reset);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookies_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookies_useencryption, 0, 0, 1)
ZEND_ARG_INFO(0, useEncryption)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookies_set, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, expire)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, secure)
ZEND_ARG_INFO(0, domain)
ZEND_ARG_INFO(0, httpOnly)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookies_get, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookies_has, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_cookies_delete, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_response_cookies_method_entry) {
PHP_ME(Phalcon_Http_Response_Cookies, setDI, arginfo_phalcon_http_response_cookies_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Cookies, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Cookies, useEncryption, arginfo_phalcon_http_response_cookies_useencryption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Cookies, isUsingEncryption, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Cookies, set, arginfo_phalcon_http_response_cookies_set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Cookies, get, arginfo_phalcon_http_response_cookies_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Cookies, has, arginfo_phalcon_http_response_cookies_has, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Cookies, delete, arginfo_phalcon_http_response_cookies_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Cookies, send, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Cookies, reset, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_http_response_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Response_Exception);
zend_class_entry *phalcon_http_response_headers_ce;
ZEPHIR_INIT_CLASS(Phalcon_Http_Response_Headers);
static PHP_METHOD(Phalcon_Http_Response_Headers, set);
static PHP_METHOD(Phalcon_Http_Response_Headers, get);
static PHP_METHOD(Phalcon_Http_Response_Headers, setRaw);
static PHP_METHOD(Phalcon_Http_Response_Headers, remove);
static PHP_METHOD(Phalcon_Http_Response_Headers, send);
static PHP_METHOD(Phalcon_Http_Response_Headers, reset);
static PHP_METHOD(Phalcon_Http_Response_Headers, toArray);
static PHP_METHOD(Phalcon_Http_Response_Headers, __set_state);
zend_object *zephir_init_properties_Phalcon_Http_Response_Headers(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_headers_set, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_headers_get, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_headers_setraw, 0, 0, 1)
ZEND_ARG_INFO(0, header)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_headers_remove, 0, 0, 1)
ZEND_ARG_INFO(0, header)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_http_response_headers___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_http_response_headers_method_entry) {
PHP_ME(Phalcon_Http_Response_Headers, set, arginfo_phalcon_http_response_headers_set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Headers, get, arginfo_phalcon_http_response_headers_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Headers, setRaw, arginfo_phalcon_http_response_headers_setraw, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Headers, remove, arginfo_phalcon_http_response_headers_remove, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Headers, send, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Headers, reset, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Headers, toArray, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Http_Response_Headers, __set_state, arginfo_phalcon_http_response_headers___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_image_ce;
ZEPHIR_INIT_CLASS(Phalcon_Image);
zend_class_entry *phalcon_image_adapter_gd_ce;
ZEPHIR_INIT_CLASS(Phalcon_Image_Adapter_Gd);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, check);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, __construct);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _resize);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _crop);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _rotate);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _flip);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _sharpen);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _reflection);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _watermark);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _text);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _mask);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _background);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _blur);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _pixelate);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _save);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _render);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, _create);
static PHP_METHOD(Phalcon_Image_Adapter_Gd, __destruct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd___construct, 0, 0, 1)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__resize, 0, 0, 2)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__crop, 0, 0, 4)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__rotate, 0, 0, 1)
ZEND_ARG_INFO(0, degrees)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__flip, 0, 0, 1)
ZEND_ARG_INFO(0, direction)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__sharpen, 0, 0, 1)
ZEND_ARG_INFO(0, amount)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__reflection, 0, 0, 3)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, opacity)
ZEND_ARG_INFO(0, fadeIn)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__watermark, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, watermark, Phalcon\\Image\\Adapter, 0)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_ARG_INFO(0, opacity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__text, 0, 0, 9)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_ARG_INFO(0, opacity)
ZEND_ARG_INFO(0, r)
ZEND_ARG_INFO(0, g)
ZEND_ARG_INFO(0, b)
ZEND_ARG_INFO(0, size)
ZEND_ARG_INFO(0, fontfile)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__mask, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, mask, Phalcon\\Image\\Adapter, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__background, 0, 0, 4)
ZEND_ARG_INFO(0, r)
ZEND_ARG_INFO(0, g)
ZEND_ARG_INFO(0, b)
ZEND_ARG_INFO(0, opacity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__blur, 0, 0, 1)
ZEND_ARG_INFO(0, radius)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__pixelate, 0, 0, 1)
ZEND_ARG_INFO(0, amount)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__save, 0, 0, 2)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, quality)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__render, 0, 0, 2)
ZEND_ARG_INFO(0, ext)
ZEND_ARG_INFO(0, quality)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_gd__create, 0, 0, 2)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_image_adapter_gd_method_entry) {
PHP_ME(Phalcon_Image_Adapter_Gd, check, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Image_Adapter_Gd, __construct, arginfo_phalcon_image_adapter_gd___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Image_Adapter_Gd, _resize, arginfo_phalcon_image_adapter_gd__resize, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _crop, arginfo_phalcon_image_adapter_gd__crop, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _rotate, arginfo_phalcon_image_adapter_gd__rotate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _flip, arginfo_phalcon_image_adapter_gd__flip, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _sharpen, arginfo_phalcon_image_adapter_gd__sharpen, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _reflection, arginfo_phalcon_image_adapter_gd__reflection, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _watermark, arginfo_phalcon_image_adapter_gd__watermark, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _text, arginfo_phalcon_image_adapter_gd__text, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _mask, arginfo_phalcon_image_adapter_gd__mask, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _background, arginfo_phalcon_image_adapter_gd__background, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _blur, arginfo_phalcon_image_adapter_gd__blur, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _pixelate, arginfo_phalcon_image_adapter_gd__pixelate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _save, arginfo_phalcon_image_adapter_gd__save, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _render, arginfo_phalcon_image_adapter_gd__render, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, _create, arginfo_phalcon_image_adapter_gd__create, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Gd, __destruct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_DTOR)
PHP_FE_END
};
zend_class_entry *phalcon_image_adapter_imagick_ce;
ZEPHIR_INIT_CLASS(Phalcon_Image_Adapter_Imagick);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, check);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, __construct);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _resize);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _liquidRescale);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _crop);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _rotate);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _flip);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _sharpen);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _reflection);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _watermark);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _text);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _mask);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _background);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _blur);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _pixelate);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _save);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, _render);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, __destruct);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, getInternalImInstance);
static PHP_METHOD(Phalcon_Image_Adapter_Imagick, setResourceLimit);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick___construct, 0, 0, 1)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__resize, 0, 0, 2)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__liquidrescale, 0, 0, 4)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, deltaX)
ZEND_ARG_INFO(0, rigidity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__crop, 0, 0, 4)
ZEND_ARG_INFO(0, width)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__rotate, 0, 0, 1)
ZEND_ARG_INFO(0, degrees)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__flip, 0, 0, 1)
ZEND_ARG_INFO(0, direction)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__sharpen, 0, 0, 1)
ZEND_ARG_INFO(0, amount)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__reflection, 0, 0, 3)
ZEND_ARG_INFO(0, height)
ZEND_ARG_INFO(0, opacity)
ZEND_ARG_INFO(0, fadeIn)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__watermark, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, image, Phalcon\\Image\\Adapter, 0)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_ARG_INFO(0, opacity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__text, 0, 0, 9)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, offsetX)
ZEND_ARG_INFO(0, offsetY)
ZEND_ARG_INFO(0, opacity)
ZEND_ARG_INFO(0, r)
ZEND_ARG_INFO(0, g)
ZEND_ARG_INFO(0, b)
ZEND_ARG_INFO(0, size)
ZEND_ARG_INFO(0, fontfile)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__mask, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, image, Phalcon\\Image\\Adapter, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__background, 0, 0, 4)
ZEND_ARG_INFO(0, r)
ZEND_ARG_INFO(0, g)
ZEND_ARG_INFO(0, b)
ZEND_ARG_INFO(0, opacity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__blur, 0, 0, 1)
ZEND_ARG_INFO(0, radius)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__pixelate, 0, 0, 1)
ZEND_ARG_INFO(0, amount)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__save, 0, 0, 2)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, quality)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick__render, 0, 0, 2)
ZEND_ARG_INFO(0, extension)
ZEND_ARG_INFO(0, quality)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_image_adapter_imagick_setresourcelimit, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, limit)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_image_adapter_imagick_method_entry) {
PHP_ME(Phalcon_Image_Adapter_Imagick, check, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Image_Adapter_Imagick, __construct, arginfo_phalcon_image_adapter_imagick___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Image_Adapter_Imagick, _resize, arginfo_phalcon_image_adapter_imagick__resize, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _liquidRescale, arginfo_phalcon_image_adapter_imagick__liquidrescale, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _crop, arginfo_phalcon_image_adapter_imagick__crop, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _rotate, arginfo_phalcon_image_adapter_imagick__rotate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _flip, arginfo_phalcon_image_adapter_imagick__flip, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _sharpen, arginfo_phalcon_image_adapter_imagick__sharpen, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _reflection, arginfo_phalcon_image_adapter_imagick__reflection, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _watermark, arginfo_phalcon_image_adapter_imagick__watermark, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _text, arginfo_phalcon_image_adapter_imagick__text, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _mask, arginfo_phalcon_image_adapter_imagick__mask, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _background, arginfo_phalcon_image_adapter_imagick__background, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _blur, arginfo_phalcon_image_adapter_imagick__blur, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _pixelate, arginfo_phalcon_image_adapter_imagick__pixelate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _save, arginfo_phalcon_image_adapter_imagick__save, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, _render, arginfo_phalcon_image_adapter_imagick__render, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Image_Adapter_Imagick, __destruct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_DTOR)
PHP_ME(Phalcon_Image_Adapter_Imagick, getInternalImInstance, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Image_Adapter_Imagick, setResourceLimit, arginfo_phalcon_image_adapter_imagick_setresourcelimit, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_image_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Image_Exception);
zend_class_entry *phalcon_kernel_ce;
ZEPHIR_INIT_CLASS(Phalcon_Kernel);
static PHP_METHOD(Phalcon_Kernel, preComputeHashKey);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_kernel_precomputehashkey, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_kernel_method_entry) {
PHP_ME(Phalcon_Kernel, preComputeHashKey, arginfo_phalcon_kernel_precomputehashkey, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_loader_ce;
ZEPHIR_INIT_CLASS(Phalcon_Loader);
static PHP_METHOD(Phalcon_Loader, setEventsManager);
static PHP_METHOD(Phalcon_Loader, getEventsManager);
static PHP_METHOD(Phalcon_Loader, setExtensions);
static PHP_METHOD(Phalcon_Loader, getExtensions);
static PHP_METHOD(Phalcon_Loader, registerNamespaces);
static PHP_METHOD(Phalcon_Loader, prepareNamespace);
static PHP_METHOD(Phalcon_Loader, getNamespaces);
static PHP_METHOD(Phalcon_Loader, registerDirs);
static PHP_METHOD(Phalcon_Loader, getDirs);
static PHP_METHOD(Phalcon_Loader, registerFiles);
static PHP_METHOD(Phalcon_Loader, getFiles);
static PHP_METHOD(Phalcon_Loader, registerClasses);
static PHP_METHOD(Phalcon_Loader, getClasses);
static PHP_METHOD(Phalcon_Loader, register);
static PHP_METHOD(Phalcon_Loader, unregister);
static PHP_METHOD(Phalcon_Loader, loadFiles);
static PHP_METHOD(Phalcon_Loader, autoLoad);
static PHP_METHOD(Phalcon_Loader, getFoundPath);
static PHP_METHOD(Phalcon_Loader, getCheckedPath);
zend_object *zephir_init_properties_Phalcon_Loader(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_loader_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_loader_setextensions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, extensions, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_loader_registernamespaces, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, namespaces, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_loader_preparenamespace, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, namespace, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_loader_registerdirs, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, directories, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_loader_registerfiles, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, files, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_loader_registerclasses, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, classes, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_loader_autoload, 0, 0, 1)
ZEND_ARG_INFO(0, className)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_loader_method_entry) {
PHP_ME(Phalcon_Loader, setEventsManager, arginfo_phalcon_loader_seteventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, getEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, setExtensions, arginfo_phalcon_loader_setextensions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, getExtensions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, registerNamespaces, arginfo_phalcon_loader_registernamespaces, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, prepareNamespace, arginfo_phalcon_loader_preparenamespace, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Loader, getNamespaces, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, registerDirs, arginfo_phalcon_loader_registerdirs, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, getDirs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, registerFiles, arginfo_phalcon_loader_registerfiles, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, getFiles, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, registerClasses, arginfo_phalcon_loader_registerclasses, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, getClasses, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, register, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, unregister, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, loadFiles, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, autoLoad, arginfo_phalcon_loader_autoload, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, getFoundPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Loader, getCheckedPath, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_loader_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Loader_Exception);
zend_class_entry *phalcon_logger_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger);
zend_class_entry *phalcon_logger_adapter_file_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Adapter_File);
static PHP_METHOD(Phalcon_Logger_Adapter_File, getPath);
static PHP_METHOD(Phalcon_Logger_Adapter_File, __construct);
static PHP_METHOD(Phalcon_Logger_Adapter_File, getFormatter);
static PHP_METHOD(Phalcon_Logger_Adapter_File, logInternal);
static PHP_METHOD(Phalcon_Logger_Adapter_File, close);
static PHP_METHOD(Phalcon_Logger_Adapter_File, __wakeup);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_file___construct, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_file_loginternal, 0, 0, 4)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, time)
ZEND_ARG_ARRAY_INFO(0, context, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_adapter_file_method_entry) {
PHP_ME(Phalcon_Logger_Adapter_File, getPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_File, __construct, arginfo_phalcon_logger_adapter_file___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Logger_Adapter_File, getFormatter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_File, logInternal, arginfo_phalcon_logger_adapter_file_loginternal, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_File, close, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_File, __wakeup, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_logger_adapter_firephp_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Adapter_Firephp);
static PHP_METHOD(Phalcon_Logger_Adapter_Firephp, getFormatter);
static PHP_METHOD(Phalcon_Logger_Adapter_Firephp, logInternal);
static PHP_METHOD(Phalcon_Logger_Adapter_Firephp, close);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_firephp_loginternal, 0, 0, 4)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, time)
ZEND_ARG_ARRAY_INFO(0, context, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_adapter_firephp_method_entry) {
PHP_ME(Phalcon_Logger_Adapter_Firephp, getFormatter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_Firephp, logInternal, arginfo_phalcon_logger_adapter_firephp_loginternal, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_Firephp, close, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_logger_adapter_stream_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Adapter_Stream);
static PHP_METHOD(Phalcon_Logger_Adapter_Stream, __construct);
static PHP_METHOD(Phalcon_Logger_Adapter_Stream, getFormatter);
static PHP_METHOD(Phalcon_Logger_Adapter_Stream, logInternal);
static PHP_METHOD(Phalcon_Logger_Adapter_Stream, close);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_stream___construct, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_stream_loginternal, 0, 0, 4)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, time)
ZEND_ARG_ARRAY_INFO(0, context, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_adapter_stream_method_entry) {
PHP_ME(Phalcon_Logger_Adapter_Stream, __construct, arginfo_phalcon_logger_adapter_stream___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Logger_Adapter_Stream, getFormatter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_Stream, logInternal, arginfo_phalcon_logger_adapter_stream_loginternal, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_Stream, close, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_logger_adapter_syslog_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Adapter_Syslog);
static PHP_METHOD(Phalcon_Logger_Adapter_Syslog, __construct);
static PHP_METHOD(Phalcon_Logger_Adapter_Syslog, getFormatter);
static PHP_METHOD(Phalcon_Logger_Adapter_Syslog, logInternal);
static PHP_METHOD(Phalcon_Logger_Adapter_Syslog, close);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_syslog___construct, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_adapter_syslog_loginternal, 0, 0, 4)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, time)
ZEND_ARG_ARRAY_INFO(0, context, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_adapter_syslog_method_entry) {
PHP_ME(Phalcon_Logger_Adapter_Syslog, __construct, arginfo_phalcon_logger_adapter_syslog___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Logger_Adapter_Syslog, getFormatter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_Syslog, logInternal, arginfo_phalcon_logger_adapter_syslog_loginternal, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Adapter_Syslog, close, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_logger_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Exception);
zend_class_entry *phalcon_logger_formatter_firephp_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Formatter_Firephp);
static PHP_METHOD(Phalcon_Logger_Formatter_Firephp, getTypeString);
static PHP_METHOD(Phalcon_Logger_Formatter_Firephp, setShowBacktrace);
static PHP_METHOD(Phalcon_Logger_Formatter_Firephp, getShowBacktrace);
static PHP_METHOD(Phalcon_Logger_Formatter_Firephp, enableLabels);
static PHP_METHOD(Phalcon_Logger_Formatter_Firephp, labelsEnabled);
static PHP_METHOD(Phalcon_Logger_Formatter_Firephp, format);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_firephp_gettypestring, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_firephp_setshowbacktrace, 0, 0, 0)
ZEND_ARG_INFO(0, isShow)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_firephp_enablelabels, 0, 0, 0)
ZEND_ARG_INFO(0, isEnable)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_firephp_format, 0, 0, 3)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, timestamp)
ZEND_ARG_INFO(0, context)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_formatter_firephp_method_entry) {
PHP_ME(Phalcon_Logger_Formatter_Firephp, getTypeString, arginfo_phalcon_logger_formatter_firephp_gettypestring, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter_Firephp, setShowBacktrace, arginfo_phalcon_logger_formatter_firephp_setshowbacktrace, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter_Firephp, getShowBacktrace, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter_Firephp, enableLabels, arginfo_phalcon_logger_formatter_firephp_enablelabels, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter_Firephp, labelsEnabled, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter_Firephp, format, arginfo_phalcon_logger_formatter_firephp_format, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_logger_formatter_json_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Formatter_Json);
static PHP_METHOD(Phalcon_Logger_Formatter_Json, format);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_json_format, 0, 0, 3)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, timestamp)
ZEND_ARG_INFO(0, context)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_formatter_json_method_entry) {
PHP_ME(Phalcon_Logger_Formatter_Json, format, arginfo_phalcon_logger_formatter_json_format, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_logger_formatter_line_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Formatter_Line);
static PHP_METHOD(Phalcon_Logger_Formatter_Line, getDateFormat);
static PHP_METHOD(Phalcon_Logger_Formatter_Line, setDateFormat);
static PHP_METHOD(Phalcon_Logger_Formatter_Line, getFormat);
static PHP_METHOD(Phalcon_Logger_Formatter_Line, setFormat);
static PHP_METHOD(Phalcon_Logger_Formatter_Line, __construct);
static PHP_METHOD(Phalcon_Logger_Formatter_Line, format);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_line_setdateformat, 0, 0, 1)
ZEND_ARG_INFO(0, dateFormat)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_line_setformat, 0, 0, 1)
ZEND_ARG_INFO(0, format)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_line___construct, 0, 0, 0)
ZEND_ARG_INFO(0, format)
ZEND_ARG_INFO(0, dateFormat)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_line_format, 0, 0, 3)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, timestamp)
ZEND_ARG_INFO(0, context)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_formatter_line_method_entry) {
PHP_ME(Phalcon_Logger_Formatter_Line, getDateFormat, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter_Line, setDateFormat, arginfo_phalcon_logger_formatter_line_setdateformat, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter_Line, getFormat, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter_Line, setFormat, arginfo_phalcon_logger_formatter_line_setformat, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Formatter_Line, __construct, arginfo_phalcon_logger_formatter_line___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Logger_Formatter_Line, format, arginfo_phalcon_logger_formatter_line_format, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_logger_formatter_syslog_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Formatter_Syslog);
static PHP_METHOD(Phalcon_Logger_Formatter_Syslog, format);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_formatter_syslog_format, 0, 0, 3)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, timestamp)
ZEND_ARG_INFO(0, context)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_formatter_syslog_method_entry) {
PHP_ME(Phalcon_Logger_Formatter_Syslog, format, arginfo_phalcon_logger_formatter_syslog_format, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_logger_item_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Item);
static PHP_METHOD(Phalcon_Logger_Item, getType);
static PHP_METHOD(Phalcon_Logger_Item, getMessage);
static PHP_METHOD(Phalcon_Logger_Item, getTime);
static PHP_METHOD(Phalcon_Logger_Item, getContext);
static PHP_METHOD(Phalcon_Logger_Item, __construct);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_item___construct, 0, 0, 2)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, time)
ZEND_ARG_INFO(0, context)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_item_method_entry) {
PHP_ME(Phalcon_Logger_Item, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Item, getMessage, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Item, getTime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Item, getContext, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Item, __construct, arginfo_phalcon_logger_item___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_logger_multiple_ce;
ZEPHIR_INIT_CLASS(Phalcon_Logger_Multiple);
static PHP_METHOD(Phalcon_Logger_Multiple, getLoggers);
static PHP_METHOD(Phalcon_Logger_Multiple, getFormatter);
static PHP_METHOD(Phalcon_Logger_Multiple, getLogLevel);
static PHP_METHOD(Phalcon_Logger_Multiple, push);
static PHP_METHOD(Phalcon_Logger_Multiple, setFormatter);
static PHP_METHOD(Phalcon_Logger_Multiple, setLogLevel);
static PHP_METHOD(Phalcon_Logger_Multiple, log);
static PHP_METHOD(Phalcon_Logger_Multiple, critical);
static PHP_METHOD(Phalcon_Logger_Multiple, emergency);
static PHP_METHOD(Phalcon_Logger_Multiple, debug);
static PHP_METHOD(Phalcon_Logger_Multiple, error);
static PHP_METHOD(Phalcon_Logger_Multiple, info);
static PHP_METHOD(Phalcon_Logger_Multiple, notice);
static PHP_METHOD(Phalcon_Logger_Multiple, warning);
static PHP_METHOD(Phalcon_Logger_Multiple, alert);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_push, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, logger, Phalcon\\Logger\\AdapterInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_setformatter, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, formatter, Phalcon\\Logger\\FormatterInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_setloglevel, 0, 0, 1)
ZEND_ARG_INFO(0, level)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_log, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_critical, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_emergency, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_debug, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_error, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_info, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_notice, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_warning, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_logger_multiple_alert, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_ARRAY_INFO(0, context, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_logger_multiple_method_entry) {
PHP_ME(Phalcon_Logger_Multiple, getLoggers, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, getFormatter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, getLogLevel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, push, arginfo_phalcon_logger_multiple_push, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, setFormatter, arginfo_phalcon_logger_multiple_setformatter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, setLogLevel, arginfo_phalcon_logger_multiple_setloglevel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, log, arginfo_phalcon_logger_multiple_log, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, critical, arginfo_phalcon_logger_multiple_critical, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, emergency, arginfo_phalcon_logger_multiple_emergency, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, debug, arginfo_phalcon_logger_multiple_debug, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, error, arginfo_phalcon_logger_multiple_error, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, info, arginfo_phalcon_logger_multiple_info, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, notice, arginfo_phalcon_logger_multiple_notice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, warning, arginfo_phalcon_logger_multiple_warning, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Logger_Multiple, alert, arginfo_phalcon_logger_multiple_alert, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_application_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Application);
static PHP_METHOD(Phalcon_Mvc_Application, useImplicitView);
static PHP_METHOD(Phalcon_Mvc_Application, handle);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_application_useimplicitview, 0, 0, 1)
ZEND_ARG_INFO(0, implicitView)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_application_handle, 0, 0, 0)
ZEND_ARG_INFO(0, uri)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_application_method_entry) {
PHP_ME(Phalcon_Mvc_Application, useImplicitView, arginfo_phalcon_mvc_application_useimplicitview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Application, handle, arginfo_phalcon_mvc_application_handle, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_application_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Application_Exception);
zend_class_entry *phalcon_mvc_collection_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Collection);
static PHP_METHOD(Phalcon_Mvc_Collection, __construct);
static PHP_METHOD(Phalcon_Mvc_Collection, setId);
static PHP_METHOD(Phalcon_Mvc_Collection, getId);
static PHP_METHOD(Phalcon_Mvc_Collection, setDI);
static PHP_METHOD(Phalcon_Mvc_Collection, getDI);
static PHP_METHOD(Phalcon_Mvc_Collection, setEventsManager);
static PHP_METHOD(Phalcon_Mvc_Collection, getEventsManager);
static PHP_METHOD(Phalcon_Mvc_Collection, getCollectionManager);
static PHP_METHOD(Phalcon_Mvc_Collection, getReservedAttributes);
static PHP_METHOD(Phalcon_Mvc_Collection, useImplicitObjectIds);
static PHP_METHOD(Phalcon_Mvc_Collection, setSource);
static PHP_METHOD(Phalcon_Mvc_Collection, getSource);
static PHP_METHOD(Phalcon_Mvc_Collection, setConnectionService);
static PHP_METHOD(Phalcon_Mvc_Collection, getConnectionService);
static PHP_METHOD(Phalcon_Mvc_Collection, getConnection);
static PHP_METHOD(Phalcon_Mvc_Collection, readAttribute);
static PHP_METHOD(Phalcon_Mvc_Collection, writeAttribute);
static PHP_METHOD(Phalcon_Mvc_Collection, cloneResult);
static PHP_METHOD(Phalcon_Mvc_Collection, _getResultset);
static PHP_METHOD(Phalcon_Mvc_Collection, _getGroupResultset);
static PHP_METHOD(Phalcon_Mvc_Collection, _preSave);
static PHP_METHOD(Phalcon_Mvc_Collection, _postSave);
static PHP_METHOD(Phalcon_Mvc_Collection, validate);
static PHP_METHOD(Phalcon_Mvc_Collection, validationHasFailed);
static PHP_METHOD(Phalcon_Mvc_Collection, fireEvent);
static PHP_METHOD(Phalcon_Mvc_Collection, fireEventCancel);
static PHP_METHOD(Phalcon_Mvc_Collection, _cancelOperation);
static PHP_METHOD(Phalcon_Mvc_Collection, _exists);
static PHP_METHOD(Phalcon_Mvc_Collection, getMessages);
static PHP_METHOD(Phalcon_Mvc_Collection, appendMessage);
static PHP_METHOD(Phalcon_Mvc_Collection, prepareCU);
static PHP_METHOD(Phalcon_Mvc_Collection, save);
static PHP_METHOD(Phalcon_Mvc_Collection, create);
static PHP_METHOD(Phalcon_Mvc_Collection, createIfNotExist);
static PHP_METHOD(Phalcon_Mvc_Collection, update);
static PHP_METHOD(Phalcon_Mvc_Collection, findById);
static PHP_METHOD(Phalcon_Mvc_Collection, findFirst);
static PHP_METHOD(Phalcon_Mvc_Collection, find);
static PHP_METHOD(Phalcon_Mvc_Collection, count);
static PHP_METHOD(Phalcon_Mvc_Collection, aggregate);
static PHP_METHOD(Phalcon_Mvc_Collection, summatory);
static PHP_METHOD(Phalcon_Mvc_Collection, delete);
static PHP_METHOD(Phalcon_Mvc_Collection, addBehavior);
static PHP_METHOD(Phalcon_Mvc_Collection, skipOperation);
static PHP_METHOD(Phalcon_Mvc_Collection, toArray);
static PHP_METHOD(Phalcon_Mvc_Collection, serialize);
static PHP_METHOD(Phalcon_Mvc_Collection, unserialize);
zend_object *zephir_init_properties_Phalcon_Mvc_Collection(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection___construct, 0, 0, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_ARG_OBJ_INFO(0, modelsManager, Phalcon\\Mvc\\Collection\\ManagerInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_setid, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Mvc\\Collection\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_useimplicitobjectids, 0, 0, 1)
ZEND_ARG_INFO(0, useImplicitObjectIds)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_setsource, 0, 0, 1)
ZEND_ARG_INFO(0, source)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_setconnectionservice, 0, 0, 1)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_readattribute, 0, 0, 1)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_writeattribute, 0, 0, 2)
ZEND_ARG_INFO(0, attribute)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_cloneresult, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_ARRAY_INFO(0, document, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection__getresultset, 0, 0, 4)
ZEND_ARG_INFO(0, params)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_INFO(0, connection)
ZEND_ARG_INFO(0, unique)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection__getgroupresultset, 0, 0, 3)
ZEND_ARG_INFO(0, params)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Mvc\\Collection, 0)
ZEND_ARG_INFO(0, connection)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection__presave, 0, 0, 3)
ZEND_ARG_INFO(0, dependencyInjector)
ZEND_ARG_INFO(0, disableEvents)
ZEND_ARG_INFO(0, exists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection__postsave, 0, 0, 3)
ZEND_ARG_INFO(0, disableEvents)
ZEND_ARG_INFO(0, success)
ZEND_ARG_INFO(0, exists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, validator, Phalcon\\Mvc\\Model\\ValidatorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_fireevent, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_fireeventcancel, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection__canceloperation, 0, 0, 1)
ZEND_ARG_INFO(0, disableEvents)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection__exists, 0, 0, 1)
ZEND_ARG_INFO(0, collection)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_appendmessage, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, message, Phalcon\\Mvc\\Model\\MessageInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_createifnotexist, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, criteria, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_findbyid, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_findfirst, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_find, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_count, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_aggregate, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_summatory, 0, 0, 1)
ZEND_ARG_INFO(0, field)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, finalize)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_addbehavior, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, behavior, Phalcon\\Mvc\\Collection\\BehaviorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_skipoperation, 0, 0, 1)
ZEND_ARG_INFO(0, skip)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_unserialize, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_collection_method_entry) {
PHP_ME(Phalcon_Mvc_Collection, __construct, arginfo_phalcon_mvc_collection___construct, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Collection, setId, arginfo_phalcon_mvc_collection_setid, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, getId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, setDI, arginfo_phalcon_mvc_collection_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, setEventsManager, arginfo_phalcon_mvc_collection_seteventsmanager, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection, getEventsManager, NULL, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection, getCollectionManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, getReservedAttributes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, useImplicitObjectIds, arginfo_phalcon_mvc_collection_useimplicitobjectids, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection, setSource, arginfo_phalcon_mvc_collection_setsource, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection, getSource, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, setConnectionService, arginfo_phalcon_mvc_collection_setconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, getConnectionService, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, getConnection, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, readAttribute, arginfo_phalcon_mvc_collection_readattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, writeAttribute, arginfo_phalcon_mvc_collection_writeattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, cloneResult, arginfo_phalcon_mvc_collection_cloneresult, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Collection, _getResultset, arginfo_phalcon_mvc_collection__getresultset, ZEND_ACC_PROTECTED|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Collection, _getGroupResultset, arginfo_phalcon_mvc_collection__getgroupresultset, ZEND_ACC_PROTECTED|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Collection, _preSave, arginfo_phalcon_mvc_collection__presave, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Collection, _postSave, arginfo_phalcon_mvc_collection__postsave, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Collection, validate, arginfo_phalcon_mvc_collection_validate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection, validationHasFailed, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, fireEvent, arginfo_phalcon_mvc_collection_fireevent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, fireEventCancel, arginfo_phalcon_mvc_collection_fireeventcancel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, _cancelOperation, arginfo_phalcon_mvc_collection__canceloperation, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection, _exists, arginfo_phalcon_mvc_collection__exists, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection, getMessages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, appendMessage, arginfo_phalcon_mvc_collection_appendmessage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, prepareCU, NULL, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection, save, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, create, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, createIfNotExist, arginfo_phalcon_mvc_collection_createifnotexist, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, update, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, findById, arginfo_phalcon_mvc_collection_findbyid, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Collection, findFirst, arginfo_phalcon_mvc_collection_findfirst, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Collection, find, arginfo_phalcon_mvc_collection_find, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Collection, count, arginfo_phalcon_mvc_collection_count, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Collection, aggregate, arginfo_phalcon_mvc_collection_aggregate, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Collection, summatory, arginfo_phalcon_mvc_collection_summatory, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Collection, delete, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, addBehavior, arginfo_phalcon_mvc_collection_addbehavior, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Collection, skipOperation, arginfo_phalcon_mvc_collection_skipoperation, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, toArray, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, serialize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection, unserialize, arginfo_phalcon_mvc_collection_unserialize, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_collection_behavior_softdelete_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Collection_Behavior_SoftDelete);
static PHP_METHOD(Phalcon_Mvc_Collection_Behavior_SoftDelete, notify);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_behavior_softdelete_notify, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_collection_behavior_softdelete_method_entry) {
PHP_ME(Phalcon_Mvc_Collection_Behavior_SoftDelete, notify, arginfo_phalcon_mvc_collection_behavior_softdelete_notify, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_collection_behavior_timestampable_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Collection_Behavior_Timestampable);
static PHP_METHOD(Phalcon_Mvc_Collection_Behavior_Timestampable, notify);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_behavior_timestampable_notify, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_collection_behavior_timestampable_method_entry) {
PHP_ME(Phalcon_Mvc_Collection_Behavior_Timestampable, notify, arginfo_phalcon_mvc_collection_behavior_timestampable_notify, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_collection_document_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Collection_Document);
static PHP_METHOD(Phalcon_Mvc_Collection_Document, offsetExists);
static PHP_METHOD(Phalcon_Mvc_Collection_Document, offsetGet);
static PHP_METHOD(Phalcon_Mvc_Collection_Document, offsetSet);
static PHP_METHOD(Phalcon_Mvc_Collection_Document, offsetUnset);
static PHP_METHOD(Phalcon_Mvc_Collection_Document, readAttribute);
static PHP_METHOD(Phalcon_Mvc_Collection_Document, writeAttribute);
static PHP_METHOD(Phalcon_Mvc_Collection_Document, toArray);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_document_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_document_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_document_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_document_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_document_readattribute, 0, 0, 1)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_document_writeattribute, 0, 0, 2)
ZEND_ARG_INFO(0, attribute)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_collection_document_method_entry) {
PHP_ME(Phalcon_Mvc_Collection_Document, offsetExists, arginfo_phalcon_mvc_collection_document_offsetexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Document, offsetGet, arginfo_phalcon_mvc_collection_document_offsetget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Document, offsetSet, arginfo_phalcon_mvc_collection_document_offsetset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Document, offsetUnset, arginfo_phalcon_mvc_collection_document_offsetunset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Document, readAttribute, arginfo_phalcon_mvc_collection_document_readattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Document, writeAttribute, arginfo_phalcon_mvc_collection_document_writeattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Document, toArray, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_collection_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Collection_Exception);
zend_class_entry *phalcon_mvc_collection_manager_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Collection_Manager);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, getServiceName);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, setServiceName);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, setDI);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, getDI);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, setEventsManager);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, getEventsManager);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, setCustomEventsManager);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, getCustomEventsManager);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, initialize);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, isInitialized);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, getLastInitialized);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, setConnectionService);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, getConnectionService);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, useImplicitObjectIds);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, isUsingImplicitObjectIds);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, getConnection);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, notifyEvent);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, missingMethod);
static PHP_METHOD(Phalcon_Mvc_Collection_Manager, addBehavior);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_setservicename, 0, 0, 1)
ZEND_ARG_INFO(0, serviceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_setcustomeventsmanager, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_getcustomeventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_initialize, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_isinitialized, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_setconnectionservice, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_getconnectionservice, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_useimplicitobjectids, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_INFO(0, useImplicitObjectIds)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_isusingimplicitobjectids, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_getconnection, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_notifyevent, 0, 0, 2)
ZEND_ARG_INFO(0, eventName)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_missingmethod, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_INFO(0, eventName)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_manager_addbehavior, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_OBJ_INFO(0, behavior, Phalcon\\Mvc\\Collection\\BehaviorInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_collection_manager_method_entry) {
PHP_ME(Phalcon_Mvc_Collection_Manager, getServiceName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, setServiceName, arginfo_phalcon_mvc_collection_manager_setservicename, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, setDI, arginfo_phalcon_mvc_collection_manager_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, setEventsManager, arginfo_phalcon_mvc_collection_manager_seteventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, getEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, setCustomEventsManager, arginfo_phalcon_mvc_collection_manager_setcustomeventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, getCustomEventsManager, arginfo_phalcon_mvc_collection_manager_getcustomeventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, initialize, arginfo_phalcon_mvc_collection_manager_initialize, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, isInitialized, arginfo_phalcon_mvc_collection_manager_isinitialized, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, getLastInitialized, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, setConnectionService, arginfo_phalcon_mvc_collection_manager_setconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, getConnectionService, arginfo_phalcon_mvc_collection_manager_getconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, useImplicitObjectIds, arginfo_phalcon_mvc_collection_manager_useimplicitobjectids, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, isUsingImplicitObjectIds, arginfo_phalcon_mvc_collection_manager_isusingimplicitobjectids, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, getConnection, arginfo_phalcon_mvc_collection_manager_getconnection, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, notifyEvent, arginfo_phalcon_mvc_collection_manager_notifyevent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, missingMethod, arginfo_phalcon_mvc_collection_manager_missingmethod, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Collection_Manager, addBehavior, arginfo_phalcon_mvc_collection_manager_addbehavior, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_collection_managerinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Collection_ManagerInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_setcustomeventsmanager, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_getcustomeventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_initialize, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_isinitialized, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_setconnectionservice, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_useimplicitobjectids, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_INFO(0, useImplicitObjectIds)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_isusingimplicitobjectids, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_getconnection, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_notifyevent, 0, 0, 2)
ZEND_ARG_INFO(0, eventName)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_collection_managerinterface_addbehavior, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\CollectionInterface, 0)
ZEND_ARG_OBJ_INFO(0, behavior, Phalcon\\Mvc\\Collection\\BehaviorInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_collection_managerinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, setCustomEventsManager, arginfo_phalcon_mvc_collection_managerinterface_setcustomeventsmanager)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, getCustomEventsManager, arginfo_phalcon_mvc_collection_managerinterface_getcustomeventsmanager)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, initialize, arginfo_phalcon_mvc_collection_managerinterface_initialize)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, isInitialized, arginfo_phalcon_mvc_collection_managerinterface_isinitialized)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, getLastInitialized, NULL)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, setConnectionService, arginfo_phalcon_mvc_collection_managerinterface_setconnectionservice)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, useImplicitObjectIds, arginfo_phalcon_mvc_collection_managerinterface_useimplicitobjectids)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, isUsingImplicitObjectIds, arginfo_phalcon_mvc_collection_managerinterface_isusingimplicitobjectids)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, getConnection, arginfo_phalcon_mvc_collection_managerinterface_getconnection)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, notifyEvent, arginfo_phalcon_mvc_collection_managerinterface_notifyevent)
PHP_ABSTRACT_ME(Phalcon_Mvc_Collection_ManagerInterface, addBehavior, arginfo_phalcon_mvc_collection_managerinterface_addbehavior)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_controller_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Controller);
static PHP_METHOD(Phalcon_Mvc_Controller, __construct);
ZEPHIR_INIT_FUNCS(phalcon_mvc_controller_method_entry) {
PHP_ME(Phalcon_Mvc_Controller, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL|ZEND_ACC_CTOR)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_controller_bindmodelinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Controller_BindModelInterface);
ZEPHIR_INIT_FUNCS(phalcon_mvc_controller_bindmodelinterface_method_entry) {
ZEND_FENTRY(getModelName, NULL, NULL, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_dispatcher_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Dispatcher);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, setControllerSuffix);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, setDefaultController);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, setControllerName);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, getControllerName);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, getPreviousNamespaceName);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, getPreviousControllerName);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, getPreviousActionName);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, _throwDispatchException);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, _handleException);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, getControllerClass);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, getLastController);
static PHP_METHOD(Phalcon_Mvc_Dispatcher, getActiveController);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_dispatcher_setcontrollersuffix, 0, 0, 1)
ZEND_ARG_INFO(0, controllerSuffix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_dispatcher_setdefaultcontroller, 0, 0, 1)
ZEND_ARG_INFO(0, controllerName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_dispatcher_setcontrollername, 0, 0, 1)
ZEND_ARG_INFO(0, controllerName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_dispatcher__throwdispatchexception, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, exceptionCode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_dispatcher__handleexception, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, exception, Exception, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_dispatcher_method_entry) {
PHP_ME(Phalcon_Mvc_Dispatcher, setControllerSuffix, arginfo_phalcon_mvc_dispatcher_setcontrollersuffix, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Dispatcher, setDefaultController, arginfo_phalcon_mvc_dispatcher_setdefaultcontroller, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Dispatcher, setControllerName, arginfo_phalcon_mvc_dispatcher_setcontrollername, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Dispatcher, getControllerName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Dispatcher, getPreviousNamespaceName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Dispatcher, getPreviousControllerName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Dispatcher, getPreviousActionName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Dispatcher, _throwDispatchException, arginfo_phalcon_mvc_dispatcher__throwdispatchexception, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Dispatcher, _handleException, arginfo_phalcon_mvc_dispatcher__handleexception, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Dispatcher, getControllerClass, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Dispatcher, getLastController, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Dispatcher, getActiveController, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_dispatcher_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Dispatcher_Exception);
zend_class_entry *phalcon_mvc_micro_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Micro);
static PHP_METHOD(Phalcon_Mvc_Micro, __construct);
static PHP_METHOD(Phalcon_Mvc_Micro, setDI);
static PHP_METHOD(Phalcon_Mvc_Micro, map);
static PHP_METHOD(Phalcon_Mvc_Micro, get);
static PHP_METHOD(Phalcon_Mvc_Micro, post);
static PHP_METHOD(Phalcon_Mvc_Micro, put);
static PHP_METHOD(Phalcon_Mvc_Micro, patch);
static PHP_METHOD(Phalcon_Mvc_Micro, head);
static PHP_METHOD(Phalcon_Mvc_Micro, delete);
static PHP_METHOD(Phalcon_Mvc_Micro, options);
static PHP_METHOD(Phalcon_Mvc_Micro, mount);
static PHP_METHOD(Phalcon_Mvc_Micro, notFound);
static PHP_METHOD(Phalcon_Mvc_Micro, error);
static PHP_METHOD(Phalcon_Mvc_Micro, getRouter);
static PHP_METHOD(Phalcon_Mvc_Micro, setService);
static PHP_METHOD(Phalcon_Mvc_Micro, hasService);
static PHP_METHOD(Phalcon_Mvc_Micro, getService);
static PHP_METHOD(Phalcon_Mvc_Micro, getSharedService);
static PHP_METHOD(Phalcon_Mvc_Micro, handle);
static PHP_METHOD(Phalcon_Mvc_Micro, stop);
static PHP_METHOD(Phalcon_Mvc_Micro, setActiveHandler);
static PHP_METHOD(Phalcon_Mvc_Micro, getActiveHandler);
static PHP_METHOD(Phalcon_Mvc_Micro, getReturnedValue);
static PHP_METHOD(Phalcon_Mvc_Micro, offsetExists);
static PHP_METHOD(Phalcon_Mvc_Micro, offsetSet);
static PHP_METHOD(Phalcon_Mvc_Micro, offsetGet);
static PHP_METHOD(Phalcon_Mvc_Micro, offsetUnset);
static PHP_METHOD(Phalcon_Mvc_Micro, before);
static PHP_METHOD(Phalcon_Mvc_Micro, after);
static PHP_METHOD(Phalcon_Mvc_Micro, finish);
static PHP_METHOD(Phalcon_Mvc_Micro, getHandlers);
zend_object *zephir_init_properties_Phalcon_Mvc_Micro(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro___construct, 0, 0, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_map, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_get, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_post, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_put, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_patch, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_head, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_delete, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_options, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_mount, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, collection, Phalcon\\Mvc\\Micro\\CollectionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_notfound, 0, 0, 1)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_error, 0, 0, 1)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_setservice, 0, 0, 2)
ZEND_ARG_INFO(0, serviceName)
ZEND_ARG_INFO(0, definition)
ZEND_ARG_INFO(0, shared)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_hasservice, 0, 0, 1)
ZEND_ARG_INFO(0, serviceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_getservice, 0, 0, 1)
ZEND_ARG_INFO(0, serviceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_getsharedservice, 0, 0, 1)
ZEND_ARG_INFO(0, serviceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_handle, 0, 0, 0)
ZEND_ARG_INFO(0, uri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_setactivehandler, 0, 0, 1)
ZEND_ARG_INFO(0, activeHandler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, definition)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_before, 0, 0, 1)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_after, 0, 0, 1)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_finish, 0, 0, 1)
ZEND_ARG_INFO(0, handler)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_micro_method_entry) {
PHP_ME(Phalcon_Mvc_Micro, __construct, arginfo_phalcon_mvc_micro___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Micro, setDI, arginfo_phalcon_mvc_micro_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, map, arginfo_phalcon_mvc_micro_map, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, get, arginfo_phalcon_mvc_micro_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, post, arginfo_phalcon_mvc_micro_post, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, put, arginfo_phalcon_mvc_micro_put, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, patch, arginfo_phalcon_mvc_micro_patch, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, head, arginfo_phalcon_mvc_micro_head, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, delete, arginfo_phalcon_mvc_micro_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, options, arginfo_phalcon_mvc_micro_options, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, mount, arginfo_phalcon_mvc_micro_mount, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, notFound, arginfo_phalcon_mvc_micro_notfound, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, error, arginfo_phalcon_mvc_micro_error, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, getRouter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, setService, arginfo_phalcon_mvc_micro_setservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, hasService, arginfo_phalcon_mvc_micro_hasservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, getService, arginfo_phalcon_mvc_micro_getservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, getSharedService, arginfo_phalcon_mvc_micro_getsharedservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, handle, arginfo_phalcon_mvc_micro_handle, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, stop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, setActiveHandler, arginfo_phalcon_mvc_micro_setactivehandler, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, getActiveHandler, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, getReturnedValue, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, offsetExists, arginfo_phalcon_mvc_micro_offsetexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, offsetSet, arginfo_phalcon_mvc_micro_offsetset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, offsetGet, arginfo_phalcon_mvc_micro_offsetget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, offsetUnset, arginfo_phalcon_mvc_micro_offsetunset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, before, arginfo_phalcon_mvc_micro_before, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, after, arginfo_phalcon_mvc_micro_after, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, finish, arginfo_phalcon_mvc_micro_finish, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro, getHandlers, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_micro_collection_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Micro_Collection);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, _addMap);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, setPrefix);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, getPrefix);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, getHandlers);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, setHandler);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, setLazy);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, isLazy);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, getHandler);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, map);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, get);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, post);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, put);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, patch);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, head);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, delete);
static PHP_METHOD(Phalcon_Mvc_Micro_Collection, options);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection__addmap, 0, 0, 4)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_setprefix, 0, 0, 1)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_sethandler, 0, 0, 1)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, lazy)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_setlazy, 0, 0, 1)
ZEND_ARG_INFO(0, lazy)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_map, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_get, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_post, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_put, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_patch, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_head, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_delete, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_collection_options, 0, 0, 2)
ZEND_ARG_INFO(0, routePattern)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_micro_collection_method_entry) {
PHP_ME(Phalcon_Mvc_Micro_Collection, _addMap, arginfo_phalcon_mvc_micro_collection__addmap, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Micro_Collection, setPrefix, arginfo_phalcon_mvc_micro_collection_setprefix, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, getPrefix, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, getHandlers, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, setHandler, arginfo_phalcon_mvc_micro_collection_sethandler, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, setLazy, arginfo_phalcon_mvc_micro_collection_setlazy, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, isLazy, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, getHandler, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, map, arginfo_phalcon_mvc_micro_collection_map, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, get, arginfo_phalcon_mvc_micro_collection_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, post, arginfo_phalcon_mvc_micro_collection_post, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, put, arginfo_phalcon_mvc_micro_collection_put, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, patch, arginfo_phalcon_mvc_micro_collection_patch, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, head, arginfo_phalcon_mvc_micro_collection_head, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, delete, arginfo_phalcon_mvc_micro_collection_delete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_Collection, options, arginfo_phalcon_mvc_micro_collection_options, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_micro_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Micro_Exception);
zend_class_entry *phalcon_mvc_micro_lazyloader_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Micro_LazyLoader);
static PHP_METHOD(Phalcon_Mvc_Micro_LazyLoader, getDefinition);
static PHP_METHOD(Phalcon_Mvc_Micro_LazyLoader, __construct);
static PHP_METHOD(Phalcon_Mvc_Micro_LazyLoader, __call);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_lazyloader___construct, 0, 0, 1)
ZEND_ARG_INFO(0, definition)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_lazyloader___call, 0, 0, 2)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_micro_lazyloader_method_entry) {
PHP_ME(Phalcon_Mvc_Micro_LazyLoader, getDefinition, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Micro_LazyLoader, __construct, arginfo_phalcon_mvc_micro_lazyloader___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Micro_LazyLoader, __call, arginfo_phalcon_mvc_micro_lazyloader___call, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_micro_middlewareinterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Micro_MiddlewareInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_micro_middlewareinterface_call, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, application, Phalcon\\Mvc\\Micro, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_micro_middlewareinterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_Micro_MiddlewareInterface, call, arginfo_phalcon_mvc_micro_middlewareinterface_call)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model);
static PHP_METHOD(Phalcon_Mvc_Model, __construct);
static PHP_METHOD(Phalcon_Mvc_Model, setDI);
static PHP_METHOD(Phalcon_Mvc_Model, getDI);
static PHP_METHOD(Phalcon_Mvc_Model, setEventsManager);
static PHP_METHOD(Phalcon_Mvc_Model, getEventsManager);
static PHP_METHOD(Phalcon_Mvc_Model, getModelsMetaData);
static PHP_METHOD(Phalcon_Mvc_Model, getModelsManager);
static PHP_METHOD(Phalcon_Mvc_Model, setTransaction);
static PHP_METHOD(Phalcon_Mvc_Model, setSource);
static PHP_METHOD(Phalcon_Mvc_Model, getSource);
static PHP_METHOD(Phalcon_Mvc_Model, setSchema);
static PHP_METHOD(Phalcon_Mvc_Model, getSchema);
static PHP_METHOD(Phalcon_Mvc_Model, setConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model, setReadConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model, setWriteConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model, getReadConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model, getWriteConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model, setDirtyState);
static PHP_METHOD(Phalcon_Mvc_Model, getDirtyState);
static PHP_METHOD(Phalcon_Mvc_Model, getReadConnection);
static PHP_METHOD(Phalcon_Mvc_Model, getWriteConnection);
static PHP_METHOD(Phalcon_Mvc_Model, assign);
static PHP_METHOD(Phalcon_Mvc_Model, cloneResultMap);
static PHP_METHOD(Phalcon_Mvc_Model, cloneResultMapHydrate);
static PHP_METHOD(Phalcon_Mvc_Model, cloneResult);
static PHP_METHOD(Phalcon_Mvc_Model, find);
static PHP_METHOD(Phalcon_Mvc_Model, findFirst);
static PHP_METHOD(Phalcon_Mvc_Model, query);
static PHP_METHOD(Phalcon_Mvc_Model, _exists);
static PHP_METHOD(Phalcon_Mvc_Model, _groupResult);
static PHP_METHOD(Phalcon_Mvc_Model, count);
static PHP_METHOD(Phalcon_Mvc_Model, sum);
static PHP_METHOD(Phalcon_Mvc_Model, maximum);
static PHP_METHOD(Phalcon_Mvc_Model, minimum);
static PHP_METHOD(Phalcon_Mvc_Model, average);
static PHP_METHOD(Phalcon_Mvc_Model, fireEvent);
static PHP_METHOD(Phalcon_Mvc_Model, fireEventCancel);
static PHP_METHOD(Phalcon_Mvc_Model, _cancelOperation);
static PHP_METHOD(Phalcon_Mvc_Model, appendMessage);
static PHP_METHOD(Phalcon_Mvc_Model, validate);
static PHP_METHOD(Phalcon_Mvc_Model, validationHasFailed);
static PHP_METHOD(Phalcon_Mvc_Model, getMessages);
static PHP_METHOD(Phalcon_Mvc_Model, _checkForeignKeysRestrict);
static PHP_METHOD(Phalcon_Mvc_Model, _checkForeignKeysReverseCascade);
static PHP_METHOD(Phalcon_Mvc_Model, _checkForeignKeysReverseRestrict);
static PHP_METHOD(Phalcon_Mvc_Model, _preSave);
static PHP_METHOD(Phalcon_Mvc_Model, _postSave);
static PHP_METHOD(Phalcon_Mvc_Model, _doLowInsert);
static PHP_METHOD(Phalcon_Mvc_Model, _doLowUpdate);
static PHP_METHOD(Phalcon_Mvc_Model, _preSaveRelatedRecords);
static PHP_METHOD(Phalcon_Mvc_Model, _postSaveRelatedRecords);
static PHP_METHOD(Phalcon_Mvc_Model, save);
static PHP_METHOD(Phalcon_Mvc_Model, create);
static PHP_METHOD(Phalcon_Mvc_Model, update);
static PHP_METHOD(Phalcon_Mvc_Model, delete);
static PHP_METHOD(Phalcon_Mvc_Model, getOperationMade);
static PHP_METHOD(Phalcon_Mvc_Model, refresh);
static PHP_METHOD(Phalcon_Mvc_Model, skipOperation);
static PHP_METHOD(Phalcon_Mvc_Model, readAttribute);
static PHP_METHOD(Phalcon_Mvc_Model, writeAttribute);
static PHP_METHOD(Phalcon_Mvc_Model, skipAttributes);
static PHP_METHOD(Phalcon_Mvc_Model, skipAttributesOnCreate);
static PHP_METHOD(Phalcon_Mvc_Model, skipAttributesOnUpdate);
static PHP_METHOD(Phalcon_Mvc_Model, allowEmptyStringValues);
static PHP_METHOD(Phalcon_Mvc_Model, hasOne);
static PHP_METHOD(Phalcon_Mvc_Model, belongsTo);
static PHP_METHOD(Phalcon_Mvc_Model, hasMany);
static PHP_METHOD(Phalcon_Mvc_Model, hasManyToMany);
static PHP_METHOD(Phalcon_Mvc_Model, addBehavior);
static PHP_METHOD(Phalcon_Mvc_Model, keepSnapshots);
static PHP_METHOD(Phalcon_Mvc_Model, setSnapshotData);
static PHP_METHOD(Phalcon_Mvc_Model, hasSnapshotData);
static PHP_METHOD(Phalcon_Mvc_Model, getSnapshotData);
static PHP_METHOD(Phalcon_Mvc_Model, hasChanged);
static PHP_METHOD(Phalcon_Mvc_Model, getChangedFields);
static PHP_METHOD(Phalcon_Mvc_Model, useDynamicUpdate);
static PHP_METHOD(Phalcon_Mvc_Model, getRelated);
static PHP_METHOD(Phalcon_Mvc_Model, _getRelatedRecords);
static PHP_METHOD(Phalcon_Mvc_Model, _invokeFinder);
static PHP_METHOD(Phalcon_Mvc_Model, __call);
static PHP_METHOD(Phalcon_Mvc_Model, __callStatic);
static PHP_METHOD(Phalcon_Mvc_Model, __set);
static PHP_METHOD(Phalcon_Mvc_Model, _possibleSetter);
static PHP_METHOD(Phalcon_Mvc_Model, __get);
static PHP_METHOD(Phalcon_Mvc_Model, __isset);
static PHP_METHOD(Phalcon_Mvc_Model, serialize);
static PHP_METHOD(Phalcon_Mvc_Model, unserialize);
static PHP_METHOD(Phalcon_Mvc_Model, dump);
static PHP_METHOD(Phalcon_Mvc_Model, toArray);
static PHP_METHOD(Phalcon_Mvc_Model, jsonSerialize);
static PHP_METHOD(Phalcon_Mvc_Model, setup);
static PHP_METHOD(Phalcon_Mvc_Model, reset);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model___construct, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_ARG_OBJ_INFO(0, modelsManager, Phalcon\\Mvc\\Model\\ManagerInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_settransaction, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, transaction, Phalcon\\Mvc\\Model\\TransactionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_setsource, 0, 0, 1)
ZEND_ARG_INFO(0, source)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_setschema, 0, 0, 1)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_setconnectionservice, 0, 0, 1)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_setreadconnectionservice, 0, 0, 1)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_setwriteconnectionservice, 0, 0, 1)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_setdirtystate, 0, 0, 1)
ZEND_ARG_INFO(0, dirtyState)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_assign, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, dataColumnMap)
ZEND_ARG_INFO(0, whiteList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_cloneresultmap, 0, 0, 3)
ZEND_ARG_INFO(0, base)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, columnMap)
ZEND_ARG_INFO(0, dirtyState)
ZEND_ARG_INFO(0, keepSnapshots)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_cloneresultmaphydrate, 0, 0, 3)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, columnMap)
ZEND_ARG_INFO(0, hydrationMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_cloneresult, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, base, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, dirtyState)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_find, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_findfirst, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query, 0, 0, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__exists, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, metaData, Phalcon\\Mvc\\Model\\MetaDataInterface, 0)
ZEND_ARG_OBJ_INFO(0, connection, Phalcon\\Db\\AdapterInterface, 0)
ZEND_ARG_INFO(0, table)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__groupresult, 0, 0, 3)
ZEND_ARG_INFO(0, functionName)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_count, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_sum, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_maximum, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_minimum, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_average, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_fireevent, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_fireeventcancel, 0, 0, 1)
ZEND_ARG_INFO(0, eventName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_appendmessage, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, message, Phalcon\\Mvc\\Model\\MessageInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, validator, Phalcon\\ValidationInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_getmessages, 0, 0, 0)
ZEND_ARG_INFO(0, filter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__presave, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, metaData, Phalcon\\Mvc\\Model\\MetaDataInterface, 0)
ZEND_ARG_INFO(0, exists)
ZEND_ARG_INFO(0, identityField)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__postsave, 0, 0, 2)
ZEND_ARG_INFO(0, success)
ZEND_ARG_INFO(0, exists)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__dolowinsert, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, metaData, Phalcon\\Mvc\\Model\\MetaDataInterface, 0)
ZEND_ARG_OBJ_INFO(0, connection, Phalcon\\Db\\AdapterInterface, 0)
ZEND_ARG_INFO(0, table)
ZEND_ARG_INFO(0, identityField)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__dolowupdate, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, metaData, Phalcon\\Mvc\\Model\\MetaDataInterface, 0)
ZEND_ARG_OBJ_INFO(0, connection, Phalcon\\Db\\AdapterInterface, 0)
ZEND_ARG_INFO(0, table)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__presaverelatedrecords, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, connection, Phalcon\\Db\\AdapterInterface, 0)
ZEND_ARG_INFO(0, related)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__postsaverelatedrecords, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, connection, Phalcon\\Db\\AdapterInterface, 0)
ZEND_ARG_INFO(0, related)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_save, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, whiteList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_create, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, whiteList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_update, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, whiteList)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_skipoperation, 0, 0, 1)
ZEND_ARG_INFO(0, skip)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_readattribute, 0, 0, 1)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_writeattribute, 0, 0, 2)
ZEND_ARG_INFO(0, attribute)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_skipattributes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_skipattributesoncreate, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_skipattributesonupdate, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_allowemptystringvalues, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_hasone, 0, 0, 3)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referenceModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_belongsto, 0, 0, 3)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referenceModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_hasmany, 0, 0, 3)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referenceModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_hasmanytomany, 0, 0, 6)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, intermediateModel)
ZEND_ARG_INFO(0, intermediateFields)
ZEND_ARG_INFO(0, intermediateReferencedFields)
ZEND_ARG_INFO(0, referenceModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_addbehavior, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, behavior, Phalcon\\Mvc\\Model\\BehaviorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_keepsnapshots, 0, 0, 1)
ZEND_ARG_INFO(0, keepSnapshot)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_setsnapshotdata, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, columnMap)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_haschanged, 0, 0, 0)
ZEND_ARG_INFO(0, fieldName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_usedynamicupdate, 0, 0, 1)
ZEND_ARG_INFO(0, dynamicUpdate)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_getrelated, 0, 0, 1)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__getrelatedrecords, 0, 0, 3)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__invokefinder, 0, 0, 2)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model___call, 0, 0, 2)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model___callstatic, 0, 0, 2)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model___set, 0, 0, 2)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model__possiblesetter, 0, 0, 2)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model___get, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model___isset, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_unserialize, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_toarray, 0, 0, 0)
ZEND_ARG_INFO(0, columns)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_setup, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_method_entry) {
PHP_ME(Phalcon_Mvc_Model, __construct, arginfo_phalcon_mvc_model___construct, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model, setDI, arginfo_phalcon_mvc_model_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, setEventsManager, arginfo_phalcon_mvc_model_seteventsmanager, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, getEventsManager, NULL, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, getModelsMetaData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getModelsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, setTransaction, arginfo_phalcon_mvc_model_settransaction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, setSource, arginfo_phalcon_mvc_model_setsource, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, getSource, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, setSchema, arginfo_phalcon_mvc_model_setschema, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, getSchema, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, setConnectionService, arginfo_phalcon_mvc_model_setconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, setReadConnectionService, arginfo_phalcon_mvc_model_setreadconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, setWriteConnectionService, arginfo_phalcon_mvc_model_setwriteconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getReadConnectionService, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getWriteConnectionService, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, setDirtyState, arginfo_phalcon_mvc_model_setdirtystate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getDirtyState, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getReadConnection, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getWriteConnection, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, assign, arginfo_phalcon_mvc_model_assign, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, cloneResultMap, arginfo_phalcon_mvc_model_cloneresultmap, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, cloneResultMapHydrate, arginfo_phalcon_mvc_model_cloneresultmaphydrate, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, cloneResult, arginfo_phalcon_mvc_model_cloneresult, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, find, arginfo_phalcon_mvc_model_find, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, findFirst, arginfo_phalcon_mvc_model_findfirst, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, query, arginfo_phalcon_mvc_model_query, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, _exists, arginfo_phalcon_mvc_model__exists, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, _groupResult, arginfo_phalcon_mvc_model__groupresult, ZEND_ACC_PROTECTED|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, count, arginfo_phalcon_mvc_model_count, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, sum, arginfo_phalcon_mvc_model_sum, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, maximum, arginfo_phalcon_mvc_model_maximum, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, minimum, arginfo_phalcon_mvc_model_minimum, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, average, arginfo_phalcon_mvc_model_average, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, fireEvent, arginfo_phalcon_mvc_model_fireevent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, fireEventCancel, arginfo_phalcon_mvc_model_fireeventcancel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, _cancelOperation, NULL, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, appendMessage, arginfo_phalcon_mvc_model_appendmessage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, validate, arginfo_phalcon_mvc_model_validate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, validationHasFailed, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getMessages, arginfo_phalcon_mvc_model_getmessages, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, _checkForeignKeysRestrict, NULL, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model, _checkForeignKeysReverseCascade, NULL, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model, _checkForeignKeysReverseRestrict, NULL, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model, _preSave, arginfo_phalcon_mvc_model__presave, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, _postSave, arginfo_phalcon_mvc_model__postsave, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, _doLowInsert, arginfo_phalcon_mvc_model__dolowinsert, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, _doLowUpdate, arginfo_phalcon_mvc_model__dolowupdate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, _preSaveRelatedRecords, arginfo_phalcon_mvc_model__presaverelatedrecords, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, _postSaveRelatedRecords, arginfo_phalcon_mvc_model__postsaverelatedrecords, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, save, arginfo_phalcon_mvc_model_save, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, create, arginfo_phalcon_mvc_model_create, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, update, arginfo_phalcon_mvc_model_update, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, delete, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getOperationMade, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, refresh, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, skipOperation, arginfo_phalcon_mvc_model_skipoperation, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, readAttribute, arginfo_phalcon_mvc_model_readattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, writeAttribute, arginfo_phalcon_mvc_model_writeattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, skipAttributes, arginfo_phalcon_mvc_model_skipattributes, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, skipAttributesOnCreate, arginfo_phalcon_mvc_model_skipattributesoncreate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, skipAttributesOnUpdate, arginfo_phalcon_mvc_model_skipattributesonupdate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, allowEmptyStringValues, arginfo_phalcon_mvc_model_allowemptystringvalues, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, hasOne, arginfo_phalcon_mvc_model_hasone, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, belongsTo, arginfo_phalcon_mvc_model_belongsto, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, hasMany, arginfo_phalcon_mvc_model_hasmany, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, hasManyToMany, arginfo_phalcon_mvc_model_hasmanytomany, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, addBehavior, arginfo_phalcon_mvc_model_addbehavior, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, keepSnapshots, arginfo_phalcon_mvc_model_keepsnapshots, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, setSnapshotData, arginfo_phalcon_mvc_model_setsnapshotdata, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, hasSnapshotData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getSnapshotData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, hasChanged, arginfo_phalcon_mvc_model_haschanged, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, getChangedFields, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, useDynamicUpdate, arginfo_phalcon_mvc_model_usedynamicupdate, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, getRelated, arginfo_phalcon_mvc_model_getrelated, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, _getRelatedRecords, arginfo_phalcon_mvc_model__getrelatedrecords, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model, _invokeFinder, arginfo_phalcon_mvc_model__invokefinder, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, __call, arginfo_phalcon_mvc_model___call, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, __callStatic, arginfo_phalcon_mvc_model___callstatic, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, __set, arginfo_phalcon_mvc_model___set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, _possibleSetter, arginfo_phalcon_mvc_model__possiblesetter, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model, __get, arginfo_phalcon_mvc_model___get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, __isset, arginfo_phalcon_mvc_model___isset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, serialize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, unserialize, arginfo_phalcon_mvc_model_unserialize, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, dump, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, toArray, arginfo_phalcon_mvc_model_toarray, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, jsonSerialize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model, setup, arginfo_phalcon_mvc_model_setup, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model, reset, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_behavior_softdelete_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Behavior_SoftDelete);
static PHP_METHOD(Phalcon_Mvc_Model_Behavior_SoftDelete, notify);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_behavior_softdelete_notify, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_behavior_softdelete_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Behavior_SoftDelete, notify, arginfo_phalcon_mvc_model_behavior_softdelete_notify, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_behavior_timestampable_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Behavior_Timestampable);
static PHP_METHOD(Phalcon_Mvc_Model_Behavior_Timestampable, notify);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_behavior_timestampable_notify, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_behavior_timestampable_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Behavior_Timestampable, notify, arginfo_phalcon_mvc_model_behavior_timestampable_notify, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_criteria_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Criteria);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, setDI);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getDI);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, setModelName);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getModelName);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, bind);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, bindTypes);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, distinct);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, columns);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, join);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, innerJoin);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, leftJoin);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, rightJoin);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, where);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, addWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, andWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, orWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, betweenWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, notBetweenWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, inWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, notInWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, conditions);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, order);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, orderBy);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, groupBy);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, having);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, limit);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, forUpdate);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, sharedLock);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, cache);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getColumns);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getConditions);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getLimit);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getOrderBy);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getGroupBy);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getHaving);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, getParams);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, fromInput);
static PHP_METHOD(Phalcon_Mvc_Model_Criteria, execute);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_setmodelname, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_bind, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, bindParams, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_bindtypes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, bindTypes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_distinct, 0, 0, 1)
ZEND_ARG_INFO(0, distinct)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_columns, 0, 0, 1)
ZEND_ARG_INFO(0, columns)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_join, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_innerjoin, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_leftjoin, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_rightjoin, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_where, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_addwhere, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_andwhere, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_orwhere, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_betweenwhere, 0, 0, 3)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_INFO(0, minimum)
ZEND_ARG_INFO(0, maximum)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_notbetweenwhere, 0, 0, 3)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_INFO(0, minimum)
ZEND_ARG_INFO(0, maximum)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_inwhere, 0, 0, 2)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_notinwhere, 0, 0, 2)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_conditions, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_order, 0, 0, 1)
ZEND_ARG_INFO(0, orderColumns)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_orderby, 0, 0, 1)
ZEND_ARG_INFO(0, orderColumns)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_groupby, 0, 0, 1)
ZEND_ARG_INFO(0, group)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_having, 0, 0, 1)
ZEND_ARG_INFO(0, having)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_limit, 0, 0, 1)
ZEND_ARG_INFO(0, limit)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_forupdate, 0, 0, 0)
ZEND_ARG_INFO(0, forUpdate)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_sharedlock, 0, 0, 0)
ZEND_ARG_INFO(0, sharedLock)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_cache, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, cache, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_criteria_frominput, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_ARRAY_INFO(0, data, 0)
ZEND_ARG_INFO(0, operator)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_criteria_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Criteria, setDI, arginfo_phalcon_mvc_model_criteria_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, setModelName, arginfo_phalcon_mvc_model_criteria_setmodelname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getModelName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, bind, arginfo_phalcon_mvc_model_criteria_bind, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, bindTypes, arginfo_phalcon_mvc_model_criteria_bindtypes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, distinct, arginfo_phalcon_mvc_model_criteria_distinct, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, columns, arginfo_phalcon_mvc_model_criteria_columns, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, join, arginfo_phalcon_mvc_model_criteria_join, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, innerJoin, arginfo_phalcon_mvc_model_criteria_innerjoin, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, leftJoin, arginfo_phalcon_mvc_model_criteria_leftjoin, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, rightJoin, arginfo_phalcon_mvc_model_criteria_rightjoin, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, where, arginfo_phalcon_mvc_model_criteria_where, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, addWhere, arginfo_phalcon_mvc_model_criteria_addwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, andWhere, arginfo_phalcon_mvc_model_criteria_andwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, orWhere, arginfo_phalcon_mvc_model_criteria_orwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, betweenWhere, arginfo_phalcon_mvc_model_criteria_betweenwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, notBetweenWhere, arginfo_phalcon_mvc_model_criteria_notbetweenwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, inWhere, arginfo_phalcon_mvc_model_criteria_inwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, notInWhere, arginfo_phalcon_mvc_model_criteria_notinwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, conditions, arginfo_phalcon_mvc_model_criteria_conditions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, order, arginfo_phalcon_mvc_model_criteria_order, ZEND_ACC_DEPRECATED|ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, orderBy, arginfo_phalcon_mvc_model_criteria_orderby, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, groupBy, arginfo_phalcon_mvc_model_criteria_groupby, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, having, arginfo_phalcon_mvc_model_criteria_having, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, limit, arginfo_phalcon_mvc_model_criteria_limit, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, forUpdate, arginfo_phalcon_mvc_model_criteria_forupdate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, sharedLock, arginfo_phalcon_mvc_model_criteria_sharedlock, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, cache, arginfo_phalcon_mvc_model_criteria_cache, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getWhere, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getColumns, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getConditions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getLimit, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getOrderBy, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getGroupBy, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getHaving, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, getParams, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, fromInput, arginfo_phalcon_mvc_model_criteria_frominput, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Model_Criteria, execute, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_manager_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Manager);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, setDI);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getDI);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, setEventsManager);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getEventsManager);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, setCustomEventsManager);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getCustomEventsManager);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, initialize);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, isInitialized);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getLastInitialized);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, load);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, setModelSource);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, isVisibleModelProperty);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getModelSource);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, setModelSchema);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getModelSchema);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, setConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, setWriteConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, setReadConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getReadConnection);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getWriteConnection);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, _getConnection);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getReadConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getWriteConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, _getConnectionService);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, notifyEvent);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, missingMethod);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, addBehavior);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, keepSnapshots);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, isKeepingSnapshots);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, useDynamicUpdate);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, isUsingDynamicUpdate);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, addHasOne);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, addBelongsTo);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, addHasMany);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, addHasManyToMany);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, existsBelongsTo);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, existsHasMany);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, existsHasOne);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, existsHasManyToMany);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getRelationByAlias);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, _mergeFindParameters);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getRelationRecords);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getReusableRecords);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, setReusableRecords);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, clearReusableObjects);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getBelongsToRecords);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getHasManyRecords);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getHasOneRecords);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getBelongsTo);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getHasMany);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getHasOne);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getHasManyToMany);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getHasOneAndHasMany);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getRelations);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getRelationsBetween);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, createQuery);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, executeQuery);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, createBuilder);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getLastQuery);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, registerNamespaceAlias);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getNamespaceAlias);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, getNamespaceAliases);
static PHP_METHOD(Phalcon_Mvc_Model_Manager, __destruct);
zend_object *zephir_init_properties_Phalcon_Mvc_Model_Manager(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_seteventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_setcustomeventsmanager, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_OBJ_INFO(0, eventsManager, Phalcon\\Events\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getcustomeventsmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_initialize, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_isinitialized, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_load, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, newInstance)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_setmodelsource, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, source)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_isvisiblemodelproperty, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getmodelsource, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_setmodelschema, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getmodelschema, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_setconnectionservice, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_setwriteconnectionservice, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_setreadconnectionservice, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, connectionService)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getreadconnection, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getwriteconnection, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager__getconnection, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, connectionServices)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getreadconnectionservice, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getwriteconnectionservice, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager__getconnectionservice, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, connectionServices)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_notifyevent, 0, 0, 2)
ZEND_ARG_INFO(0, eventName)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_missingmethod, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, eventName)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_addbehavior, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_OBJ_INFO(0, behavior, Phalcon\\Mvc\\Model\\BehaviorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_keepsnapshots, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, keepSnapshots)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_iskeepingsnapshots, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_usedynamicupdate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, dynamicUpdate)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_isusingdynamicupdate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_addhasone, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referencedModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_addbelongsto, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referencedModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_addhasmany, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referencedModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_addhasmanytomany, 0, 0, 7)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, intermediateModel)
ZEND_ARG_INFO(0, intermediateFields)
ZEND_ARG_INFO(0, intermediateReferencedFields)
ZEND_ARG_INFO(0, referencedModel)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_existsbelongsto, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_existshasmany, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_existshasone, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_existshasmanytomany, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getrelationbyalias, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager__mergefindparameters, 0, 0, 2)
ZEND_ARG_INFO(0, findParamsOne)
ZEND_ARG_INFO(0, findParamsTwo)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getrelationrecords, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, relation, Phalcon\\Mvc\\Model\\RelationInterface, 0)
ZEND_ARG_INFO(0, method)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getreusablerecords, 0, 0, 2)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_setreusablerecords, 0, 0, 3)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, records)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getbelongstorecords, 0, 0, 4)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_gethasmanyrecords, 0, 0, 4)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_gethasonerecords, 0, 0, 4)
ZEND_ARG_INFO(0, method)
ZEND_ARG_INFO(0, modelName)
ZEND_ARG_INFO(0, modelRelation)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getbelongsto, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_gethasmany, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_gethasone, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_gethasmanytomany, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_gethasoneandhasmany, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getrelations, 0, 0, 1)
ZEND_ARG_INFO(0, modelName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getrelationsbetween, 0, 0, 2)
ZEND_ARG_INFO(0, first)
ZEND_ARG_INFO(0, second)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_createquery, 0, 0, 1)
ZEND_ARG_INFO(0, phql)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_executequery, 0, 0, 1)
ZEND_ARG_INFO(0, phql)
ZEND_ARG_INFO(0, placeholders)
ZEND_ARG_INFO(0, types)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_createbuilder, 0, 0, 0)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_registernamespacealias, 0, 0, 2)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, namespaceName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_manager_getnamespacealias, 0, 0, 1)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_manager_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Manager, setDI, arginfo_phalcon_mvc_model_manager_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, setEventsManager, arginfo_phalcon_mvc_model_manager_seteventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getEventsManager, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, setCustomEventsManager, arginfo_phalcon_mvc_model_manager_setcustomeventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getCustomEventsManager, arginfo_phalcon_mvc_model_manager_getcustomeventsmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, initialize, arginfo_phalcon_mvc_model_manager_initialize, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, isInitialized, arginfo_phalcon_mvc_model_manager_isinitialized, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getLastInitialized, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, load, arginfo_phalcon_mvc_model_manager_load, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, setModelSource, arginfo_phalcon_mvc_model_manager_setmodelsource, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, isVisibleModelProperty, arginfo_phalcon_mvc_model_manager_isvisiblemodelproperty, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Manager, getModelSource, arginfo_phalcon_mvc_model_manager_getmodelsource, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, setModelSchema, arginfo_phalcon_mvc_model_manager_setmodelschema, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getModelSchema, arginfo_phalcon_mvc_model_manager_getmodelschema, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, setConnectionService, arginfo_phalcon_mvc_model_manager_setconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, setWriteConnectionService, arginfo_phalcon_mvc_model_manager_setwriteconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, setReadConnectionService, arginfo_phalcon_mvc_model_manager_setreadconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getReadConnection, arginfo_phalcon_mvc_model_manager_getreadconnection, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getWriteConnection, arginfo_phalcon_mvc_model_manager_getwriteconnection, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, _getConnection, arginfo_phalcon_mvc_model_manager__getconnection, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model_Manager, getReadConnectionService, arginfo_phalcon_mvc_model_manager_getreadconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getWriteConnectionService, arginfo_phalcon_mvc_model_manager_getwriteconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, _getConnectionService, arginfo_phalcon_mvc_model_manager__getconnectionservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, notifyEvent, arginfo_phalcon_mvc_model_manager_notifyevent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, missingMethod, arginfo_phalcon_mvc_model_manager_missingmethod, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, addBehavior, arginfo_phalcon_mvc_model_manager_addbehavior, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, keepSnapshots, arginfo_phalcon_mvc_model_manager_keepsnapshots, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, isKeepingSnapshots, arginfo_phalcon_mvc_model_manager_iskeepingsnapshots, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, useDynamicUpdate, arginfo_phalcon_mvc_model_manager_usedynamicupdate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, isUsingDynamicUpdate, arginfo_phalcon_mvc_model_manager_isusingdynamicupdate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, addHasOne, arginfo_phalcon_mvc_model_manager_addhasone, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, addBelongsTo, arginfo_phalcon_mvc_model_manager_addbelongsto, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, addHasMany, arginfo_phalcon_mvc_model_manager_addhasmany, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, addHasManyToMany, arginfo_phalcon_mvc_model_manager_addhasmanytomany, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, existsBelongsTo, arginfo_phalcon_mvc_model_manager_existsbelongsto, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, existsHasMany, arginfo_phalcon_mvc_model_manager_existshasmany, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, existsHasOne, arginfo_phalcon_mvc_model_manager_existshasone, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, existsHasManyToMany, arginfo_phalcon_mvc_model_manager_existshasmanytomany, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getRelationByAlias, arginfo_phalcon_mvc_model_manager_getrelationbyalias, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, _mergeFindParameters, arginfo_phalcon_mvc_model_manager__mergefindparameters, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Manager, getRelationRecords, arginfo_phalcon_mvc_model_manager_getrelationrecords, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getReusableRecords, arginfo_phalcon_mvc_model_manager_getreusablerecords, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, setReusableRecords, arginfo_phalcon_mvc_model_manager_setreusablerecords, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, clearReusableObjects, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getBelongsToRecords, arginfo_phalcon_mvc_model_manager_getbelongstorecords, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getHasManyRecords, arginfo_phalcon_mvc_model_manager_gethasmanyrecords, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getHasOneRecords, arginfo_phalcon_mvc_model_manager_gethasonerecords, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getBelongsTo, arginfo_phalcon_mvc_model_manager_getbelongsto, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getHasMany, arginfo_phalcon_mvc_model_manager_gethasmany, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getHasOne, arginfo_phalcon_mvc_model_manager_gethasone, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getHasManyToMany, arginfo_phalcon_mvc_model_manager_gethasmanytomany, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getHasOneAndHasMany, arginfo_phalcon_mvc_model_manager_gethasoneandhasmany, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getRelations, arginfo_phalcon_mvc_model_manager_getrelations, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getRelationsBetween, arginfo_phalcon_mvc_model_manager_getrelationsbetween, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, createQuery, arginfo_phalcon_mvc_model_manager_createquery, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, executeQuery, arginfo_phalcon_mvc_model_manager_executequery, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, createBuilder, arginfo_phalcon_mvc_model_manager_createbuilder, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getLastQuery, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, registerNamespaceAlias, arginfo_phalcon_mvc_model_manager_registernamespacealias, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getNamespaceAlias, arginfo_phalcon_mvc_model_manager_getnamespacealias, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, getNamespaceAliases, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Manager, __destruct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_DTOR)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_message_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Message);
static PHP_METHOD(Phalcon_Mvc_Model_Message, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Message, setType);
static PHP_METHOD(Phalcon_Mvc_Model_Message, getType);
static PHP_METHOD(Phalcon_Mvc_Model_Message, setMessage);
static PHP_METHOD(Phalcon_Mvc_Model_Message, getMessage);
static PHP_METHOD(Phalcon_Mvc_Model_Message, setField);
static PHP_METHOD(Phalcon_Mvc_Model_Message, getField);
static PHP_METHOD(Phalcon_Mvc_Model_Message, setModel);
static PHP_METHOD(Phalcon_Mvc_Model_Message, setCode);
static PHP_METHOD(Phalcon_Mvc_Model_Message, getModel);
static PHP_METHOD(Phalcon_Mvc_Model_Message, getCode);
static PHP_METHOD(Phalcon_Mvc_Model_Message, __toString);
static PHP_METHOD(Phalcon_Mvc_Model_Message, __set_state);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_message___construct, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, field)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, code)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_message_settype, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_message_setmessage, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_message_setfield, 0, 0, 1)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_message_setmodel, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_message_setcode, 0, 0, 1)
ZEND_ARG_INFO(0, code)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_message___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, message, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_message_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Message, __construct, arginfo_phalcon_mvc_model_message___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Message, setType, arginfo_phalcon_mvc_model_message_settype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, setMessage, arginfo_phalcon_mvc_model_message_setmessage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, getMessage, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, setField, arginfo_phalcon_mvc_model_message_setfield, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, getField, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, setModel, arginfo_phalcon_mvc_model_message_setmodel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, setCode, arginfo_phalcon_mvc_model_message_setcode, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, getModel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, getCode, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, __toString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Message, __set_state, arginfo_phalcon_mvc_model_message___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_apc_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Apc);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Apc, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Apc, read);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Apc, write);
zend_object *zephir_init_properties_Phalcon_Mvc_Model_MetaData_Apc(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_apc___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_apc_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_apc_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_apc_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Apc, __construct, arginfo_phalcon_mvc_model_metadata_apc___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_MetaData_Apc, read, arginfo_phalcon_mvc_model_metadata_apc_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Apc, write, arginfo_phalcon_mvc_model_metadata_apc_write, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_files_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Files);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Files, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Files, read);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Files, write);
zend_object *zephir_init_properties_Phalcon_Mvc_Model_MetaData_Files(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_files___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_files_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_files_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_files_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Files, __construct, arginfo_phalcon_mvc_model_metadata_files___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_MetaData_Files, read, arginfo_phalcon_mvc_model_metadata_files_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Files, write, arginfo_phalcon_mvc_model_metadata_files_write, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_libmemcached_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Libmemcached);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Libmemcached, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Libmemcached, read);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Libmemcached, write);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Libmemcached, reset);
zend_object *zephir_init_properties_Phalcon_Mvc_Model_MetaData_Libmemcached(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_libmemcached___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_libmemcached_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_libmemcached_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_libmemcached_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Libmemcached, __construct, arginfo_phalcon_mvc_model_metadata_libmemcached___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_MetaData_Libmemcached, read, arginfo_phalcon_mvc_model_metadata_libmemcached_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Libmemcached, write, arginfo_phalcon_mvc_model_metadata_libmemcached_write, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Libmemcached, reset, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_memcache_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Memcache);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Memcache, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Memcache, read);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Memcache, write);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Memcache, reset);
zend_object *zephir_init_properties_Phalcon_Mvc_Model_MetaData_Memcache(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_memcache___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_memcache_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_memcache_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_memcache_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Memcache, __construct, arginfo_phalcon_mvc_model_metadata_memcache___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_MetaData_Memcache, read, arginfo_phalcon_mvc_model_metadata_memcache_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Memcache, write, arginfo_phalcon_mvc_model_metadata_memcache_write, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Memcache, reset, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_memory_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Memory);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Memory, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Memory, read);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Memory, write);
zend_object *zephir_init_properties_Phalcon_Mvc_Model_MetaData_Memory(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_memory___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_memory_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_memory_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_memory_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Memory, __construct, arginfo_phalcon_mvc_model_metadata_memory___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_MetaData_Memory, read, arginfo_phalcon_mvc_model_metadata_memory_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Memory, write, arginfo_phalcon_mvc_model_metadata_memory_write, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_redis_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Redis);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Redis, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Redis, read);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Redis, write);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Redis, reset);
zend_object *zephir_init_properties_Phalcon_Mvc_Model_MetaData_Redis(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_redis___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_redis_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_redis_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_redis_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Redis, __construct, arginfo_phalcon_mvc_model_metadata_redis___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_MetaData_Redis, read, arginfo_phalcon_mvc_model_metadata_redis_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Redis, write, arginfo_phalcon_mvc_model_metadata_redis_write, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Redis, reset, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_session_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Session);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Session, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Session, read);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Session, write);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_session___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_session_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_session_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_session_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Session, __construct, arginfo_phalcon_mvc_model_metadata_session___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_MetaData_Session, read, arginfo_phalcon_mvc_model_metadata_session_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Session, write, arginfo_phalcon_mvc_model_metadata_session_write, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_strategy_annotations_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Strategy_Annotations);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Strategy_Annotations, getMetaData);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Strategy_Annotations, getColumnMaps);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_strategy_annotations_getmetadata, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_strategy_annotations_getcolumnmaps, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_strategy_annotations_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Strategy_Annotations, getMetaData, arginfo_phalcon_mvc_model_metadata_strategy_annotations_getmetadata, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_MetaData_Strategy_Annotations, getColumnMaps, arginfo_phalcon_mvc_model_metadata_strategy_annotations_getcolumnmaps, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_strategy_introspection_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Strategy_Introspection);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Strategy_Introspection, getMetaData);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Strategy_Introspection, getColumnMaps);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_strategy_introspection_getmetadata, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_strategy_introspection_getcolumnmaps, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_strategy_introspection_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Strategy_Introspection, getMetaData, arginfo_phalcon_mvc_model_metadata_strategy_introspection_getmetadata, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_MetaData_Strategy_Introspection, getColumnMaps, arginfo_phalcon_mvc_model_metadata_strategy_introspection_getcolumnmaps, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_metadata_xcache_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_MetaData_Xcache);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Xcache, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Xcache, read);
static PHP_METHOD(Phalcon_Mvc_Model_MetaData_Xcache, write);
zend_object *zephir_init_properties_Phalcon_Mvc_Model_MetaData_Xcache(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_xcache___construct, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_xcache_read, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_metadata_xcache_write, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_metadata_xcache_method_entry) {
PHP_ME(Phalcon_Mvc_Model_MetaData_Xcache, __construct, arginfo_phalcon_mvc_model_metadata_xcache___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_MetaData_Xcache, read, arginfo_phalcon_mvc_model_metadata_xcache_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_MetaData_Xcache, write, arginfo_phalcon_mvc_model_metadata_xcache_write, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_query_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Query);
static PHP_METHOD(Phalcon_Mvc_Model_Query, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Query, setDI);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getDI);
static PHP_METHOD(Phalcon_Mvc_Model_Query, setUniqueRow);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getUniqueRow);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getQualified);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getCallArgument);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getCaseExpression);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getFunctionCall);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getExpression);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getSelectColumn);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getTable);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getJoin);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getJoinType);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getSingleJoin);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getMultiJoin);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getJoins);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getOrderClause);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getGroupClause);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getLimitClause);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _prepareSelect);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _prepareInsert);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _prepareUpdate);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _prepareDelete);
static PHP_METHOD(Phalcon_Mvc_Model_Query, parse);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getCache);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _executeSelect);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _executeInsert);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _executeUpdate);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _executeDelete);
static PHP_METHOD(Phalcon_Mvc_Model_Query, _getRelatedRecords);
static PHP_METHOD(Phalcon_Mvc_Model_Query, execute);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getSingleResult);
static PHP_METHOD(Phalcon_Mvc_Model_Query, setType);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getType);
static PHP_METHOD(Phalcon_Mvc_Model_Query, setBindParams);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getBindParams);
static PHP_METHOD(Phalcon_Mvc_Model_Query, setBindTypes);
static PHP_METHOD(Phalcon_Mvc_Model_Query, setSharedLock);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getBindTypes);
static PHP_METHOD(Phalcon_Mvc_Model_Query, setIntermediate);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getIntermediate);
static PHP_METHOD(Phalcon_Mvc_Model_Query, cache);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getCacheOptions);
static PHP_METHOD(Phalcon_Mvc_Model_Query, getSql);
static PHP_METHOD(Phalcon_Mvc_Model_Query, clean);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query___construct, 0, 0, 0)
ZEND_ARG_INFO(0, phql)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_setuniquerow, 0, 0, 1)
ZEND_ARG_INFO(0, uniqueRow)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getqualified, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expr, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getcallargument, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, argument, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getcaseexpression, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expr, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getfunctioncall, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expr, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getexpression, 0, 0, 1)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_INFO(0, quoting)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getselectcolumn, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, column, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__gettable, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, manager, Phalcon\\Mvc\\Model\\ManagerInterface, 0)
ZEND_ARG_INFO(0, qualifiedName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getjoin, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, manager, Phalcon\\Mvc\\Model\\ManagerInterface, 0)
ZEND_ARG_INFO(0, join)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getjointype, 0, 0, 1)
ZEND_ARG_INFO(0, join)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getsinglejoin, 0, 0, 5)
ZEND_ARG_INFO(0, joinType)
ZEND_ARG_INFO(0, joinSource)
ZEND_ARG_INFO(0, modelAlias)
ZEND_ARG_INFO(0, joinAlias)
ZEND_ARG_OBJ_INFO(0, relation, Phalcon\\Mvc\\Model\\RelationInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getmultijoin, 0, 0, 5)
ZEND_ARG_INFO(0, joinType)
ZEND_ARG_INFO(0, joinSource)
ZEND_ARG_INFO(0, modelAlias)
ZEND_ARG_INFO(0, joinAlias)
ZEND_ARG_OBJ_INFO(0, relation, Phalcon\\Mvc\\Model\\RelationInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getjoins, 0, 0, 1)
ZEND_ARG_INFO(0, select)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getorderclause, 0, 0, 1)
ZEND_ARG_INFO(0, order)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getgroupclause, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, group, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getlimitclause, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, limitClause, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__prepareselect, 0, 0, 0)
ZEND_ARG_INFO(0, ast)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__executeselect, 0, 0, 3)
ZEND_ARG_INFO(0, intermediate)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_ARG_INFO(0, simulate)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__executeinsert, 0, 0, 3)
ZEND_ARG_INFO(0, intermediate)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__executeupdate, 0, 0, 3)
ZEND_ARG_INFO(0, intermediate)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__executedelete, 0, 0, 3)
ZEND_ARG_INFO(0, intermediate)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query__getrelatedrecords, 0, 0, 4)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_ARG_INFO(0, intermediate)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_execute, 0, 0, 0)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_getsingleresult, 0, 0, 0)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_settype, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_setbindparams, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, bindParams, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_setbindtypes, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, bindTypes, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_setsharedlock, 0, 0, 0)
ZEND_ARG_INFO(0, sharedLock)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_setintermediate, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, intermediate, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_cache, 0, 0, 1)
ZEND_ARG_INFO(0, cacheOptions)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_query_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Query, __construct, arginfo_phalcon_mvc_model_query___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Query, setDI, arginfo_phalcon_mvc_model_query_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, setUniqueRow, arginfo_phalcon_mvc_model_query_setuniquerow, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getUniqueRow, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, _getQualified, arginfo_phalcon_mvc_model_query__getqualified, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getCallArgument, arginfo_phalcon_mvc_model_query__getcallargument, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getCaseExpression, arginfo_phalcon_mvc_model_query__getcaseexpression, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getFunctionCall, arginfo_phalcon_mvc_model_query__getfunctioncall, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getExpression, arginfo_phalcon_mvc_model_query__getexpression, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getSelectColumn, arginfo_phalcon_mvc_model_query__getselectcolumn, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getTable, arginfo_phalcon_mvc_model_query__gettable, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getJoin, arginfo_phalcon_mvc_model_query__getjoin, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getJoinType, arginfo_phalcon_mvc_model_query__getjointype, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getSingleJoin, arginfo_phalcon_mvc_model_query__getsinglejoin, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getMultiJoin, arginfo_phalcon_mvc_model_query__getmultijoin, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getJoins, arginfo_phalcon_mvc_model_query__getjoins, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getOrderClause, arginfo_phalcon_mvc_model_query__getorderclause, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getGroupClause, arginfo_phalcon_mvc_model_query__getgroupclause, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getLimitClause, arginfo_phalcon_mvc_model_query__getlimitclause, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _prepareSelect, arginfo_phalcon_mvc_model_query__prepareselect, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _prepareInsert, NULL, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _prepareUpdate, NULL, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _prepareDelete, NULL, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, parse, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getCache, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, _executeSelect, arginfo_phalcon_mvc_model_query__executeselect, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _executeInsert, arginfo_phalcon_mvc_model_query__executeinsert, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _executeUpdate, arginfo_phalcon_mvc_model_query__executeupdate, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _executeDelete, arginfo_phalcon_mvc_model_query__executedelete, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, _getRelatedRecords, arginfo_phalcon_mvc_model_query__getrelatedrecords, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query, execute, arginfo_phalcon_mvc_model_query_execute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getSingleResult, arginfo_phalcon_mvc_model_query_getsingleresult, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, setType, arginfo_phalcon_mvc_model_query_settype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, setBindParams, arginfo_phalcon_mvc_model_query_setbindparams, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getBindParams, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, setBindTypes, arginfo_phalcon_mvc_model_query_setbindtypes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, setSharedLock, arginfo_phalcon_mvc_model_query_setsharedlock, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getBindTypes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, setIntermediate, arginfo_phalcon_mvc_model_query_setintermediate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getIntermediate, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, cache, arginfo_phalcon_mvc_model_query_cache, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getCacheOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, getSql, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query, clean, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_query_builder_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Query_Builder);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, setDI);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getDI);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, distinct);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getDistinct);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, columns);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getColumns);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, from);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, addFrom);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getFrom);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, join);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, innerJoin);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, leftJoin);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, rightJoin);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getJoins);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, where);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, andWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, orWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, betweenWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, notBetweenWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, inWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, notInWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getWhere);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, orderBy);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getOrderBy);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, having);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, forUpdate);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getHaving);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, limit);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getLimit);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, offset);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getOffset);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, groupBy);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getGroupBy);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getPhql);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getQuery);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, autoescape);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder___construct, 0, 0, 0)
ZEND_ARG_INFO(0, params)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_distinct, 0, 0, 1)
ZEND_ARG_INFO(0, distinct)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_columns, 0, 0, 1)
ZEND_ARG_INFO(0, columns)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_from, 0, 0, 1)
ZEND_ARG_INFO(0, models)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_addfrom, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, with)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_join, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_innerjoin, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_leftjoin, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_rightjoin, 0, 0, 1)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, alias)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_where, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_andwhere, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_orwhere, 0, 0, 1)
ZEND_ARG_INFO(0, conditions)
ZEND_ARG_INFO(0, bindParams)
ZEND_ARG_INFO(0, bindTypes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_betweenwhere, 0, 0, 3)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_INFO(0, minimum)
ZEND_ARG_INFO(0, maximum)
ZEND_ARG_INFO(0, operator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_notbetweenwhere, 0, 0, 3)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_INFO(0, minimum)
ZEND_ARG_INFO(0, maximum)
ZEND_ARG_INFO(0, operator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_inwhere, 0, 0, 2)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_ARG_INFO(0, operator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_notinwhere, 0, 0, 2)
ZEND_ARG_INFO(0, expr)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_ARG_INFO(0, operator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_orderby, 0, 0, 1)
ZEND_ARG_INFO(0, orderBy)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_having, 0, 0, 1)
ZEND_ARG_INFO(0, having)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_forupdate, 0, 0, 1)
ZEND_ARG_INFO(0, forUpdate)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_limit, 0, 0, 1)
ZEND_ARG_INFO(0, limit)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_offset, 0, 0, 1)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_groupby, 0, 0, 1)
ZEND_ARG_INFO(0, group)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_builder_autoescape, 0, 0, 1)
ZEND_ARG_INFO(0, identifier)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_query_builder_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Query_Builder, __construct, arginfo_phalcon_mvc_model_query_builder___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, setDI, arginfo_phalcon_mvc_model_query_builder_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, distinct, arginfo_phalcon_mvc_model_query_builder_distinct, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getDistinct, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, columns, arginfo_phalcon_mvc_model_query_builder_columns, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getColumns, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, from, arginfo_phalcon_mvc_model_query_builder_from, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, addFrom, arginfo_phalcon_mvc_model_query_builder_addfrom, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getFrom, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, join, arginfo_phalcon_mvc_model_query_builder_join, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, innerJoin, arginfo_phalcon_mvc_model_query_builder_innerjoin, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, leftJoin, arginfo_phalcon_mvc_model_query_builder_leftjoin, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, rightJoin, arginfo_phalcon_mvc_model_query_builder_rightjoin, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getJoins, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, where, arginfo_phalcon_mvc_model_query_builder_where, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, andWhere, arginfo_phalcon_mvc_model_query_builder_andwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, orWhere, arginfo_phalcon_mvc_model_query_builder_orwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, betweenWhere, arginfo_phalcon_mvc_model_query_builder_betweenwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, notBetweenWhere, arginfo_phalcon_mvc_model_query_builder_notbetweenwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, inWhere, arginfo_phalcon_mvc_model_query_builder_inwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, notInWhere, arginfo_phalcon_mvc_model_query_builder_notinwhere, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getWhere, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, orderBy, arginfo_phalcon_mvc_model_query_builder_orderby, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getOrderBy, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, having, arginfo_phalcon_mvc_model_query_builder_having, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, forUpdate, arginfo_phalcon_mvc_model_query_builder_forupdate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getHaving, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, limit, arginfo_phalcon_mvc_model_query_builder_limit, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getLimit, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, offset, arginfo_phalcon_mvc_model_query_builder_offset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getOffset, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, groupBy, arginfo_phalcon_mvc_model_query_builder_groupby, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getGroupBy, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getPhql, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, getQuery, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Builder, autoescape, arginfo_phalcon_mvc_model_query_builder_autoescape, ZEND_ACC_FINAL|ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_query_lang_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Query_Lang);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Lang, parsePHQL);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_lang_parsephql, 0, 0, 1)
ZEND_ARG_INFO(0, phql)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_query_lang_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Query_Lang, parsePHQL, arginfo_phalcon_mvc_model_query_lang_parsephql, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_query_status_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Query_Status);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Status, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Status, getModel);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Status, getMessages);
static PHP_METHOD(Phalcon_Mvc_Model_Query_Status, success);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_query_status___construct, 0, 0, 1)
ZEND_ARG_INFO(0, success)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\ModelInterface, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_query_status_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Query_Status, __construct, arginfo_phalcon_mvc_model_query_status___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Query_Status, getModel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Status, getMessages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Query_Status, success, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_relation_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Relation);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, setIntermediateRelation);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getType);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getReferencedModel);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getFields);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getReferencedFields);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getOptions);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getOption);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, isForeignKey);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getForeignKey);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getParams);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, isThrough);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, isReusable);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getIntermediateFields);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getIntermediateModel);
static PHP_METHOD(Phalcon_Mvc_Model_Relation, getIntermediateReferencedFields);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_relation___construct, 0, 0, 4)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, referencedModel)
ZEND_ARG_INFO(0, fields)
ZEND_ARG_INFO(0, referencedFields)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_relation_setintermediaterelation, 0, 0, 3)
ZEND_ARG_INFO(0, intermediateFields)
ZEND_ARG_INFO(0, intermediateModel)
ZEND_ARG_INFO(0, intermediateReferencedFields)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_relation_getoption, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_relation_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Relation, __construct, arginfo_phalcon_mvc_model_relation___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Relation, setIntermediateRelation, arginfo_phalcon_mvc_model_relation_setintermediaterelation, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getReferencedModel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getFields, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getReferencedFields, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getOption, arginfo_phalcon_mvc_model_relation_getoption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, isForeignKey, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getForeignKey, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getParams, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, isThrough, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, isReusable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getIntermediateFields, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getIntermediateModel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Relation, getIntermediateReferencedFields, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_resultset_complex_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Resultset_Complex);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Complex, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Complex, current);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Complex, toArray);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Complex, serialize);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Complex, unserialize);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_complex___construct, 0, 0, 1)
ZEND_ARG_INFO(0, columnTypes)
ZEND_ARG_OBJ_INFO(0, result, Phalcon\\Db\\ResultInterface, 1)
ZEND_ARG_OBJ_INFO(0, cache, Phalcon\\Cache\\BackendInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_complex_unserialize, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_resultset_complex_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Resultset_Complex, __construct, arginfo_phalcon_mvc_model_resultset_complex___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Resultset_Complex, current, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Resultset_Complex, toArray, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset_Complex, serialize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset_Complex, unserialize, arginfo_phalcon_mvc_model_resultset_complex_unserialize, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_resultset_simple_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Resultset_Simple);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Simple, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Simple, current);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Simple, toArray);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Simple, serialize);
static PHP_METHOD(Phalcon_Mvc_Model_Resultset_Simple, unserialize);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_simple___construct, 0, 0, 3)
ZEND_ARG_INFO(0, columnMap)
ZEND_ARG_INFO(0, model)
ZEND_ARG_INFO(0, result)
ZEND_ARG_OBJ_INFO(0, cache, Phalcon\\Cache\\BackendInterface, 1)
ZEND_ARG_INFO(0, keepSnapshots)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_simple_toarray, 0, 0, 0)
ZEND_ARG_INFO(0, renameColumns)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_resultset_simple_unserialize, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_resultset_simple_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Resultset_Simple, __construct, arginfo_phalcon_mvc_model_resultset_simple___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Resultset_Simple, current, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_Model_Resultset_Simple, toArray, arginfo_phalcon_mvc_model_resultset_simple_toarray, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset_Simple, serialize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Resultset_Simple, unserialize, arginfo_phalcon_mvc_model_resultset_simple_unserialize, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_row_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Row);
static PHP_METHOD(Phalcon_Mvc_Model_Row, setDirtyState);
static PHP_METHOD(Phalcon_Mvc_Model_Row, offsetExists);
static PHP_METHOD(Phalcon_Mvc_Model_Row, offsetGet);
static PHP_METHOD(Phalcon_Mvc_Model_Row, offsetSet);
static PHP_METHOD(Phalcon_Mvc_Model_Row, offsetUnset);
static PHP_METHOD(Phalcon_Mvc_Model_Row, readAttribute);
static PHP_METHOD(Phalcon_Mvc_Model_Row, writeAttribute);
static PHP_METHOD(Phalcon_Mvc_Model_Row, toArray);
static PHP_METHOD(Phalcon_Mvc_Model_Row, jsonSerialize);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_row_setdirtystate, 0, 0, 1)
ZEND_ARG_INFO(0, dirtyState)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_row_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_row_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_row_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_row_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_row_readattribute, 0, 0, 1)
ZEND_ARG_INFO(0, attribute)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_row_writeattribute, 0, 0, 2)
ZEND_ARG_INFO(0, attribute)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_row_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Row, setDirtyState, arginfo_phalcon_mvc_model_row_setdirtystate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Row, offsetExists, arginfo_phalcon_mvc_model_row_offsetexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Row, offsetGet, arginfo_phalcon_mvc_model_row_offsetget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Row, offsetSet, arginfo_phalcon_mvc_model_row_offsetset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Row, offsetUnset, arginfo_phalcon_mvc_model_row_offsetunset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Row, readAttribute, arginfo_phalcon_mvc_model_row_readattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Row, writeAttribute, arginfo_phalcon_mvc_model_row_writeattribute, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Row, toArray, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Row, jsonSerialize, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_transaction_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Transaction);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, setTransactionManager);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, begin);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, commit);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, rollback);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, getConnection);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, setIsNewTransaction);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, setRollbackOnAbort);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, isManaged);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, getMessages);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, isValid);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction, setRollbackedRecord);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction___construct, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_ARG_INFO(0, autoBegin)
ZEND_ARG_INFO(0, service)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_settransactionmanager, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, manager, Phalcon\\Mvc\\Model\\Transaction\\ManagerInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_rollback, 0, 0, 0)
ZEND_ARG_INFO(0, rollbackMessage)
ZEND_ARG_INFO(0, rollbackRecord)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_setisnewtransaction, 0, 0, 1)
ZEND_ARG_INFO(0, isNew)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_setrollbackonabort, 0, 0, 1)
ZEND_ARG_INFO(0, rollbackOnAbort)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_setrollbackedrecord, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_transaction_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Transaction, __construct, arginfo_phalcon_mvc_model_transaction___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Transaction, setTransactionManager, arginfo_phalcon_mvc_model_transaction_settransactionmanager, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, begin, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, commit, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, rollback, arginfo_phalcon_mvc_model_transaction_rollback, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, getConnection, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, setIsNewTransaction, arginfo_phalcon_mvc_model_transaction_setisnewtransaction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, setRollbackOnAbort, arginfo_phalcon_mvc_model_transaction_setrollbackonabort, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, isManaged, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, getMessages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, isValid, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction, setRollbackedRecord, arginfo_phalcon_mvc_model_transaction_setrollbackedrecord, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_transaction_failed_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Transaction_Failed);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Failed, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Failed, getRecordMessages);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Failed, getRecord);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_failed___construct, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\ModelInterface, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_transaction_failed_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Transaction_Failed, __construct, arginfo_phalcon_mvc_model_transaction_failed___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Transaction_Failed, getRecordMessages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Failed, getRecord, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_transaction_manager_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Transaction_Manager);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, setDI);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, getDI);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, setDbService);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, getDbService);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, setRollbackPendent);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, getRollbackPendent);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, has);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, get);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, getOrCreateTransaction);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, rollbackPendent);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, commit);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, rollback);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, notifyRollback);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, notifyCommit);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, _collectTransaction);
static PHP_METHOD(Phalcon_Mvc_Model_Transaction_Manager, collectTransactions);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager___construct, 0, 0, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager_setdbservice, 0, 0, 1)
ZEND_ARG_INFO(0, service)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager_setrollbackpendent, 0, 0, 1)
ZEND_ARG_INFO(0, rollbackPendent)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager_get, 0, 0, 0)
ZEND_ARG_INFO(0, autoBegin)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager_getorcreatetransaction, 0, 0, 0)
ZEND_ARG_INFO(0, autoBegin)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager_rollback, 0, 0, 0)
ZEND_ARG_INFO(0, collect)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager_notifyrollback, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, transaction, Phalcon\\Mvc\\Model\\TransactionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager_notifycommit, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, transaction, Phalcon\\Mvc\\Model\\TransactionInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_transaction_manager__collecttransaction, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, transaction, Phalcon\\Mvc\\Model\\TransactionInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_transaction_manager_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, __construct, arginfo_phalcon_mvc_model_transaction_manager___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, setDI, arginfo_phalcon_mvc_model_transaction_manager_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, setDbService, arginfo_phalcon_mvc_model_transaction_manager_setdbservice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, getDbService, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, setRollbackPendent, arginfo_phalcon_mvc_model_transaction_manager_setrollbackpendent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, getRollbackPendent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, has, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, get, arginfo_phalcon_mvc_model_transaction_manager_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, getOrCreateTransaction, arginfo_phalcon_mvc_model_transaction_manager_getorcreatetransaction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, rollbackPendent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, commit, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, rollback, arginfo_phalcon_mvc_model_transaction_manager_rollback, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, notifyRollback, arginfo_phalcon_mvc_model_transaction_manager_notifyrollback, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, notifyCommit, arginfo_phalcon_mvc_model_transaction_manager_notifycommit, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, _collectTransaction, arginfo_phalcon_mvc_model_transaction_manager__collecttransaction, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_Model_Transaction_Manager, collectTransactions, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validationfailed_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_ValidationFailed);
static PHP_METHOD(Phalcon_Mvc_Model_ValidationFailed, __construct);
static PHP_METHOD(Phalcon_Mvc_Model_ValidationFailed, getModel);
static PHP_METHOD(Phalcon_Mvc_Model_ValidationFailed, getMessages);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validationfailed___construct, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, model, Phalcon\\Mvc\\Model, 0)
ZEND_ARG_ARRAY_INFO(0, validationMessages, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validationfailed_method_entry) {
PHP_ME(Phalcon_Mvc_Model_ValidationFailed, __construct, arginfo_phalcon_mvc_model_validationfailed___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Model_ValidationFailed, getModel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Model_ValidationFailed, getMessages, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_email_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_Email);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_Email, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_email_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_email_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_Email, validate, arginfo_phalcon_mvc_model_validator_email_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_exclusionin_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_Exclusionin);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_Exclusionin, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_exclusionin_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_exclusionin_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_Exclusionin, validate, arginfo_phalcon_mvc_model_validator_exclusionin_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_inclusionin_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_Inclusionin);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_Inclusionin, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_inclusionin_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_inclusionin_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_Inclusionin, validate, arginfo_phalcon_mvc_model_validator_inclusionin_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_ip_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_Ip);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_Ip, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_ip_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_ip_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_Ip, validate, arginfo_phalcon_mvc_model_validator_ip_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_numericality_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_Numericality);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_Numericality, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_numericality_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_numericality_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_Numericality, validate, arginfo_phalcon_mvc_model_validator_numericality_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_presenceof_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_PresenceOf);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_PresenceOf, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_presenceof_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_presenceof_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_PresenceOf, validate, arginfo_phalcon_mvc_model_validator_presenceof_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_regex_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_Regex);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_Regex, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_regex_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_regex_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_Regex, validate, arginfo_phalcon_mvc_model_validator_regex_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_stringlength_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_StringLength);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_StringLength, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_stringlength_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_stringlength_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_StringLength, validate, arginfo_phalcon_mvc_model_validator_stringlength_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_uniqueness_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_Uniqueness);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_Uniqueness, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_uniqueness_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_uniqueness_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_Uniqueness, validate, arginfo_phalcon_mvc_model_validator_uniqueness_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_model_validator_url_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Model_Validator_Url);
static PHP_METHOD(Phalcon_Mvc_Model_Validator_Url, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_model_validator_url_validate, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, record, Phalcon\\Mvc\\EntityInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_model_validator_url_method_entry) {
PHP_ME(Phalcon_Mvc_Model_Validator_Url, validate, arginfo_phalcon_mvc_model_validator_url_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_moduledefinitioninterface_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_ModuleDefinitionInterface);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_moduledefinitioninterface_registerautoloaders, 0, 0, 0)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_moduledefinitioninterface_registerservices, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_moduledefinitioninterface_method_entry) {
PHP_ABSTRACT_ME(Phalcon_Mvc_ModuleDefinitionInterface, registerAutoloaders, arginfo_phalcon_mvc_moduledefinitioninterface_registerautoloaders)
PHP_ABSTRACT_ME(Phalcon_Mvc_ModuleDefinitionInterface, registerServices, arginfo_phalcon_mvc_moduledefinitioninterface_registerservices)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_router_annotations_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Router_Annotations);
static PHP_METHOD(Phalcon_Mvc_Router_Annotations, addResource);
static PHP_METHOD(Phalcon_Mvc_Router_Annotations, addModuleResource);
static PHP_METHOD(Phalcon_Mvc_Router_Annotations, handle);
static PHP_METHOD(Phalcon_Mvc_Router_Annotations, processControllerAnnotation);
static PHP_METHOD(Phalcon_Mvc_Router_Annotations, processActionAnnotation);
static PHP_METHOD(Phalcon_Mvc_Router_Annotations, setControllerSuffix);
static PHP_METHOD(Phalcon_Mvc_Router_Annotations, setActionSuffix);
static PHP_METHOD(Phalcon_Mvc_Router_Annotations, getResources);
zend_object *zephir_init_properties_Phalcon_Mvc_Router_Annotations(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_annotations_addresource, 0, 0, 1)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_annotations_addmoduleresource, 0, 0, 2)
ZEND_ARG_INFO(0, module)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_annotations_handle, 0, 0, 0)
ZEND_ARG_INFO(0, uri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_annotations_processcontrollerannotation, 0, 0, 2)
ZEND_ARG_INFO(0, handler)
ZEND_ARG_OBJ_INFO(0, annotation, Phalcon\\Annotations\\Annotation, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_annotations_processactionannotation, 0, 0, 5)
ZEND_ARG_INFO(0, module)
ZEND_ARG_INFO(0, namespaceName)
ZEND_ARG_INFO(0, controller)
ZEND_ARG_INFO(0, action)
ZEND_ARG_OBJ_INFO(0, annotation, Phalcon\\Annotations\\Annotation, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_annotations_setcontrollersuffix, 0, 0, 1)
ZEND_ARG_INFO(0, controllerSuffix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_annotations_setactionsuffix, 0, 0, 1)
ZEND_ARG_INFO(0, actionSuffix)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_router_annotations_method_entry) {
PHP_ME(Phalcon_Mvc_Router_Annotations, addResource, arginfo_phalcon_mvc_router_annotations_addresource, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Annotations, addModuleResource, arginfo_phalcon_mvc_router_annotations_addmoduleresource, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Annotations, handle, arginfo_phalcon_mvc_router_annotations_handle, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Annotations, processControllerAnnotation, arginfo_phalcon_mvc_router_annotations_processcontrollerannotation, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Annotations, processActionAnnotation, arginfo_phalcon_mvc_router_annotations_processactionannotation, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Annotations, setControllerSuffix, arginfo_phalcon_mvc_router_annotations_setcontrollersuffix, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Annotations, setActionSuffix, arginfo_phalcon_mvc_router_annotations_setactionsuffix, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Annotations, getResources, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_router_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Router_Exception);
zend_class_entry *phalcon_mvc_router_group_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Router_Group);
static PHP_METHOD(Phalcon_Mvc_Router_Group, __construct);
static PHP_METHOD(Phalcon_Mvc_Router_Group, setHostname);
static PHP_METHOD(Phalcon_Mvc_Router_Group, getHostname);
static PHP_METHOD(Phalcon_Mvc_Router_Group, setPrefix);
static PHP_METHOD(Phalcon_Mvc_Router_Group, getPrefix);
static PHP_METHOD(Phalcon_Mvc_Router_Group, beforeMatch);
static PHP_METHOD(Phalcon_Mvc_Router_Group, getBeforeMatch);
static PHP_METHOD(Phalcon_Mvc_Router_Group, setPaths);
static PHP_METHOD(Phalcon_Mvc_Router_Group, getPaths);
static PHP_METHOD(Phalcon_Mvc_Router_Group, getRoutes);
static PHP_METHOD(Phalcon_Mvc_Router_Group, add);
static PHP_METHOD(Phalcon_Mvc_Router_Group, addGet);
static PHP_METHOD(Phalcon_Mvc_Router_Group, addPost);
static PHP_METHOD(Phalcon_Mvc_Router_Group, addPut);
static PHP_METHOD(Phalcon_Mvc_Router_Group, addPatch);
static PHP_METHOD(Phalcon_Mvc_Router_Group, addDelete);
static PHP_METHOD(Phalcon_Mvc_Router_Group, addOptions);
static PHP_METHOD(Phalcon_Mvc_Router_Group, addHead);
static PHP_METHOD(Phalcon_Mvc_Router_Group, clear);
static PHP_METHOD(Phalcon_Mvc_Router_Group, _addRoute);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group___construct, 0, 0, 0)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_sethostname, 0, 0, 1)
ZEND_ARG_INFO(0, hostname)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_setprefix, 0, 0, 1)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_beforematch, 0, 0, 1)
ZEND_ARG_INFO(0, beforeMatch)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_setpaths, 0, 0, 1)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_add, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, httpMethods)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_addget, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_addpost, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_addput, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_addpatch, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_adddelete, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_addoptions, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group_addhead, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_group__addroute, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, httpMethods)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_router_group_method_entry) {
PHP_ME(Phalcon_Mvc_Router_Group, __construct, arginfo_phalcon_mvc_router_group___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Router_Group, setHostname, arginfo_phalcon_mvc_router_group_sethostname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, getHostname, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, setPrefix, arginfo_phalcon_mvc_router_group_setprefix, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, getPrefix, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, beforeMatch, arginfo_phalcon_mvc_router_group_beforematch, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, getBeforeMatch, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, setPaths, arginfo_phalcon_mvc_router_group_setpaths, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, getPaths, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, getRoutes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, add, arginfo_phalcon_mvc_router_group_add, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, addGet, arginfo_phalcon_mvc_router_group_addget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, addPost, arginfo_phalcon_mvc_router_group_addpost, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, addPut, arginfo_phalcon_mvc_router_group_addput, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, addPatch, arginfo_phalcon_mvc_router_group_addpatch, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, addDelete, arginfo_phalcon_mvc_router_group_adddelete, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, addOptions, arginfo_phalcon_mvc_router_group_addoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, addHead, arginfo_phalcon_mvc_router_group_addhead, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, clear, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Group, _addRoute, arginfo_phalcon_mvc_router_group__addroute, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_router_route_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Router_Route);
static PHP_METHOD(Phalcon_Mvc_Router_Route, __construct);
static PHP_METHOD(Phalcon_Mvc_Router_Route, compilePattern);
static PHP_METHOD(Phalcon_Mvc_Router_Route, via);
static PHP_METHOD(Phalcon_Mvc_Router_Route, extractNamedParams);
static PHP_METHOD(Phalcon_Mvc_Router_Route, reConfigure);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getRoutePaths);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getName);
static PHP_METHOD(Phalcon_Mvc_Router_Route, setName);
static PHP_METHOD(Phalcon_Mvc_Router_Route, beforeMatch);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getBeforeMatch);
static PHP_METHOD(Phalcon_Mvc_Router_Route, match);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getMatch);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getRouteId);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getPattern);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getCompiledPattern);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getPaths);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getReversedPaths);
static PHP_METHOD(Phalcon_Mvc_Router_Route, setHttpMethods);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getHttpMethods);
static PHP_METHOD(Phalcon_Mvc_Router_Route, setHostname);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getHostname);
static PHP_METHOD(Phalcon_Mvc_Router_Route, setGroup);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getGroup);
static PHP_METHOD(Phalcon_Mvc_Router_Route, convert);
static PHP_METHOD(Phalcon_Mvc_Router_Route, getConverters);
static PHP_METHOD(Phalcon_Mvc_Router_Route, reset);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route___construct, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_ARG_INFO(0, httpMethods)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_compilepattern, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_via, 0, 0, 1)
ZEND_ARG_INFO(0, httpMethods)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_extractnamedparams, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_reconfigure, 0, 0, 1)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_getroutepaths, 0, 0, 0)
ZEND_ARG_INFO(0, paths)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_setname, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_beforematch, 0, 0, 1)
ZEND_ARG_INFO(0, callback)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_match, 0, 0, 1)
ZEND_ARG_INFO(0, callback)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_sethttpmethods, 0, 0, 1)
ZEND_ARG_INFO(0, httpMethods)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_sethostname, 0, 0, 1)
ZEND_ARG_INFO(0, hostname)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_setgroup, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, group, Phalcon\\Mvc\\Router\\GroupInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_router_route_convert, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, converter)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_router_route_method_entry) {
PHP_ME(Phalcon_Mvc_Router_Route, __construct, arginfo_phalcon_mvc_router_route___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_Router_Route, compilePattern, arginfo_phalcon_mvc_router_route_compilepattern, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, via, arginfo_phalcon_mvc_router_route_via, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, extractNamedParams, arginfo_phalcon_mvc_router_route_extractnamedparams, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, reConfigure, arginfo_phalcon_mvc_router_route_reconfigure, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getRoutePaths, arginfo_phalcon_mvc_router_route_getroutepaths, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Mvc_Router_Route, getName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, setName, arginfo_phalcon_mvc_router_route_setname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, beforeMatch, arginfo_phalcon_mvc_router_route_beforematch, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getBeforeMatch, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, match, arginfo_phalcon_mvc_router_route_match, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getMatch, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getRouteId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getPattern, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getCompiledPattern, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getPaths, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getReversedPaths, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, setHttpMethods, arginfo_phalcon_mvc_router_route_sethttpmethods, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getHttpMethods, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, setHostname, arginfo_phalcon_mvc_router_route_sethostname, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getHostname, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, setGroup, arginfo_phalcon_mvc_router_route_setgroup, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getGroup, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, convert, arginfo_phalcon_mvc_router_route_convert, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, getConverters, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Router_Route, reset, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_url_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Url);
static PHP_METHOD(Phalcon_Mvc_Url, setDI);
static PHP_METHOD(Phalcon_Mvc_Url, getDI);
static PHP_METHOD(Phalcon_Mvc_Url, setBaseUri);
static PHP_METHOD(Phalcon_Mvc_Url, setStaticBaseUri);
static PHP_METHOD(Phalcon_Mvc_Url, getBaseUri);
static PHP_METHOD(Phalcon_Mvc_Url, getStaticBaseUri);
static PHP_METHOD(Phalcon_Mvc_Url, setBasePath);
static PHP_METHOD(Phalcon_Mvc_Url, getBasePath);
static PHP_METHOD(Phalcon_Mvc_Url, get);
static PHP_METHOD(Phalcon_Mvc_Url, getStatic);
static PHP_METHOD(Phalcon_Mvc_Url, path);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_url_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_url_setbaseuri, 0, 0, 1)
ZEND_ARG_INFO(0, baseUri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_url_setstaticbaseuri, 0, 0, 1)
ZEND_ARG_INFO(0, staticBaseUri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_url_setbasepath, 0, 0, 1)
ZEND_ARG_INFO(0, basePath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_url_get, 0, 0, 0)
ZEND_ARG_INFO(0, uri)
ZEND_ARG_INFO(0, args)
ZEND_ARG_INFO(0, local)
ZEND_ARG_INFO(0, baseUri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_url_getstatic, 0, 0, 0)
ZEND_ARG_INFO(0, uri)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_url_path, 0, 0, 0)
ZEND_ARG_INFO(0, path)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_url_method_entry) {
PHP_ME(Phalcon_Mvc_Url, setDI, arginfo_phalcon_mvc_url_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, setBaseUri, arginfo_phalcon_mvc_url_setbaseuri, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, setStaticBaseUri, arginfo_phalcon_mvc_url_setstaticbaseuri, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, getBaseUri, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, getStaticBaseUri, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, setBasePath, arginfo_phalcon_mvc_url_setbasepath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, getBasePath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, get, arginfo_phalcon_mvc_url_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, getStatic, arginfo_phalcon_mvc_url_getstatic, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_Url, path, arginfo_phalcon_mvc_url_path, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_url_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_Url_Exception);
zend_class_entry *phalcon_mvc_user_component_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_User_Component);
zend_class_entry *phalcon_mvc_user_module_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_User_Module);
zend_class_entry *phalcon_mvc_user_plugin_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_User_Plugin);
zend_class_entry *phalcon_mvc_view_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_View);
static PHP_METHOD(Phalcon_Mvc_View, getRenderLevel);
static PHP_METHOD(Phalcon_Mvc_View, getCurrentRenderLevel);
static PHP_METHOD(Phalcon_Mvc_View, getRegisteredEngines);
static PHP_METHOD(Phalcon_Mvc_View, __construct);
static PHP_METHOD(Phalcon_Mvc_View, _isAbsolutePath);
static PHP_METHOD(Phalcon_Mvc_View, setViewsDir);
static PHP_METHOD(Phalcon_Mvc_View, getViewsDir);
static PHP_METHOD(Phalcon_Mvc_View, setLayoutsDir);
static PHP_METHOD(Phalcon_Mvc_View, getLayoutsDir);
static PHP_METHOD(Phalcon_Mvc_View, setPartialsDir);
static PHP_METHOD(Phalcon_Mvc_View, getPartialsDir);
static PHP_METHOD(Phalcon_Mvc_View, setBasePath);
static PHP_METHOD(Phalcon_Mvc_View, getBasePath);
static PHP_METHOD(Phalcon_Mvc_View, setRenderLevel);
static PHP_METHOD(Phalcon_Mvc_View, disableLevel);
static PHP_METHOD(Phalcon_Mvc_View, setMainView);
static PHP_METHOD(Phalcon_Mvc_View, getMainView);
static PHP_METHOD(Phalcon_Mvc_View, setLayout);
static PHP_METHOD(Phalcon_Mvc_View, getLayout);
static PHP_METHOD(Phalcon_Mvc_View, setTemplateBefore);
static PHP_METHOD(Phalcon_Mvc_View, cleanTemplateBefore);
static PHP_METHOD(Phalcon_Mvc_View, setTemplateAfter);
static PHP_METHOD(Phalcon_Mvc_View, cleanTemplateAfter);
static PHP_METHOD(Phalcon_Mvc_View, setParamToView);
static PHP_METHOD(Phalcon_Mvc_View, setVars);
static PHP_METHOD(Phalcon_Mvc_View, setVar);
static PHP_METHOD(Phalcon_Mvc_View, getVar);
static PHP_METHOD(Phalcon_Mvc_View, getParamsToView);
static PHP_METHOD(Phalcon_Mvc_View, getControllerName);
static PHP_METHOD(Phalcon_Mvc_View, getActionName);
static PHP_METHOD(Phalcon_Mvc_View, getParams);
static PHP_METHOD(Phalcon_Mvc_View, start);
static PHP_METHOD(Phalcon_Mvc_View, _loadTemplateEngines);
static PHP_METHOD(Phalcon_Mvc_View, _engineRender);
static PHP_METHOD(Phalcon_Mvc_View, registerEngines);
static PHP_METHOD(Phalcon_Mvc_View, exists);
static PHP_METHOD(Phalcon_Mvc_View, render);
static PHP_METHOD(Phalcon_Mvc_View, pick);
static PHP_METHOD(Phalcon_Mvc_View, getPartial);
static PHP_METHOD(Phalcon_Mvc_View, partial);
static PHP_METHOD(Phalcon_Mvc_View, getRender);
static PHP_METHOD(Phalcon_Mvc_View, finish);
static PHP_METHOD(Phalcon_Mvc_View, _createCache);
static PHP_METHOD(Phalcon_Mvc_View, isCaching);
static PHP_METHOD(Phalcon_Mvc_View, getCache);
static PHP_METHOD(Phalcon_Mvc_View, cache);
static PHP_METHOD(Phalcon_Mvc_View, setContent);
static PHP_METHOD(Phalcon_Mvc_View, getContent);
static PHP_METHOD(Phalcon_Mvc_View, getActiveRenderPath);
static PHP_METHOD(Phalcon_Mvc_View, disable);
static PHP_METHOD(Phalcon_Mvc_View, enable);
static PHP_METHOD(Phalcon_Mvc_View, reset);
static PHP_METHOD(Phalcon_Mvc_View, __set);
static PHP_METHOD(Phalcon_Mvc_View, __get);
static PHP_METHOD(Phalcon_Mvc_View, isDisabled);
static PHP_METHOD(Phalcon_Mvc_View, __isset);
static PHP_METHOD(Phalcon_Mvc_View, getViewsDirs);
zend_object *zephir_init_properties_Phalcon_Mvc_View(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view___construct, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, options, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view__isabsolutepath, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setviewsdir, 0, 0, 1)
ZEND_ARG_INFO(0, viewsDir)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setlayoutsdir, 0, 0, 1)
ZEND_ARG_INFO(0, layoutsDir)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setpartialsdir, 0, 0, 1)
ZEND_ARG_INFO(0, partialsDir)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setbasepath, 0, 0, 1)
ZEND_ARG_INFO(0, basePath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setrenderlevel, 0, 0, 1)
ZEND_ARG_INFO(0, level)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_disablelevel, 0, 0, 1)
ZEND_ARG_INFO(0, level)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setmainview, 0, 0, 1)
ZEND_ARG_INFO(0, viewPath)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setlayout, 0, 0, 1)
ZEND_ARG_INFO(0, layout)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_settemplatebefore, 0, 0, 1)
ZEND_ARG_INFO(0, templateBefore)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_settemplateafter, 0, 0, 1)
ZEND_ARG_INFO(0, templateAfter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setparamtoview, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setvars, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, params, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setvar, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_getvar, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view__enginerender, 0, 0, 4)
ZEND_ARG_INFO(0, engines)
ZEND_ARG_INFO(0, viewPath)
ZEND_ARG_INFO(0, silence)
ZEND_ARG_INFO(0, mustClean)
ZEND_ARG_OBJ_INFO(0, cache, Phalcon\\Cache\\BackendInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_registerengines, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, engines, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_exists, 0, 0, 1)
ZEND_ARG_INFO(0, view)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_render, 0, 0, 2)
ZEND_ARG_INFO(0, controllerName)
ZEND_ARG_INFO(0, actionName)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_pick, 0, 0, 1)
ZEND_ARG_INFO(0, renderView)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_getpartial, 0, 0, 1)
ZEND_ARG_INFO(0, partialPath)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_partial, 0, 0, 1)
ZEND_ARG_INFO(0, partialPath)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_getrender, 0, 0, 2)
ZEND_ARG_INFO(0, controllerName)
ZEND_ARG_INFO(0, actionName)
ZEND_ARG_INFO(0, params)
ZEND_ARG_INFO(0, configCallback)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_cache, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_setcontent, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view___set, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view___get, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view___isset, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_view_method_entry) {
PHP_ME(Phalcon_Mvc_View, getRenderLevel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getCurrentRenderLevel, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getRegisteredEngines, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, __construct, arginfo_phalcon_mvc_view___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_View, _isAbsolutePath, arginfo_phalcon_mvc_view__isabsolutepath, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_View, setViewsDir, arginfo_phalcon_mvc_view_setviewsdir, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getViewsDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setLayoutsDir, arginfo_phalcon_mvc_view_setlayoutsdir, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getLayoutsDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setPartialsDir, arginfo_phalcon_mvc_view_setpartialsdir, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getPartialsDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setBasePath, arginfo_phalcon_mvc_view_setbasepath, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getBasePath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setRenderLevel, arginfo_phalcon_mvc_view_setrenderlevel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, disableLevel, arginfo_phalcon_mvc_view_disablelevel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setMainView, arginfo_phalcon_mvc_view_setmainview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getMainView, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setLayout, arginfo_phalcon_mvc_view_setlayout, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getLayout, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setTemplateBefore, arginfo_phalcon_mvc_view_settemplatebefore, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, cleanTemplateBefore, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setTemplateAfter, arginfo_phalcon_mvc_view_settemplateafter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, cleanTemplateAfter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setParamToView, arginfo_phalcon_mvc_view_setparamtoview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setVars, arginfo_phalcon_mvc_view_setvars, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setVar, arginfo_phalcon_mvc_view_setvar, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getVar, arginfo_phalcon_mvc_view_getvar, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getParamsToView, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getControllerName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getActionName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getParams, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, start, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, _loadTemplateEngines, NULL, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_View, _engineRender, arginfo_phalcon_mvc_view__enginerender, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_View, registerEngines, arginfo_phalcon_mvc_view_registerengines, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, exists, arginfo_phalcon_mvc_view_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, render, arginfo_phalcon_mvc_view_render, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, pick, arginfo_phalcon_mvc_view_pick, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getPartial, arginfo_phalcon_mvc_view_getpartial, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, partial, arginfo_phalcon_mvc_view_partial, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getRender, arginfo_phalcon_mvc_view_getrender, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, finish, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, _createCache, NULL, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_View, isCaching, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getCache, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, cache, arginfo_phalcon_mvc_view_cache, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, setContent, arginfo_phalcon_mvc_view_setcontent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getActiveRenderPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, disable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, enable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, reset, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, __set, arginfo_phalcon_mvc_view___set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, __get, arginfo_phalcon_mvc_view___get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, isDisabled, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, __isset, arginfo_phalcon_mvc_view___isset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View, getViewsDirs, NULL, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_view_engine_php_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_View_Engine_Php);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Php, render);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_php_render, 0, 0, 2)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, params)
ZEND_ARG_INFO(0, mustClean)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_view_engine_php_method_entry) {
PHP_ME(Phalcon_Mvc_View_Engine_Php, render, arginfo_phalcon_mvc_view_engine_php_render, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_view_engine_volt_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_View_Engine_Volt);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, setOptions);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, getOptions);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, getCompiler);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, render);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, length);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, isIncluded);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, convertEncoding);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, slice);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, sort);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt, callMacro);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_setoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_render, 0, 0, 2)
ZEND_ARG_INFO(0, templatePath)
ZEND_ARG_INFO(0, params)
ZEND_ARG_INFO(0, mustClean)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_length, 0, 0, 1)
ZEND_ARG_INFO(0, item)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_isincluded, 0, 0, 2)
ZEND_ARG_INFO(0, needle)
ZEND_ARG_INFO(0, haystack)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_convertencoding, 0, 0, 3)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, from)
ZEND_ARG_INFO(0, to)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_slice, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, start)
ZEND_ARG_INFO(0, end)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_sort, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, value, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_callmacro, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_ARRAY_INFO(0, arguments, 1)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_view_engine_volt_method_entry) {
PHP_ME(Phalcon_Mvc_View_Engine_Volt, setOptions, arginfo_phalcon_mvc_view_engine_volt_setoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt, getOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt, getCompiler, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt, render, arginfo_phalcon_mvc_view_engine_volt_render, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt, length, arginfo_phalcon_mvc_view_engine_volt_length, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt, isIncluded, arginfo_phalcon_mvc_view_engine_volt_isincluded, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt, convertEncoding, arginfo_phalcon_mvc_view_engine_volt_convertencoding, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt, slice, arginfo_phalcon_mvc_view_engine_volt_slice, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt, sort, arginfo_phalcon_mvc_view_engine_volt_sort, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt, callMacro, arginfo_phalcon_mvc_view_engine_volt_callmacro, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_view_engine_volt_compiler_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_View_Engine_Volt_Compiler);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, __construct);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, setDI);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getDI);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, setOptions);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, setOption);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getOption);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getOptions);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, fireExtensionEvent);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, addExtension);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getExtensions);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, addFunction);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getFunctions);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, addFilter);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getFilters);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, setUniquePrefix);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getUniquePrefix);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, attributeReader);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, functionCall);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, resolveTest);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, resolveFilter);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, expression);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, _statementListOrExtends);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileForeach);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileForElse);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileIf);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileElseIf);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileCache);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileSet);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileDo);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileReturn);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileAutoEscape);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileEcho);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileInclude);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileMacro);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileCall);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, _statementList);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, _compileSource);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileString);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compileFile);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, compile);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getTemplatePath);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getCompiledTemplatePath);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, parse);
static PHP_METHOD(Phalcon_Mvc_View_Engine_Volt_Compiler, getFinalPath);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler___construct, 0, 0, 0)
ZEND_ARG_OBJ_INFO(0, view, Phalcon\\Mvc\\ViewBaseInterface, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_setoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_setoption, 0, 0, 2)
ZEND_ARG_INFO(0, option)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_getoption, 0, 0, 1)
ZEND_ARG_INFO(0, option)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_fireextensionevent, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, arguments)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_addextension, 0, 0, 1)
ZEND_ARG_INFO(0, extension)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_addfunction, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_addfilter, 0, 0, 2)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, definition)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_setuniqueprefix, 0, 0, 1)
ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_attributereader, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expr, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_functioncall, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expr, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_resolvetest, 0, 0, 2)
ZEND_ARG_ARRAY_INFO(0, test, 0)
ZEND_ARG_INFO(0, left)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_resolvefilter, 0, 0, 2)
ZEND_ARG_ARRAY_INFO(0, filter, 0)
ZEND_ARG_INFO(0, left)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_expression, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, expr, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler__statementlistorextends, 0, 0, 1)
ZEND_ARG_INFO(0, statements)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compileforeach, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compileif, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compileelseif, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compilecache, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compileset, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compiledo, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compilereturn, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compileautoescape, 0, 0, 2)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compileecho, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compileinclude, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compilemacro, 0, 0, 2)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compilecall, 0, 0, 2)
ZEND_ARG_ARRAY_INFO(0, statement, 0)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler__statementlist, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, statements, 0)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler__compilesource, 0, 0, 1)
ZEND_ARG_INFO(0, viewCode)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compilestring, 0, 0, 1)
ZEND_ARG_INFO(0, viewCode)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compilefile, 0, 0, 2)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, compiledPath)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_compile, 0, 0, 1)
ZEND_ARG_INFO(0, templatePath)
ZEND_ARG_INFO(0, extendsMode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_parse, 0, 0, 1)
ZEND_ARG_INFO(0, viewCode)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_engine_volt_compiler_getfinalpath, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_view_engine_volt_compiler_method_entry) {
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, __construct, arginfo_phalcon_mvc_view_engine_volt_compiler___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, setDI, arginfo_phalcon_mvc_view_engine_volt_compiler_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, setOptions, arginfo_phalcon_mvc_view_engine_volt_compiler_setoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, setOption, arginfo_phalcon_mvc_view_engine_volt_compiler_setoption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getOption, arginfo_phalcon_mvc_view_engine_volt_compiler_getoption, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, fireExtensionEvent, arginfo_phalcon_mvc_view_engine_volt_compiler_fireextensionevent, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, addExtension, arginfo_phalcon_mvc_view_engine_volt_compiler_addextension, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getExtensions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, addFunction, arginfo_phalcon_mvc_view_engine_volt_compiler_addfunction, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getFunctions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, addFilter, arginfo_phalcon_mvc_view_engine_volt_compiler_addfilter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getFilters, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, setUniquePrefix, arginfo_phalcon_mvc_view_engine_volt_compiler_setuniqueprefix, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getUniquePrefix, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, attributeReader, arginfo_phalcon_mvc_view_engine_volt_compiler_attributereader, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, functionCall, arginfo_phalcon_mvc_view_engine_volt_compiler_functioncall, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, resolveTest, arginfo_phalcon_mvc_view_engine_volt_compiler_resolvetest, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, resolveFilter, arginfo_phalcon_mvc_view_engine_volt_compiler_resolvefilter, ZEND_ACC_FINAL|ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, expression, arginfo_phalcon_mvc_view_engine_volt_compiler_expression, ZEND_ACC_FINAL|ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, _statementListOrExtends, arginfo_phalcon_mvc_view_engine_volt_compiler__statementlistorextends, ZEND_ACC_FINAL|ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileForeach, arginfo_phalcon_mvc_view_engine_volt_compiler_compileforeach, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileForElse, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileIf, arginfo_phalcon_mvc_view_engine_volt_compiler_compileif, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileElseIf, arginfo_phalcon_mvc_view_engine_volt_compiler_compileelseif, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileCache, arginfo_phalcon_mvc_view_engine_volt_compiler_compilecache, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileSet, arginfo_phalcon_mvc_view_engine_volt_compiler_compileset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileDo, arginfo_phalcon_mvc_view_engine_volt_compiler_compiledo, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileReturn, arginfo_phalcon_mvc_view_engine_volt_compiler_compilereturn, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileAutoEscape, arginfo_phalcon_mvc_view_engine_volt_compiler_compileautoescape, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileEcho, arginfo_phalcon_mvc_view_engine_volt_compiler_compileecho, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileInclude, arginfo_phalcon_mvc_view_engine_volt_compiler_compileinclude, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileMacro, arginfo_phalcon_mvc_view_engine_volt_compiler_compilemacro, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileCall, arginfo_phalcon_mvc_view_engine_volt_compiler_compilecall, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, _statementList, arginfo_phalcon_mvc_view_engine_volt_compiler__statementlist, ZEND_ACC_FINAL|ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, _compileSource, arginfo_phalcon_mvc_view_engine_volt_compiler__compilesource, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileString, arginfo_phalcon_mvc_view_engine_volt_compiler_compilestring, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compileFile, arginfo_phalcon_mvc_view_engine_volt_compiler_compilefile, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, compile, arginfo_phalcon_mvc_view_engine_volt_compiler_compile, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getTemplatePath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getCompiledTemplatePath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, parse, arginfo_phalcon_mvc_view_engine_volt_compiler_parse, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Engine_Volt_Compiler, getFinalPath, arginfo_phalcon_mvc_view_engine_volt_compiler_getfinalpath, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_mvc_view_engine_volt_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_View_Engine_Volt_Exception);
zend_class_entry *phalcon_mvc_view_simple_ce;
ZEPHIR_INIT_CLASS(Phalcon_Mvc_View_Simple);
static PHP_METHOD(Phalcon_Mvc_View_Simple, getRegisteredEngines);
static PHP_METHOD(Phalcon_Mvc_View_Simple, __construct);
static PHP_METHOD(Phalcon_Mvc_View_Simple, setViewsDir);
static PHP_METHOD(Phalcon_Mvc_View_Simple, getViewsDir);
static PHP_METHOD(Phalcon_Mvc_View_Simple, registerEngines);
static PHP_METHOD(Phalcon_Mvc_View_Simple, _loadTemplateEngines);
static PHP_METHOD(Phalcon_Mvc_View_Simple, _internalRender);
static PHP_METHOD(Phalcon_Mvc_View_Simple, render);
static PHP_METHOD(Phalcon_Mvc_View_Simple, partial);
static PHP_METHOD(Phalcon_Mvc_View_Simple, setCacheOptions);
static PHP_METHOD(Phalcon_Mvc_View_Simple, getCacheOptions);
static PHP_METHOD(Phalcon_Mvc_View_Simple, _createCache);
static PHP_METHOD(Phalcon_Mvc_View_Simple, getCache);
static PHP_METHOD(Phalcon_Mvc_View_Simple, cache);
static PHP_METHOD(Phalcon_Mvc_View_Simple, setParamToView);
static PHP_METHOD(Phalcon_Mvc_View_Simple, setVars);
static PHP_METHOD(Phalcon_Mvc_View_Simple, setVar);
static PHP_METHOD(Phalcon_Mvc_View_Simple, getVar);
static PHP_METHOD(Phalcon_Mvc_View_Simple, getParamsToView);
static PHP_METHOD(Phalcon_Mvc_View_Simple, setContent);
static PHP_METHOD(Phalcon_Mvc_View_Simple, getContent);
static PHP_METHOD(Phalcon_Mvc_View_Simple, getActiveRenderPath);
static PHP_METHOD(Phalcon_Mvc_View_Simple, __set);
static PHP_METHOD(Phalcon_Mvc_View_Simple, __get);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple___construct, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, options, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_setviewsdir, 0, 0, 1)
ZEND_ARG_INFO(0, viewsDir)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_registerengines, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, engines, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple__internalrender, 0, 0, 2)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_render, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_partial, 0, 0, 1)
ZEND_ARG_INFO(0, partialPath)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_setcacheoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_cache, 0, 0, 0)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_setparamtoview, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_setvars, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, params, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_setvar, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_getvar, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple_setcontent, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple___set, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_mvc_view_simple___get, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_mvc_view_simple_method_entry) {
PHP_ME(Phalcon_Mvc_View_Simple, getRegisteredEngines, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, __construct, arginfo_phalcon_mvc_view_simple___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Mvc_View_Simple, setViewsDir, arginfo_phalcon_mvc_view_simple_setviewsdir, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, getViewsDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, registerEngines, arginfo_phalcon_mvc_view_simple_registerengines, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, _loadTemplateEngines, NULL, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_View_Simple, _internalRender, arginfo_phalcon_mvc_view_simple__internalrender, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Mvc_View_Simple, render, arginfo_phalcon_mvc_view_simple_render, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, partial, arginfo_phalcon_mvc_view_simple_partial, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, setCacheOptions, arginfo_phalcon_mvc_view_simple_setcacheoptions, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, getCacheOptions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, _createCache, NULL, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Mvc_View_Simple, getCache, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, cache, arginfo_phalcon_mvc_view_simple_cache, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, setParamToView, arginfo_phalcon_mvc_view_simple_setparamtoview, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, setVars, arginfo_phalcon_mvc_view_simple_setvars, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, setVar, arginfo_phalcon_mvc_view_simple_setvar, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, getVar, arginfo_phalcon_mvc_view_simple_getvar, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, getParamsToView, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, setContent, arginfo_phalcon_mvc_view_simple_setcontent, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, getContent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, getActiveRenderPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, __set, arginfo_phalcon_mvc_view_simple___set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Mvc_View_Simple, __get, arginfo_phalcon_mvc_view_simple___get, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_paginator_adapter_model_ce;
ZEPHIR_INIT_CLASS(Phalcon_Paginator_Adapter_Model);
static PHP_METHOD(Phalcon_Paginator_Adapter_Model, __construct);
static PHP_METHOD(Phalcon_Paginator_Adapter_Model, getPaginate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_paginator_adapter_model___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, config, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_paginator_adapter_model_method_entry) {
PHP_ME(Phalcon_Paginator_Adapter_Model, __construct, arginfo_phalcon_paginator_adapter_model___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Paginator_Adapter_Model, getPaginate, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_paginator_adapter_nativearray_ce;
ZEPHIR_INIT_CLASS(Phalcon_Paginator_Adapter_NativeArray);
static PHP_METHOD(Phalcon_Paginator_Adapter_NativeArray, __construct);
static PHP_METHOD(Phalcon_Paginator_Adapter_NativeArray, getPaginate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_paginator_adapter_nativearray___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, config, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_paginator_adapter_nativearray_method_entry) {
PHP_ME(Phalcon_Paginator_Adapter_NativeArray, __construct, arginfo_phalcon_paginator_adapter_nativearray___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Paginator_Adapter_NativeArray, getPaginate, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_paginator_adapter_querybuilder_ce;
ZEPHIR_INIT_CLASS(Phalcon_Paginator_Adapter_QueryBuilder);
static PHP_METHOD(Phalcon_Paginator_Adapter_QueryBuilder, __construct);
static PHP_METHOD(Phalcon_Paginator_Adapter_QueryBuilder, getCurrentPage);
static PHP_METHOD(Phalcon_Paginator_Adapter_QueryBuilder, setQueryBuilder);
static PHP_METHOD(Phalcon_Paginator_Adapter_QueryBuilder, getQueryBuilder);
static PHP_METHOD(Phalcon_Paginator_Adapter_QueryBuilder, getPaginate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_paginator_adapter_querybuilder___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, config, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_paginator_adapter_querybuilder_setquerybuilder, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, builder, Phalcon\\Mvc\\Model\\Query\\Builder, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_paginator_adapter_querybuilder_method_entry) {
PHP_ME(Phalcon_Paginator_Adapter_QueryBuilder, __construct, arginfo_phalcon_paginator_adapter_querybuilder___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Paginator_Adapter_QueryBuilder, getCurrentPage, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Paginator_Adapter_QueryBuilder, setQueryBuilder, arginfo_phalcon_paginator_adapter_querybuilder_setquerybuilder, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Paginator_Adapter_QueryBuilder, getQueryBuilder, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Paginator_Adapter_QueryBuilder, getPaginate, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_paginator_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Paginator_Exception);
zend_class_entry *phalcon_queue_beanstalk_ce;
ZEPHIR_INIT_CLASS(Phalcon_Queue_Beanstalk);
static PHP_METHOD(Phalcon_Queue_Beanstalk, __construct);
static PHP_METHOD(Phalcon_Queue_Beanstalk, connect);
static PHP_METHOD(Phalcon_Queue_Beanstalk, put);
static PHP_METHOD(Phalcon_Queue_Beanstalk, reserve);
static PHP_METHOD(Phalcon_Queue_Beanstalk, choose);
static PHP_METHOD(Phalcon_Queue_Beanstalk, watch);
static PHP_METHOD(Phalcon_Queue_Beanstalk, ignore);
static PHP_METHOD(Phalcon_Queue_Beanstalk, pauseTube);
static PHP_METHOD(Phalcon_Queue_Beanstalk, kick);
static PHP_METHOD(Phalcon_Queue_Beanstalk, stats);
static PHP_METHOD(Phalcon_Queue_Beanstalk, statsTube);
static PHP_METHOD(Phalcon_Queue_Beanstalk, listTubes);
static PHP_METHOD(Phalcon_Queue_Beanstalk, listTubeUsed);
static PHP_METHOD(Phalcon_Queue_Beanstalk, listTubesWatched);
static PHP_METHOD(Phalcon_Queue_Beanstalk, peekReady);
static PHP_METHOD(Phalcon_Queue_Beanstalk, peekBuried);
static PHP_METHOD(Phalcon_Queue_Beanstalk, peekDelayed);
static PHP_METHOD(Phalcon_Queue_Beanstalk, jobPeek);
static PHP_METHOD(Phalcon_Queue_Beanstalk, readStatus);
static PHP_METHOD(Phalcon_Queue_Beanstalk, readYaml);
static PHP_METHOD(Phalcon_Queue_Beanstalk, read);
static PHP_METHOD(Phalcon_Queue_Beanstalk, write);
static PHP_METHOD(Phalcon_Queue_Beanstalk, disconnect);
static PHP_METHOD(Phalcon_Queue_Beanstalk, quit);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk___construct, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, parameters, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_put, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_ARG_ARRAY_INFO(0, options, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_reserve, 0, 0, 0)
ZEND_ARG_INFO(0, timeout)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_choose, 0, 0, 1)
ZEND_ARG_INFO(0, tube)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_watch, 0, 0, 1)
ZEND_ARG_INFO(0, tube)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_ignore, 0, 0, 1)
ZEND_ARG_INFO(0, tube)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_pausetube, 0, 0, 2)
ZEND_ARG_INFO(0, tube)
ZEND_ARG_INFO(0, delay)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_kick, 0, 0, 1)
ZEND_ARG_INFO(0, bound)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_statstube, 0, 0, 1)
ZEND_ARG_INFO(0, tube)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_jobpeek, 0, 0, 1)
ZEND_ARG_INFO(0, id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_read, 0, 0, 0)
ZEND_ARG_INFO(0, length)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_write, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_queue_beanstalk_method_entry) {
PHP_ME(Phalcon_Queue_Beanstalk, __construct, arginfo_phalcon_queue_beanstalk___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Queue_Beanstalk, connect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, put, arginfo_phalcon_queue_beanstalk_put, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, reserve, arginfo_phalcon_queue_beanstalk_reserve, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, choose, arginfo_phalcon_queue_beanstalk_choose, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, watch, arginfo_phalcon_queue_beanstalk_watch, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, ignore, arginfo_phalcon_queue_beanstalk_ignore, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, pauseTube, arginfo_phalcon_queue_beanstalk_pausetube, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, kick, arginfo_phalcon_queue_beanstalk_kick, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, stats, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, statsTube, arginfo_phalcon_queue_beanstalk_statstube, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, listTubes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, listTubeUsed, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, listTubesWatched, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, peekReady, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, peekBuried, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, peekDelayed, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, jobPeek, arginfo_phalcon_queue_beanstalk_jobpeek, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, readStatus, NULL, ZEND_ACC_FINAL|ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, readYaml, NULL, ZEND_ACC_FINAL|ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, read, arginfo_phalcon_queue_beanstalk_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, write, arginfo_phalcon_queue_beanstalk_write, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Queue_Beanstalk, disconnect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk, quit, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_queue_beanstalk_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Queue_Beanstalk_Exception);
zend_class_entry *phalcon_queue_beanstalk_job_ce;
ZEPHIR_INIT_CLASS(Phalcon_Queue_Beanstalk_Job);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, getId);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, getBody);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, __construct);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, delete);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, release);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, bury);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, touch);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, kick);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, stats);
static PHP_METHOD(Phalcon_Queue_Beanstalk_Job, __wakeup);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_job___construct, 0, 0, 3)
ZEND_ARG_OBJ_INFO(0, queue, Phalcon\\Queue\\Beanstalk, 0)
ZEND_ARG_INFO(0, id)
ZEND_ARG_INFO(0, body)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_job_release, 0, 0, 0)
ZEND_ARG_INFO(0, priority)
ZEND_ARG_INFO(0, delay)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_queue_beanstalk_job_bury, 0, 0, 0)
ZEND_ARG_INFO(0, priority)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_queue_beanstalk_job_method_entry) {
PHP_ME(Phalcon_Queue_Beanstalk_Job, getId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk_Job, getBody, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk_Job, __construct, arginfo_phalcon_queue_beanstalk_job___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Queue_Beanstalk_Job, delete, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk_Job, release, arginfo_phalcon_queue_beanstalk_job_release, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk_Job, bury, arginfo_phalcon_queue_beanstalk_job_bury, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk_Job, touch, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk_Job, kick, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk_Job, stats, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Queue_Beanstalk_Job, __wakeup, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_registry_ce;
ZEPHIR_INIT_CLASS(Phalcon_Registry);
static PHP_METHOD(Phalcon_Registry, __construct);
static PHP_METHOD(Phalcon_Registry, offsetExists);
static PHP_METHOD(Phalcon_Registry, offsetGet);
static PHP_METHOD(Phalcon_Registry, offsetSet);
static PHP_METHOD(Phalcon_Registry, offsetUnset);
static PHP_METHOD(Phalcon_Registry, count);
static PHP_METHOD(Phalcon_Registry, next);
static PHP_METHOD(Phalcon_Registry, key);
static PHP_METHOD(Phalcon_Registry, rewind);
static PHP_METHOD(Phalcon_Registry, valid);
static PHP_METHOD(Phalcon_Registry, current);
static PHP_METHOD(Phalcon_Registry, __set);
static PHP_METHOD(Phalcon_Registry, __get);
static PHP_METHOD(Phalcon_Registry, __isset);
static PHP_METHOD(Phalcon_Registry, __unset);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_registry_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_registry_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_registry_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, offset)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_registry_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, offset)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_registry___set, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_registry___get, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_registry___isset, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_registry___unset, 0, 0, 1)
ZEND_ARG_INFO(0, key)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_registry_method_entry) {
PHP_ME(Phalcon_Registry, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Registry, offsetExists, arginfo_phalcon_registry_offsetexists, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, offsetGet, arginfo_phalcon_registry_offsetget, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, offsetSet, arginfo_phalcon_registry_offsetset, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, offsetUnset, arginfo_phalcon_registry_offsetunset, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, count, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, next, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, key, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, rewind, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, valid, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Registry, current, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Registry, __set, arginfo_phalcon_registry___set, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, __get, arginfo_phalcon_registry___get, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, __isset, arginfo_phalcon_registry___isset, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Registry, __unset, arginfo_phalcon_registry___unset, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_FE_END
};
zend_class_entry *phalcon_security_ce;
ZEPHIR_INIT_CLASS(Phalcon_Security);
static PHP_METHOD(Phalcon_Security, setWorkFactor);
static PHP_METHOD(Phalcon_Security, getWorkFactor);
static PHP_METHOD(Phalcon_Security, __construct);
static PHP_METHOD(Phalcon_Security, setDI);
static PHP_METHOD(Phalcon_Security, getDI);
static PHP_METHOD(Phalcon_Security, setRandomBytes);
static PHP_METHOD(Phalcon_Security, getRandomBytes);
static PHP_METHOD(Phalcon_Security, getRandom);
static PHP_METHOD(Phalcon_Security, getSaltBytes);
static PHP_METHOD(Phalcon_Security, hash);
static PHP_METHOD(Phalcon_Security, checkHash);
static PHP_METHOD(Phalcon_Security, isLegacyHash);
static PHP_METHOD(Phalcon_Security, getTokenKey);
static PHP_METHOD(Phalcon_Security, getToken);
static PHP_METHOD(Phalcon_Security, checkToken);
static PHP_METHOD(Phalcon_Security, getSessionToken);
static PHP_METHOD(Phalcon_Security, destroyToken);
static PHP_METHOD(Phalcon_Security, computeHmac);
static PHP_METHOD(Phalcon_Security, setDefaultHash);
static PHP_METHOD(Phalcon_Security, getDefaultHash);
static PHP_METHOD(Phalcon_Security, hasLibreSsl);
static PHP_METHOD(Phalcon_Security, getSslVersionNumber);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_setworkfactor, 0, 0, 1)
ZEND_ARG_INFO(0, workFactor)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_setrandombytes, 0, 0, 1)
ZEND_ARG_INFO(0, randomBytes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_getsaltbytes, 0, 0, 0)
ZEND_ARG_INFO(0, numberBytes)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_hash, 0, 0, 1)
ZEND_ARG_INFO(0, password)
ZEND_ARG_INFO(0, workFactor)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_checkhash, 0, 0, 2)
ZEND_ARG_INFO(0, password)
ZEND_ARG_INFO(0, passwordHash)
ZEND_ARG_INFO(0, maxPassLength)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_islegacyhash, 0, 0, 1)
ZEND_ARG_INFO(0, passwordHash)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_checktoken, 0, 0, 0)
ZEND_ARG_INFO(0, tokenKey)
ZEND_ARG_INFO(0, tokenValue)
ZEND_ARG_INFO(0, destroyIfValid)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_computehmac, 0, 0, 3)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, algo)
ZEND_ARG_INFO(0, raw)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_setdefaulthash, 0, 0, 1)
ZEND_ARG_INFO(0, defaultHash)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_security_method_entry) {
PHP_ME(Phalcon_Security, setWorkFactor, arginfo_phalcon_security_setworkfactor, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getWorkFactor, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Security, setDI, arginfo_phalcon_security_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, setRandomBytes, arginfo_phalcon_security_setrandombytes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getRandomBytes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getRandom, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getSaltBytes, arginfo_phalcon_security_getsaltbytes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, hash, arginfo_phalcon_security_hash, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, checkHash, arginfo_phalcon_security_checkhash, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, isLegacyHash, arginfo_phalcon_security_islegacyhash, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getTokenKey, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getToken, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, checkToken, arginfo_phalcon_security_checktoken, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getSessionToken, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, destroyToken, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, computeHmac, arginfo_phalcon_security_computehmac, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, setDefaultHash, arginfo_phalcon_security_setdefaulthash, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getDefaultHash, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, hasLibreSsl, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security, getSslVersionNumber, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_security_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Security_Exception);
zend_class_entry *phalcon_security_random_ce;
ZEPHIR_INIT_CLASS(Phalcon_Security_Random);
static PHP_METHOD(Phalcon_Security_Random, bytes);
static PHP_METHOD(Phalcon_Security_Random, hex);
static PHP_METHOD(Phalcon_Security_Random, base58);
static PHP_METHOD(Phalcon_Security_Random, base64);
static PHP_METHOD(Phalcon_Security_Random, base64Safe);
static PHP_METHOD(Phalcon_Security_Random, uuid);
static PHP_METHOD(Phalcon_Security_Random, number);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_random_bytes, 0, 0, 0)
ZEND_ARG_INFO(0, len)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_random_hex, 0, 0, 0)
ZEND_ARG_INFO(0, len)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_random_base58, 0, 0, 0)
ZEND_ARG_INFO(0, n)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_random_base64, 0, 0, 0)
ZEND_ARG_INFO(0, len)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_random_base64safe, 0, 0, 0)
ZEND_ARG_INFO(0, len)
ZEND_ARG_INFO(0, padding)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_security_random_number, 0, 0, 1)
ZEND_ARG_INFO(0, len)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_security_random_method_entry) {
PHP_ME(Phalcon_Security_Random, bytes, arginfo_phalcon_security_random_bytes, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security_Random, hex, arginfo_phalcon_security_random_hex, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security_Random, base58, arginfo_phalcon_security_random_base58, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security_Random, base64, arginfo_phalcon_security_random_base64, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security_Random, base64Safe, arginfo_phalcon_security_random_base64safe, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security_Random, uuid, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Security_Random, number, arginfo_phalcon_security_random_number, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_session_adapter_files_ce;
ZEPHIR_INIT_CLASS(Phalcon_Session_Adapter_Files);
zend_class_entry *phalcon_session_adapter_libmemcached_ce;
ZEPHIR_INIT_CLASS(Phalcon_Session_Adapter_Libmemcached);
static PHP_METHOD(Phalcon_Session_Adapter_Libmemcached, getLibmemcached);
static PHP_METHOD(Phalcon_Session_Adapter_Libmemcached, getLifetime);
static PHP_METHOD(Phalcon_Session_Adapter_Libmemcached, __construct);
static PHP_METHOD(Phalcon_Session_Adapter_Libmemcached, open);
static PHP_METHOD(Phalcon_Session_Adapter_Libmemcached, close);
static PHP_METHOD(Phalcon_Session_Adapter_Libmemcached, read);
static PHP_METHOD(Phalcon_Session_Adapter_Libmemcached, write);
static PHP_METHOD(Phalcon_Session_Adapter_Libmemcached, destroy);
static PHP_METHOD(Phalcon_Session_Adapter_Libmemcached, gc);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_libmemcached___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_libmemcached_read, 0, 0, 1)
ZEND_ARG_INFO(0, sessionId)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_libmemcached_write, 0, 0, 2)
ZEND_ARG_INFO(0, sessionId)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_libmemcached_destroy, 0, 0, 0)
ZEND_ARG_INFO(0, sessionId)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_session_adapter_libmemcached_method_entry) {
PHP_ME(Phalcon_Session_Adapter_Libmemcached, getLibmemcached, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Libmemcached, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Libmemcached, __construct, arginfo_phalcon_session_adapter_libmemcached___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Session_Adapter_Libmemcached, open, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Libmemcached, close, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Libmemcached, read, arginfo_phalcon_session_adapter_libmemcached_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Libmemcached, write, arginfo_phalcon_session_adapter_libmemcached_write, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Libmemcached, destroy, arginfo_phalcon_session_adapter_libmemcached_destroy, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Libmemcached, gc, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_session_adapter_memcache_ce;
ZEPHIR_INIT_CLASS(Phalcon_Session_Adapter_Memcache);
static PHP_METHOD(Phalcon_Session_Adapter_Memcache, getMemcache);
static PHP_METHOD(Phalcon_Session_Adapter_Memcache, getLifetime);
static PHP_METHOD(Phalcon_Session_Adapter_Memcache, __construct);
static PHP_METHOD(Phalcon_Session_Adapter_Memcache, open);
static PHP_METHOD(Phalcon_Session_Adapter_Memcache, close);
static PHP_METHOD(Phalcon_Session_Adapter_Memcache, read);
static PHP_METHOD(Phalcon_Session_Adapter_Memcache, write);
static PHP_METHOD(Phalcon_Session_Adapter_Memcache, destroy);
static PHP_METHOD(Phalcon_Session_Adapter_Memcache, gc);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_memcache___construct, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, options, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_memcache_read, 0, 0, 1)
ZEND_ARG_INFO(0, sessionId)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_memcache_write, 0, 0, 2)
ZEND_ARG_INFO(0, sessionId)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_memcache_destroy, 0, 0, 0)
ZEND_ARG_INFO(0, sessionId)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_session_adapter_memcache_method_entry) {
PHP_ME(Phalcon_Session_Adapter_Memcache, getMemcache, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Memcache, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Memcache, __construct, arginfo_phalcon_session_adapter_memcache___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Session_Adapter_Memcache, open, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Memcache, close, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Memcache, read, arginfo_phalcon_session_adapter_memcache_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Memcache, write, arginfo_phalcon_session_adapter_memcache_write, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Memcache, destroy, arginfo_phalcon_session_adapter_memcache_destroy, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Memcache, gc, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_session_adapter_redis_ce;
ZEPHIR_INIT_CLASS(Phalcon_Session_Adapter_Redis);
static PHP_METHOD(Phalcon_Session_Adapter_Redis, getRedis);
static PHP_METHOD(Phalcon_Session_Adapter_Redis, getLifetime);
static PHP_METHOD(Phalcon_Session_Adapter_Redis, __construct);
static PHP_METHOD(Phalcon_Session_Adapter_Redis, open);
static PHP_METHOD(Phalcon_Session_Adapter_Redis, close);
static PHP_METHOD(Phalcon_Session_Adapter_Redis, read);
static PHP_METHOD(Phalcon_Session_Adapter_Redis, write);
static PHP_METHOD(Phalcon_Session_Adapter_Redis, destroy);
static PHP_METHOD(Phalcon_Session_Adapter_Redis, gc);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_redis___construct, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, options, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_redis_read, 0, 0, 1)
ZEND_ARG_INFO(0, sessionId)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_redis_write, 0, 0, 2)
ZEND_ARG_INFO(0, sessionId)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_adapter_redis_destroy, 0, 0, 0)
ZEND_ARG_INFO(0, sessionId)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_session_adapter_redis_method_entry) {
PHP_ME(Phalcon_Session_Adapter_Redis, getRedis, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Redis, getLifetime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Redis, __construct, arginfo_phalcon_session_adapter_redis___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Session_Adapter_Redis, open, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Redis, close, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Redis, read, arginfo_phalcon_session_adapter_redis_read, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Redis, write, arginfo_phalcon_session_adapter_redis_write, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Redis, destroy, arginfo_phalcon_session_adapter_redis_destroy, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Adapter_Redis, gc, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_session_bag_ce;
ZEPHIR_INIT_CLASS(Phalcon_Session_Bag);
static PHP_METHOD(Phalcon_Session_Bag, __construct);
static PHP_METHOD(Phalcon_Session_Bag, setDI);
static PHP_METHOD(Phalcon_Session_Bag, getDI);
static PHP_METHOD(Phalcon_Session_Bag, initialize);
static PHP_METHOD(Phalcon_Session_Bag, destroy);
static PHP_METHOD(Phalcon_Session_Bag, set);
static PHP_METHOD(Phalcon_Session_Bag, __set);
static PHP_METHOD(Phalcon_Session_Bag, get);
static PHP_METHOD(Phalcon_Session_Bag, __get);
static PHP_METHOD(Phalcon_Session_Bag, has);
static PHP_METHOD(Phalcon_Session_Bag, __isset);
static PHP_METHOD(Phalcon_Session_Bag, remove);
static PHP_METHOD(Phalcon_Session_Bag, __unset);
static PHP_METHOD(Phalcon_Session_Bag, count);
static PHP_METHOD(Phalcon_Session_Bag, getIterator);
static PHP_METHOD(Phalcon_Session_Bag, offsetSet);
static PHP_METHOD(Phalcon_Session_Bag, offsetExists);
static PHP_METHOD(Phalcon_Session_Bag, offsetUnset);
static PHP_METHOD(Phalcon_Session_Bag, offsetGet);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag___construct, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag_set, 0, 0, 2)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag___set, 0, 0, 2)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag_get, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, defaultValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag___get, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag_has, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag___isset, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag_remove, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag___unset, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_session_bag_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_session_bag_method_entry) {
PHP_ME(Phalcon_Session_Bag, __construct, arginfo_phalcon_session_bag___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Session_Bag, setDI, arginfo_phalcon_session_bag_setdi, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, getDI, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, initialize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, destroy, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, set, arginfo_phalcon_session_bag_set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, __set, arginfo_phalcon_session_bag___set, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, get, arginfo_phalcon_session_bag_get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, __get, arginfo_phalcon_session_bag___get, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, has, arginfo_phalcon_session_bag_has, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, __isset, arginfo_phalcon_session_bag___isset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, remove, arginfo_phalcon_session_bag_remove, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, __unset, arginfo_phalcon_session_bag___unset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Session_Bag, count, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Session_Bag, getIterator, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Session_Bag, offsetSet, arginfo_phalcon_session_bag_offsetset, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Session_Bag, offsetExists, arginfo_phalcon_session_bag_offsetexists, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Session_Bag, offsetUnset, arginfo_phalcon_session_bag_offsetunset, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Session_Bag, offsetGet, arginfo_phalcon_session_bag_offsetget, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_FE_END
};
zend_class_entry *phalcon_session_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Session_Exception);
zend_class_entry *phalcon_tag_ce;
ZEPHIR_INIT_CLASS(Phalcon_Tag);
static PHP_METHOD(Phalcon_Tag, getEscaper);
static PHP_METHOD(Phalcon_Tag, renderAttributes);
static PHP_METHOD(Phalcon_Tag, setDI);
static PHP_METHOD(Phalcon_Tag, getDI);
static PHP_METHOD(Phalcon_Tag, getUrlService);
static PHP_METHOD(Phalcon_Tag, getEscaperService);
static PHP_METHOD(Phalcon_Tag, setAutoescape);
static PHP_METHOD(Phalcon_Tag, setDefault);
static PHP_METHOD(Phalcon_Tag, setDefaults);
static PHP_METHOD(Phalcon_Tag, displayTo);
static PHP_METHOD(Phalcon_Tag, hasValue);
static PHP_METHOD(Phalcon_Tag, getValue);
static PHP_METHOD(Phalcon_Tag, resetInput);
static PHP_METHOD(Phalcon_Tag, linkTo);
static PHP_METHOD(Phalcon_Tag, _inputField);
static PHP_METHOD(Phalcon_Tag, _inputFieldChecked);
static PHP_METHOD(Phalcon_Tag, colorField);
static PHP_METHOD(Phalcon_Tag, textField);
static PHP_METHOD(Phalcon_Tag, numericField);
static PHP_METHOD(Phalcon_Tag, rangeField);
static PHP_METHOD(Phalcon_Tag, emailField);
static PHP_METHOD(Phalcon_Tag, dateField);
static PHP_METHOD(Phalcon_Tag, dateTimeField);
static PHP_METHOD(Phalcon_Tag, dateTimeLocalField);
static PHP_METHOD(Phalcon_Tag, monthField);
static PHP_METHOD(Phalcon_Tag, timeField);
static PHP_METHOD(Phalcon_Tag, weekField);
static PHP_METHOD(Phalcon_Tag, passwordField);
static PHP_METHOD(Phalcon_Tag, hiddenField);
static PHP_METHOD(Phalcon_Tag, fileField);
static PHP_METHOD(Phalcon_Tag, searchField);
static PHP_METHOD(Phalcon_Tag, telField);
static PHP_METHOD(Phalcon_Tag, urlField);
static PHP_METHOD(Phalcon_Tag, checkField);
static PHP_METHOD(Phalcon_Tag, radioField);
static PHP_METHOD(Phalcon_Tag, imageInput);
static PHP_METHOD(Phalcon_Tag, submitButton);
static PHP_METHOD(Phalcon_Tag, selectStatic);
static PHP_METHOD(Phalcon_Tag, select);
static PHP_METHOD(Phalcon_Tag, textArea);
static PHP_METHOD(Phalcon_Tag, form);
static PHP_METHOD(Phalcon_Tag, endForm);
static PHP_METHOD(Phalcon_Tag, setTitle);
static PHP_METHOD(Phalcon_Tag, setTitleSeparator);
static PHP_METHOD(Phalcon_Tag, appendTitle);
static PHP_METHOD(Phalcon_Tag, prependTitle);
static PHP_METHOD(Phalcon_Tag, getTitle);
static PHP_METHOD(Phalcon_Tag, getTitleSeparator);
static PHP_METHOD(Phalcon_Tag, stylesheetLink);
static PHP_METHOD(Phalcon_Tag, javascriptInclude);
static PHP_METHOD(Phalcon_Tag, image);
static PHP_METHOD(Phalcon_Tag, friendlyTitle);
static PHP_METHOD(Phalcon_Tag, setDocType);
static PHP_METHOD(Phalcon_Tag, getDocType);
static PHP_METHOD(Phalcon_Tag, tagHtml);
static PHP_METHOD(Phalcon_Tag, tagHtmlClose);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_getescaper, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, params, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_renderattributes, 0, 0, 2)
ZEND_ARG_INFO(0, code)
ZEND_ARG_ARRAY_INFO(0, attributes, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_setdi, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, dependencyInjector, Phalcon\\DiInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_setautoescape, 0, 0, 1)
ZEND_ARG_INFO(0, autoescape)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_setdefault, 0, 0, 2)
ZEND_ARG_INFO(0, id)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_setdefaults, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, values, 0)
ZEND_ARG_INFO(0, merge)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_displayto, 0, 0, 2)
ZEND_ARG_INFO(0, id)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_hasvalue, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_getvalue, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, params)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_linkto, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, local)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag__inputfield, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_INFO(0, asValue)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag__inputfieldchecked, 0, 0, 2)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_colorfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_textfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_numericfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_rangefield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_emailfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_datefield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_datetimefield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_datetimelocalfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_monthfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_timefield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_weekfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_passwordfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_hiddenfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_filefield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_searchfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_telfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_urlfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_checkfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_radiofield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_imageinput, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_submitbutton, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_selectstatic, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_select, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_textarea, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_form, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_settitle, 0, 0, 1)
ZEND_ARG_INFO(0, title)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_settitleseparator, 0, 0, 1)
ZEND_ARG_INFO(0, titleSeparator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_appendtitle, 0, 0, 1)
ZEND_ARG_INFO(0, title)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_prependtitle, 0, 0, 1)
ZEND_ARG_INFO(0, title)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_gettitle, 0, 0, 0)
ZEND_ARG_INFO(0, tags)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_stylesheetlink, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_INFO(0, local)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_javascriptinclude, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_INFO(0, local)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_image, 0, 0, 0)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_INFO(0, local)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_friendlytitle, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, separator)
ZEND_ARG_INFO(0, lowercase)
ZEND_ARG_INFO(0, replace)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_setdoctype, 0, 0, 1)
ZEND_ARG_INFO(0, doctype)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_taghtml, 0, 0, 1)
ZEND_ARG_INFO(0, tagName)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_INFO(0, selfClose)
ZEND_ARG_INFO(0, onlyStart)
ZEND_ARG_INFO(0, useEol)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_taghtmlclose, 0, 0, 1)
ZEND_ARG_INFO(0, tagName)
ZEND_ARG_INFO(0, useEol)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_tag_method_entry) {
PHP_ME(Phalcon_Tag, getEscaper, arginfo_phalcon_tag_getescaper, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, renderAttributes, arginfo_phalcon_tag_renderattributes, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, setDI, arginfo_phalcon_tag_setdi, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, getDI, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, getUrlService, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, getEscaperService, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, setAutoescape, arginfo_phalcon_tag_setautoescape, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, setDefault, arginfo_phalcon_tag_setdefault, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, setDefaults, arginfo_phalcon_tag_setdefaults, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, displayTo, arginfo_phalcon_tag_displayto, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, hasValue, arginfo_phalcon_tag_hasvalue, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, getValue, arginfo_phalcon_tag_getvalue, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, resetInput, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, linkTo, arginfo_phalcon_tag_linkto, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, _inputField, arginfo_phalcon_tag__inputfield, ZEND_ACC_STATIC|ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Tag, _inputFieldChecked, arginfo_phalcon_tag__inputfieldchecked, ZEND_ACC_STATIC|ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_ME(Phalcon_Tag, colorField, arginfo_phalcon_tag_colorfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, textField, arginfo_phalcon_tag_textfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, numericField, arginfo_phalcon_tag_numericfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, rangeField, arginfo_phalcon_tag_rangefield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, emailField, arginfo_phalcon_tag_emailfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, dateField, arginfo_phalcon_tag_datefield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, dateTimeField, arginfo_phalcon_tag_datetimefield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, dateTimeLocalField, arginfo_phalcon_tag_datetimelocalfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, monthField, arginfo_phalcon_tag_monthfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, timeField, arginfo_phalcon_tag_timefield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, weekField, arginfo_phalcon_tag_weekfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, passwordField, arginfo_phalcon_tag_passwordfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, hiddenField, arginfo_phalcon_tag_hiddenfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, fileField, arginfo_phalcon_tag_filefield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, searchField, arginfo_phalcon_tag_searchfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, telField, arginfo_phalcon_tag_telfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, urlField, arginfo_phalcon_tag_urlfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, checkField, arginfo_phalcon_tag_checkfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, radioField, arginfo_phalcon_tag_radiofield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, imageInput, arginfo_phalcon_tag_imageinput, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, submitButton, arginfo_phalcon_tag_submitbutton, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, selectStatic, arginfo_phalcon_tag_selectstatic, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, select, arginfo_phalcon_tag_select, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, textArea, arginfo_phalcon_tag_textarea, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, form, arginfo_phalcon_tag_form, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, endForm, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, setTitle, arginfo_phalcon_tag_settitle, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, setTitleSeparator, arginfo_phalcon_tag_settitleseparator, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, appendTitle, arginfo_phalcon_tag_appendtitle, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, prependTitle, arginfo_phalcon_tag_prependtitle, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, getTitle, arginfo_phalcon_tag_gettitle, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, getTitleSeparator, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, stylesheetLink, arginfo_phalcon_tag_stylesheetlink, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, javascriptInclude, arginfo_phalcon_tag_javascriptinclude, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, image, arginfo_phalcon_tag_image, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, friendlyTitle, arginfo_phalcon_tag_friendlytitle, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, setDocType, arginfo_phalcon_tag_setdoctype, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, getDocType, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, tagHtml, arginfo_phalcon_tag_taghtml, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag, tagHtmlClose, arginfo_phalcon_tag_taghtmlclose, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_tag_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Tag_Exception);
zend_class_entry *phalcon_tag_select_ce;
ZEPHIR_INIT_CLASS(Phalcon_Tag_Select);
static PHP_METHOD(Phalcon_Tag_Select, selectField);
static PHP_METHOD(Phalcon_Tag_Select, _optionsFromResultset);
static PHP_METHOD(Phalcon_Tag_Select, _optionsFromArray);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_select_selectfield, 0, 0, 1)
ZEND_ARG_INFO(0, parameters)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_select__optionsfromresultset, 0, 0, 4)
ZEND_ARG_INFO(0, resultset)
ZEND_ARG_INFO(0, using)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, closeOption)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_tag_select__optionsfromarray, 0, 0, 3)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, closeOption)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_tag_select_method_entry) {
PHP_ME(Phalcon_Tag_Select, selectField, arginfo_phalcon_tag_select_selectfield, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag_Select, _optionsFromResultset, arginfo_phalcon_tag_select__optionsfromresultset, ZEND_ACC_PRIVATE|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Tag_Select, _optionsFromArray, arginfo_phalcon_tag_select__optionsfromarray, ZEND_ACC_PRIVATE|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_text_ce;
ZEPHIR_INIT_CLASS(Phalcon_Text);
static PHP_METHOD(Phalcon_Text, camelize);
static PHP_METHOD(Phalcon_Text, uncamelize);
static PHP_METHOD(Phalcon_Text, increment);
static PHP_METHOD(Phalcon_Text, random);
static PHP_METHOD(Phalcon_Text, startsWith);
static PHP_METHOD(Phalcon_Text, endsWith);
static PHP_METHOD(Phalcon_Text, lower);
static PHP_METHOD(Phalcon_Text, upper);
static PHP_METHOD(Phalcon_Text, reduceSlashes);
static PHP_METHOD(Phalcon_Text, concat);
static PHP_METHOD(Phalcon_Text, dynamic);
static PHP_METHOD(Phalcon_Text, underscore);
static PHP_METHOD(Phalcon_Text, humanize);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_camelize, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, delimiter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_uncamelize, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, delimiter)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_increment, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, separator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_random, 0, 0, 0)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, length)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_startswith, 0, 0, 2)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, start)
ZEND_ARG_INFO(0, ignoreCase)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_endswith, 0, 0, 2)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, end)
ZEND_ARG_INFO(0, ignoreCase)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_lower, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, encoding)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_upper, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, encoding)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_reduceslashes, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_dynamic, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_ARG_INFO(0, leftDelimiter)
ZEND_ARG_INFO(0, rightDelimiter)
ZEND_ARG_INFO(0, separator)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_underscore, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_text_humanize, 0, 0, 1)
ZEND_ARG_INFO(0, text)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_text_method_entry) {
PHP_ME(Phalcon_Text, camelize, arginfo_phalcon_text_camelize, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, uncamelize, arginfo_phalcon_text_uncamelize, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, increment, arginfo_phalcon_text_increment, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, random, arginfo_phalcon_text_random, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, startsWith, arginfo_phalcon_text_startswith, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, endsWith, arginfo_phalcon_text_endswith, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, lower, arginfo_phalcon_text_lower, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, upper, arginfo_phalcon_text_upper, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, reduceSlashes, arginfo_phalcon_text_reduceslashes, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, concat, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, dynamic, arginfo_phalcon_text_dynamic, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, underscore, arginfo_phalcon_text_underscore, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Text, humanize, arginfo_phalcon_text_humanize, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_translate_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate);
zend_class_entry *phalcon_translate_adapter_csv_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate_Adapter_Csv);
static PHP_METHOD(Phalcon_Translate_Adapter_Csv, __construct);
static PHP_METHOD(Phalcon_Translate_Adapter_Csv, _load);
static PHP_METHOD(Phalcon_Translate_Adapter_Csv, query);
static PHP_METHOD(Phalcon_Translate_Adapter_Csv, exists);
zend_object *zephir_init_properties_Phalcon_Translate_Adapter_Csv(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_csv___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_csv__load, 0, 0, 4)
ZEND_ARG_INFO(0, file)
ZEND_ARG_INFO(0, length)
ZEND_ARG_INFO(0, delimiter)
ZEND_ARG_INFO(0, enclosure)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_csv_query, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_csv_exists, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_translate_adapter_csv_method_entry) {
PHP_ME(Phalcon_Translate_Adapter_Csv, __construct, arginfo_phalcon_translate_adapter_csv___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Translate_Adapter_Csv, _load, arginfo_phalcon_translate_adapter_csv__load, ZEND_ACC_PRIVATE)
PHP_ME(Phalcon_Translate_Adapter_Csv, query, arginfo_phalcon_translate_adapter_csv_query, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Csv, exists, arginfo_phalcon_translate_adapter_csv_exists, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_translate_adapter_gettext_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate_Adapter_Gettext);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, getDirectory);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, getDefaultDomain);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, getLocale);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, getCategory);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, __construct);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, query);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, exists);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, nquery);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, setDomain);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, resetDomain);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, setDefaultDomain);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, setDirectory);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, setLocale);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, prepareOptions);
static PHP_METHOD(Phalcon_Translate_Adapter_Gettext, getOptionsDefault);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_gettext___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_gettext_query, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_gettext_exists, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_gettext_nquery, 0, 0, 3)
ZEND_ARG_INFO(0, msgid1)
ZEND_ARG_INFO(0, msgid2)
ZEND_ARG_INFO(0, count)
ZEND_ARG_INFO(0, placeholders)
ZEND_ARG_INFO(0, domain)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_gettext_setdomain, 0, 0, 1)
ZEND_ARG_INFO(0, domain)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_gettext_setdefaultdomain, 0, 0, 1)
ZEND_ARG_INFO(0, domain)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_gettext_setdirectory, 0, 0, 1)
ZEND_ARG_INFO(0, directory)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_gettext_setlocale, 0, 0, 2)
ZEND_ARG_INFO(0, category)
ZEND_ARG_INFO(0, locale)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_gettext_prepareoptions, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_translate_adapter_gettext_method_entry) {
PHP_ME(Phalcon_Translate_Adapter_Gettext, getDirectory, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, getDefaultDomain, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, getLocale, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, getCategory, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, __construct, arginfo_phalcon_translate_adapter_gettext___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Translate_Adapter_Gettext, query, arginfo_phalcon_translate_adapter_gettext_query, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, exists, arginfo_phalcon_translate_adapter_gettext_exists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, nquery, arginfo_phalcon_translate_adapter_gettext_nquery, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, setDomain, arginfo_phalcon_translate_adapter_gettext_setdomain, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, resetDomain, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, setDefaultDomain, arginfo_phalcon_translate_adapter_gettext_setdefaultdomain, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, setDirectory, arginfo_phalcon_translate_adapter_gettext_setdirectory, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, setLocale, arginfo_phalcon_translate_adapter_gettext_setlocale, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_Gettext, prepareOptions, arginfo_phalcon_translate_adapter_gettext_prepareoptions, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Translate_Adapter_Gettext, getOptionsDefault, NULL, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_translate_adapter_nativearray_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate_Adapter_NativeArray);
static PHP_METHOD(Phalcon_Translate_Adapter_NativeArray, __construct);
static PHP_METHOD(Phalcon_Translate_Adapter_NativeArray, query);
static PHP_METHOD(Phalcon_Translate_Adapter_NativeArray, exists);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_nativearray___construct, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, options, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_nativearray_query, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_adapter_nativearray_exists, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_translate_adapter_nativearray_method_entry) {
PHP_ME(Phalcon_Translate_Adapter_NativeArray, __construct, arginfo_phalcon_translate_adapter_nativearray___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Translate_Adapter_NativeArray, query, arginfo_phalcon_translate_adapter_nativearray_query, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Translate_Adapter_NativeArray, exists, arginfo_phalcon_translate_adapter_nativearray_exists, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_translate_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate_Exception);
zend_class_entry *phalcon_translate_interpolator_associativearray_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate_Interpolator_AssociativeArray);
static PHP_METHOD(Phalcon_Translate_Interpolator_AssociativeArray, replacePlaceholders);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_interpolator_associativearray_replaceplaceholders, 0, 0, 1)
ZEND_ARG_INFO(0, translation)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_translate_interpolator_associativearray_method_entry) {
PHP_ME(Phalcon_Translate_Interpolator_AssociativeArray, replacePlaceholders, arginfo_phalcon_translate_interpolator_associativearray_replaceplaceholders, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_translate_interpolator_indexedarray_ce;
ZEPHIR_INIT_CLASS(Phalcon_Translate_Interpolator_IndexedArray);
static PHP_METHOD(Phalcon_Translate_Interpolator_IndexedArray, replacePlaceholders);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_translate_interpolator_indexedarray_replaceplaceholders, 0, 0, 1)
ZEND_ARG_INFO(0, translation)
ZEND_ARG_INFO(0, placeholders)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_translate_interpolator_indexedarray_method_entry) {
PHP_ME(Phalcon_Translate_Interpolator_IndexedArray, replacePlaceholders, arginfo_phalcon_translate_interpolator_indexedarray_replaceplaceholders, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation);
static PHP_METHOD(Phalcon_Validation, setValidators);
static PHP_METHOD(Phalcon_Validation, __construct);
static PHP_METHOD(Phalcon_Validation, validate);
static PHP_METHOD(Phalcon_Validation, add);
static PHP_METHOD(Phalcon_Validation, rule);
static PHP_METHOD(Phalcon_Validation, rules);
static PHP_METHOD(Phalcon_Validation, setFilters);
static PHP_METHOD(Phalcon_Validation, getFilters);
static PHP_METHOD(Phalcon_Validation, getValidators);
static PHP_METHOD(Phalcon_Validation, setEntity);
static PHP_METHOD(Phalcon_Validation, getEntity);
static PHP_METHOD(Phalcon_Validation, setDefaultMessages);
static PHP_METHOD(Phalcon_Validation, getDefaultMessage);
static PHP_METHOD(Phalcon_Validation, getMessages);
static PHP_METHOD(Phalcon_Validation, setLabels);
static PHP_METHOD(Phalcon_Validation, getLabel);
static PHP_METHOD(Phalcon_Validation, appendMessage);
static PHP_METHOD(Phalcon_Validation, bind);
static PHP_METHOD(Phalcon_Validation, getValue);
static PHP_METHOD(Phalcon_Validation, preChecking);
zend_object *zephir_init_properties_Phalcon_Validation(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_setvalidators, 0, 0, 1)
ZEND_ARG_INFO(0, validators)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation___construct, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, validators, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validate, 0, 0, 0)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, entity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_add, 0, 0, 2)
ZEND_ARG_INFO(0, field)
ZEND_ARG_OBJ_INFO(0, validator, Phalcon\\Validation\\ValidatorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_rule, 0, 0, 2)
ZEND_ARG_INFO(0, field)
ZEND_ARG_OBJ_INFO(0, validator, Phalcon\\Validation\\ValidatorInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_rules, 0, 0, 2)
ZEND_ARG_INFO(0, field)
ZEND_ARG_ARRAY_INFO(0, validators, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_setfilters, 0, 0, 2)
ZEND_ARG_INFO(0, field)
ZEND_ARG_INFO(0, filters)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_getfilters, 0, 0, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_setentity, 0, 0, 1)
ZEND_ARG_INFO(0, entity)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_setdefaultmessages, 0, 0, 0)
ZEND_ARG_ARRAY_INFO(0, messages, 1)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_getdefaultmessage, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_setlabels, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, labels, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_getlabel, 0, 0, 1)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_appendmessage, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, message, Phalcon\\Validation\\MessageInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_bind, 0, 0, 2)
ZEND_ARG_INFO(0, entity)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_getvalue, 0, 0, 1)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_prechecking, 0, 0, 2)
ZEND_ARG_INFO(0, field)
ZEND_ARG_OBJ_INFO(0, validator, Phalcon\\Validation\\ValidatorInterface, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_method_entry) {
PHP_ME(Phalcon_Validation, setValidators, arginfo_phalcon_validation_setvalidators, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, __construct, arginfo_phalcon_validation___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Validation, validate, arginfo_phalcon_validation_validate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, add, arginfo_phalcon_validation_add, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, rule, arginfo_phalcon_validation_rule, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, rules, arginfo_phalcon_validation_rules, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, setFilters, arginfo_phalcon_validation_setfilters, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, getFilters, arginfo_phalcon_validation_getfilters, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, getValidators, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, setEntity, arginfo_phalcon_validation_setentity, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, getEntity, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, setDefaultMessages, arginfo_phalcon_validation_setdefaultmessages, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, getDefaultMessage, arginfo_phalcon_validation_getdefaultmessage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, getMessages, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, setLabels, arginfo_phalcon_validation_setlabels, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, getLabel, arginfo_phalcon_validation_getlabel, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, appendMessage, arginfo_phalcon_validation_appendmessage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, bind, arginfo_phalcon_validation_bind, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, getValue, arginfo_phalcon_validation_getvalue, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation, preChecking, arginfo_phalcon_validation_prechecking, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_validation_exception_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Exception);
zend_class_entry *phalcon_validation_message_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Message);
static PHP_METHOD(Phalcon_Validation_Message, __construct);
static PHP_METHOD(Phalcon_Validation_Message, setType);
static PHP_METHOD(Phalcon_Validation_Message, getType);
static PHP_METHOD(Phalcon_Validation_Message, setMessage);
static PHP_METHOD(Phalcon_Validation_Message, getMessage);
static PHP_METHOD(Phalcon_Validation_Message, setField);
static PHP_METHOD(Phalcon_Validation_Message, getField);
static PHP_METHOD(Phalcon_Validation_Message, setCode);
static PHP_METHOD(Phalcon_Validation_Message, getCode);
static PHP_METHOD(Phalcon_Validation_Message, __toString);
static PHP_METHOD(Phalcon_Validation_Message, __set_state);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message___construct, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, field)
ZEND_ARG_INFO(0, type)
ZEND_ARG_INFO(0, code)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_settype, 0, 0, 1)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_setmessage, 0, 0, 1)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_setfield, 0, 0, 1)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_setcode, 0, 0, 1)
ZEND_ARG_INFO(0, code)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message___set_state, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, message, 0)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_message_method_entry) {
PHP_ME(Phalcon_Validation_Message, __construct, arginfo_phalcon_validation_message___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Validation_Message, setType, arginfo_phalcon_validation_message_settype, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message, getType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message, setMessage, arginfo_phalcon_validation_message_setmessage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message, getMessage, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message, setField, arginfo_phalcon_validation_message_setfield, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message, getField, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message, setCode, arginfo_phalcon_validation_message_setcode, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message, getCode, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message, __toString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message, __set_state, arginfo_phalcon_validation_message___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_message_group_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Message_Group);
static PHP_METHOD(Phalcon_Validation_Message_Group, __construct);
static PHP_METHOD(Phalcon_Validation_Message_Group, offsetGet);
static PHP_METHOD(Phalcon_Validation_Message_Group, offsetSet);
static PHP_METHOD(Phalcon_Validation_Message_Group, offsetExists);
static PHP_METHOD(Phalcon_Validation_Message_Group, offsetUnset);
static PHP_METHOD(Phalcon_Validation_Message_Group, appendMessage);
static PHP_METHOD(Phalcon_Validation_Message_Group, appendMessages);
static PHP_METHOD(Phalcon_Validation_Message_Group, filter);
static PHP_METHOD(Phalcon_Validation_Message_Group, count);
static PHP_METHOD(Phalcon_Validation_Message_Group, rewind);
static PHP_METHOD(Phalcon_Validation_Message_Group, current);
static PHP_METHOD(Phalcon_Validation_Message_Group, key);
static PHP_METHOD(Phalcon_Validation_Message_Group, next);
static PHP_METHOD(Phalcon_Validation_Message_Group, valid);
static PHP_METHOD(Phalcon_Validation_Message_Group, __set_state);
zend_object *zephir_init_properties_Phalcon_Validation_Message_Group(zend_class_entry *class_type TSRMLS_DC);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_group___construct, 0, 0, 0)
ZEND_ARG_INFO(0, messages)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_group_offsetget, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_group_offsetset, 0, 0, 2)
ZEND_ARG_INFO(0, index)
ZEND_ARG_INFO(0, message)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_group_offsetexists, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_group_offsetunset, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_group_appendmessage, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, message, Phalcon\\Validation\\MessageInterface, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_group_appendmessages, 0, 0, 1)
ZEND_ARG_INFO(0, messages)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_group_filter, 0, 0, 1)
ZEND_ARG_INFO(0, fieldName)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_message_group___set_state, 0, 0, 1)
ZEND_ARG_INFO(0, group)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_message_group_method_entry) {
PHP_ME(Phalcon_Validation_Message_Group, __construct, arginfo_phalcon_validation_message_group___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(Phalcon_Validation_Message_Group, offsetGet, arginfo_phalcon_validation_message_group_offsetget, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, offsetSet, arginfo_phalcon_validation_message_group_offsetset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, offsetExists, arginfo_phalcon_validation_message_group_offsetexists, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, offsetUnset, arginfo_phalcon_validation_message_group_offsetunset, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, appendMessage, arginfo_phalcon_validation_message_group_appendmessage, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, appendMessages, arginfo_phalcon_validation_message_group_appendmessages, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, filter, arginfo_phalcon_validation_message_group_filter, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, count, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, rewind, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, current, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, key, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, next, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, valid, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Message_Group, __set_state, arginfo_phalcon_validation_message_group___set_state, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_alnum_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Alnum);
static PHP_METHOD(Phalcon_Validation_Validator_Alnum, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_alnum_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_alnum_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Alnum, validate, arginfo_phalcon_validation_validator_alnum_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_alpha_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Alpha);
static PHP_METHOD(Phalcon_Validation_Validator_Alpha, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_alpha_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_alpha_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Alpha, validate, arginfo_phalcon_validation_validator_alpha_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_between_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Between);
static PHP_METHOD(Phalcon_Validation_Validator_Between, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_between_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_between_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Between, validate, arginfo_phalcon_validation_validator_between_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_confirmation_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Confirmation);
static PHP_METHOD(Phalcon_Validation_Validator_Confirmation, validate);
static PHP_METHOD(Phalcon_Validation_Validator_Confirmation, compare);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_confirmation_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_confirmation_compare, 0, 0, 2)
ZEND_ARG_INFO(0, a)
ZEND_ARG_INFO(0, b)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_confirmation_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Confirmation, validate, arginfo_phalcon_validation_validator_confirmation_validate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Validator_Confirmation, compare, arginfo_phalcon_validation_validator_confirmation_compare, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_creditcard_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_CreditCard);
static PHP_METHOD(Phalcon_Validation_Validator_CreditCard, validate);
static PHP_METHOD(Phalcon_Validation_Validator_CreditCard, verifyByLuhnAlgorithm);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_creditcard_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_creditcard_verifybyluhnalgorithm, 0, 0, 1)
ZEND_ARG_INFO(0, number)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_creditcard_method_entry) {
PHP_ME(Phalcon_Validation_Validator_CreditCard, validate, arginfo_phalcon_validation_validator_creditcard_validate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Validator_CreditCard, verifyByLuhnAlgorithm, arginfo_phalcon_validation_validator_creditcard_verifybyluhnalgorithm, ZEND_ACC_PRIVATE)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_date_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Date);
static PHP_METHOD(Phalcon_Validation_Validator_Date, validate);
static PHP_METHOD(Phalcon_Validation_Validator_Date, checkDate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_date_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_date_checkdate, 0, 0, 2)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, format)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_date_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Date, validate, arginfo_phalcon_validation_validator_date_validate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Validator_Date, checkDate, arginfo_phalcon_validation_validator_date_checkdate, ZEND_ACC_PRIVATE)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_digit_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Digit);
static PHP_METHOD(Phalcon_Validation_Validator_Digit, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_digit_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_digit_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Digit, validate, arginfo_phalcon_validation_validator_digit_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_email_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Email);
static PHP_METHOD(Phalcon_Validation_Validator_Email, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_email_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_email_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Email, validate, arginfo_phalcon_validation_validator_email_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_exclusionin_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_ExclusionIn);
static PHP_METHOD(Phalcon_Validation_Validator_ExclusionIn, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_exclusionin_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_exclusionin_method_entry) {
PHP_ME(Phalcon_Validation_Validator_ExclusionIn, validate, arginfo_phalcon_validation_validator_exclusionin_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_file_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_File);
static PHP_METHOD(Phalcon_Validation_Validator_File, validate);
static PHP_METHOD(Phalcon_Validation_Validator_File, isAllowEmpty);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_file_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_file_isallowempty, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_file_method_entry) {
PHP_ME(Phalcon_Validation_Validator_File, validate, arginfo_phalcon_validation_validator_file_validate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Validator_File, isAllowEmpty, arginfo_phalcon_validation_validator_file_isallowempty, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_identical_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Identical);
static PHP_METHOD(Phalcon_Validation_Validator_Identical, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_identical_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_identical_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Identical, validate, arginfo_phalcon_validation_validator_identical_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_inclusionin_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_InclusionIn);
static PHP_METHOD(Phalcon_Validation_Validator_InclusionIn, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_inclusionin_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_inclusionin_method_entry) {
PHP_ME(Phalcon_Validation_Validator_InclusionIn, validate, arginfo_phalcon_validation_validator_inclusionin_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_numericality_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Numericality);
static PHP_METHOD(Phalcon_Validation_Validator_Numericality, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_numericality_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_numericality_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Numericality, validate, arginfo_phalcon_validation_validator_numericality_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_presenceof_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_PresenceOf);
static PHP_METHOD(Phalcon_Validation_Validator_PresenceOf, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_presenceof_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_presenceof_method_entry) {
PHP_ME(Phalcon_Validation_Validator_PresenceOf, validate, arginfo_phalcon_validation_validator_presenceof_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_regex_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Regex);
static PHP_METHOD(Phalcon_Validation_Validator_Regex, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_regex_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_regex_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Regex, validate, arginfo_phalcon_validation_validator_regex_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_stringlength_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_StringLength);
static PHP_METHOD(Phalcon_Validation_Validator_StringLength, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_stringlength_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_stringlength_method_entry) {
PHP_ME(Phalcon_Validation_Validator_StringLength, validate, arginfo_phalcon_validation_validator_stringlength_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_uniqueness_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Uniqueness);
static PHP_METHOD(Phalcon_Validation_Validator_Uniqueness, validate);
static PHP_METHOD(Phalcon_Validation_Validator_Uniqueness, isUniqueness);
static PHP_METHOD(Phalcon_Validation_Validator_Uniqueness, getColumnNameReal);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_uniqueness_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_uniqueness_isuniqueness, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_uniqueness_getcolumnnamereal, 0, 0, 2)
ZEND_ARG_INFO(0, record)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_uniqueness_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Uniqueness, validate, arginfo_phalcon_validation_validator_uniqueness_validate, ZEND_ACC_PUBLIC)
PHP_ME(Phalcon_Validation_Validator_Uniqueness, isUniqueness, arginfo_phalcon_validation_validator_uniqueness_isuniqueness, ZEND_ACC_PROTECTED)
PHP_ME(Phalcon_Validation_Validator_Uniqueness, getColumnNameReal, arginfo_phalcon_validation_validator_uniqueness_getcolumnnamereal, ZEND_ACC_PROTECTED)
PHP_FE_END
};
zend_class_entry *phalcon_validation_validator_url_ce;
ZEPHIR_INIT_CLASS(Phalcon_Validation_Validator_Url);
static PHP_METHOD(Phalcon_Validation_Validator_Url, validate);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_validation_validator_url_validate, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, validation, Phalcon\\Validation, 0)
ZEND_ARG_INFO(0, field)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_validation_validator_url_method_entry) {
PHP_ME(Phalcon_Validation_Validator_Url, validate, arginfo_phalcon_validation_validator_url_validate, ZEND_ACC_PUBLIC)
PHP_FE_END
};
zend_class_entry *phalcon_version_ce;
ZEPHIR_INIT_CLASS(Phalcon_Version);
static PHP_METHOD(Phalcon_Version, _getVersion);
static PHP_METHOD(Phalcon_Version, _getSpecial);
static PHP_METHOD(Phalcon_Version, get);
static PHP_METHOD(Phalcon_Version, getId);
static PHP_METHOD(Phalcon_Version, getPart);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_version__getspecial, 0, 0, 1)
ZEND_ARG_INFO(0, special)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_version_getpart, 0, 0, 1)
ZEND_ARG_INFO(0, part)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_version_method_entry) {
PHP_ME(Phalcon_Version, _getVersion, NULL, ZEND_ACC_PROTECTED|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Version, _getSpecial, arginfo_phalcon_version__getspecial, ZEND_ACC_PROTECTED|ZEND_ACC_FINAL|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Version, get, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Version, getId, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_ME(Phalcon_Version, getPart, arginfo_phalcon_version_getpart, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
PHP_FE_END
};
zend_class_entry *phalcon_0__closure_ce;
ZEPHIR_INIT_CLASS(phalcon_0__closure);
static PHP_METHOD(phalcon_0__closure, __invoke);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_0__closure___invoke, 0, 0, 1)
ZEND_ARG_INFO(0, element)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_0__closure_method_entry) {
PHP_ME(phalcon_0__closure, __invoke, arginfo_phalcon_0__closure___invoke, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_FE_END
};
zend_class_entry *phalcon_1__closure_ce;
ZEPHIR_INIT_CLASS(phalcon_1__closure);
static PHP_METHOD(phalcon_1__closure, __invoke);
ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_1__closure___invoke, 0, 0, 1)
ZEND_ARG_INFO(0, element)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(phalcon_1__closure_method_entry) {
PHP_ME(phalcon_1__closure, __invoke, arginfo_phalcon_1__closure___invoke, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
PHP_FE_END
};
#endif |
///Implementations where both errors are the same type
impl<A: std::error::Error> Error2<A,A> {
///If the two errors are the same, merge them into one
pub fn merge(self) -> A {
match self {
Error2::A(a) => {a}
Error2::B(a) => {a}
}
}
} |
Psychotherapy as Heuristic Search There is no coherent framework for psychological therapy available. From psychoanalysis to behaviour therapy, humanistic and third wave approaches, there are significant differences in terms of aetiology, methods and expected outcomes. Heuristic search, an important method in artificial intelligence (AI), can serve as a general frame of reference for psychotherapy. This approach is based on a clear definition of the starting and end points of psychological therapy and how to achieve identified outcomes; it allows the utilisation of particularly effective psychological interventions and a ranking of different forms of psychotherapy with regard to efficacy, time and effort. A cornerstone of this framework is the notion of "deep heuristic", that is, particularly effective psychological interventions based on clinical experience. It is likely that the heuristic search framework can be applied to interventions in psychiatry as well as health disciplines in general. |
def read_ci(cipath):
header = ['chr','st','ed','name','id']
return read_pandas(cipath, names=header) |
Radiative Efficiency and Content of Extragalactic Radio Sources: Toward a Universal Scaling Relation Between Jet Power and Radio Power We present an analysis of the energetics and particle content of the lobes of 24 radio galaxies at the cores of cooling clusters. The radio lobes in these systems have created visible cavities in the surrounding hot, X-ray-emitting gas, which allow direct measurement of the mechanical jet power of radio sources over six decades of radio luminosity, independently of the radio properties themselves. Using these measurements, we examine the ratio between radio power and total jet power (the radiative efficiency). We find that jet (cavity) power increases with radio synchrotron power approximately as P_jet ~ (L_radio)^beta, where 0.35<beta<0.70 depending on the bandpass of measurement and state of the source. However, the scatter about these relations caused by variations in radiative efficiency spans more than four orders of magnitude. After accounting for variations in synchrotron break frequency (age), the scatter is reduced by ~ 50%, yielding the most accurate scaling relation available between the lobe bolometric radio power and the jet (cavity) power. We place limits on the magnetic field strengths and particle content of the radio lobes using a variety of X-ray constraints. We find that the lobe magnetic field strengths vary between a few to several tens of microgauss depending on the age and dynamical state of the lobes. If the cavities are maintained in pressure balance with their surroundings and are supported by internal fields and particles in equipartition, the ratio of energy in electrons to heavy particles (k) must vary widely from approximately unity to 4000, consistent with heavy (hadronic) jets. INTRODUCTION A source of heat has been invoked to explain the lack of gas cooling below 2 keV at the centers of galaxy clusters ), which was expected in the classical cooling flow model (Fabian 1994). The same source may prevent the formation of excessively bright cluster central galaxies (;;;Sijacki & Springel 2006). The most plausible candidate is the energy in-jected by relativistic jets originating near supermassive black holes (SMBH) at the centers of the clusters (Tabor & Binney 1993;Binney & Tabor 1995;Tucker & David 1997). When the jets interact with intracluster medium (ICM) two lobes of plasma are inflated, which contain relativistic electrons and magnetic fields seen in radio observations. Such interactions have been discussed extensively in the literature (Scheuer 1974;Blandford & Rees 1974;Begelman & Cioffi 1989;Kaiser & Alexander 1997;). The idea that the central active galactic nuclei (AGN) are the source of energy has been given impetus by Chandra X-ray Observatory images showing the keV gas being displaced by the radio sources harbored at the center of the cluster (;). Some recent analysis of samples of systems with X-ray cavities show that the cavities are long lasting and that they provide enough energy to suppress cooling in clusters (;Dunn & Fabian 2004;;). By considering only the cavity enthalpy, Brzan et al. and Rafferty et al. show that the current outburst in more than half of the systems in their sample of cavity systems are powerful enough to offset cooling, although the integrated energy is sufficient to offset cooling in all systems (Mc-Namara & Nulsen 2007). However, the enthalpy is only a lower limit for the total energy injected with a cavity. Evidence is mounting for the existence of weak but powerful shocks in the hot thermal gas. Notable examples include MS 0735+7421 (), Perseus (), M87 ((Forman et al., 2007, Hydra A (b;) among many others. Where they have been measured, shock energies are comparable to cavity enthalpies. In addition, the energy is still probably underestimated due to further adiabatic losses, undetected cavities, etc., the energy of which we cannot quantify (e.g., ;, see McNamara & Nulsen 2007 for a review). Cavities provide a lower limit to the jet energy and are the best-available gauges of the average jet power in these systems; therefore, they can be used, together with the radio data, to estimate the radiative efficiencies and radio-lobe properties. The total energy in the radio lobes is the sum of magnetic and particle energies: where k is the ratio of the energy in heavy particles to that in the electrons (E e ) and E B is the energy in the magnetic field. The energies in the magnetic field and electrons are calculated as: where is the filling factor (the fraction of the volume filled by relativistic particles and magnetic field), c 12 (, 1, 2 ) is a constant as defined by Pacholczyk and L rad is the total radio luminosity. For the first time, the cavities allow one to estimate E tot of radio lobes to within a factor of a few (given the uncertainties in projection and the omission of shock energy). Additionally, cavities can be used to estimate the pressures (assuming they are in pressure balance with the surrounding ICM) and ages of the lobes (assuming that the cavities rise buoyantly or at the local sound speed). Together, these quantities break the degeneracies in the energy equation and allow meaningful constraints to be placed on the magnetic field strengths and particle content of the lobes. From radio observations we know that relativistic electrons and magnetic field are present in the jets. Under the assumption of charge neutrality, there must be positively charged particles beside relativistic electrons, such as protons (Celotti & Fabian 1993) or positrons (;;Kino & Takahara 2004;a). The positively charged particle content of the jets is observationally inaccessible and the existence of proton-electron jets or positronelectron jets is inferred using indirect arguments. However, the discovery of X-ray cavities has made it possible to quantify the particle content, by calculating the ratio between the total particle energy and the energy in relativistic electrons and positrons Dunn & Fabian 2004;). In this paper, we use VLA 1 radio data at 4 different frequencies for a sample of 24 systems with X-ray cavities to investigate radiative efficiencies. We derive synchrotron break frequencies and ages. Using both X-ray and radio data for the cavities, we place limits on their magnetic field strengths and on their particle content (i.e., the energies in heavy-particles and in synchrotron radiating electrons and positrons). We investigate the effects that differences in the radio source ages or magnetic field strengths and particle content have on the efficiencies. Using both the X-ray and radio data, we investigate the radio source ages by comparing synchrotron ages with buoyancy ages. In general, the synchrotron ages are lower limits on the radio source age (Eilek 1996;;Eilek 1999) due to the inhomogeneities in the magnetic field, which are difficult to estimate (Siah & Wiita 1990;Wiita & Gopal-Krishna 1990). The X-ray derived ages (e.g., buoyancy ages) assume that the bubbles detach early from the driving jet and rise buoyantly in the ICM. By finding discrepancies between the two ages, we can test the assumptions that go into their determination. Lastly, on a related topic, we are now able to determine more precisely whether a cavity is radio filled or ghost. RADIO OBSERVATIONS AND DATA REDUCTION In order to have radio data at 327 MHz, 1.4 GHz, 4.5 GHz and 8.5 GHz we observed 13 objects that did not have VLA archival data at one or more of these frequencies. The observations that we used for each frequency are given in the Appendix. Data were analyzed with the Astronomical Image Processing System (AIPS). The primary flux density calibrators and the phase calibrators are also listed in the Appendix. The data were Fouriertransformed, cleaned, restored, and self-calibrated with AIPS. In order to subtract confusing sources we imaged the entire primary beam. We list in the Appendix the resolution, position angle and the RMS noise of the final radio images for at least three different frequencies (327 MHz,1.4 GHz,4.5 GHz and/or 8.5 GHz). Where available, data at different arrays were added for better u-v coverage. In some cases we show images at different resolutions for the same frequency: A133 at 330 MHz and 1.4 GHz, RBS 797 at 1.4 GHz and 8.5 GHz, and A1835 at 1.4 GHz. For each source we measured the total flux density using TVSTAT in AIPS. In order to measure the flux density for the core of the radio sources, we used JMFIT in AIPS to fit a gaussian fixed to the beam shape. This procedure was performed only for those images in which the lobes are clearly resolved and the core is evident. For these systems, the flux in the lobes (including any jet emission) was calculated by subtracting the core flux density from the total flux density. In Table 1 we list the measured flux densities at 327 MHz, 1.4 GHz, 4.5 GHz, and 8.5 GHz for the total source for all the objects in our sample and for the lobes for the subsample of objects for which the core could be accurately subtracted. We note that for this subsample, the core's contribution to the total flux is small ( 20%). The errors in the flux densities include multiplicative errors plus RMS noise in the radio map (additive errors). In Carilli et al. the multiplicative errors in the flux densities range between 2% at 4.995 GHz and 6% at 327 MHz. For simplicity, we chose an average of 4% for the multiplicative errors at all frequencies. This value is consistent with the multiplicative error that Slee et al. used for the 1.425 GHz flux density (4.5% to 5.0%). Radio Morphologies The radio contour maps for all the systems listed in Table 1 are shown in the Appendix. Where there are 2 images for the same frequency we list the arrays that were used for each image. In some systems, we do not see extended emission at any of the 3 or 4 frequencies that were observed (e.g., Zw 3146). In general, the lack of extended radio emission is seen at higher frequencies (4.5 GHz and 8.5 GHz) where for some of the systems we imaged only the core or the inner lobes (e.g., Hydra A; see Table 1 where we list the core and lobe contributions for all the systems). Since the array configurations were chosen so that the largest angular scale of the resulting image would be greater than the size of the X-ray cavity, the lack of extended radio emission at a given frequency is likely due to the observed frequency being above the break frequency of the lobes (and thus any emission is below the sensitivity of the observations) and not due to a lack of short antenna spacings. On the other hand, the majority of the lower-frequency observations (327 MHz and 1.4 GHz) show extended emission in the lobes. Additionally, the lobes of some systems are barely resolved, especially in the lower-frequency observations (e.g., A478 at 327 MHz). By examining the radio morphology at different fre-quencies, we confirm that two of the systems in our sample have jets or lobes oriented differently at higher frequencies (4.5 GHz and 8.5 GHz) than at lower frequencies (327 MHz and 1.4 GHz). Systems with this morphology are Abell 2597 (;) and RBS 797 (). Additionally, Dunn et al. (2006b) demonstrated that different generations of X-ray cavities in the same cluster are not always observed at the same position angle with the respect of cluster core. This morphology can be explained by either a deflected jet (), by jet precession (b), or by both (). As an example, the 'S' shape jets in Abell 1795 were explained by Rodrguez-Martnez et al., using hydrodynamical calculations, as a point-symmetric precessing jet interacting with a plane-parallel wind. However, because our data were obtained to image extended lobe emission, they are usually of insufficient resolution to resolve the jets in the sample as a whole. A persistent problem with cavity heating in simulations is the distribution of energy, as an unchanging jet orientation will tend to heat the ICM anisotropically, forming low-density channels that carry the jet's energy out of the cooling region (Vernaleo & Reynolds 2006;cf. ). However, if such differently oriented jets are common, the cavity energy might naturally be spread isotropically throughout the atmosphere of a cluster (for a review, see. Spectra and Total Radio Luminosity The synchrotron spectrum emitted by an ensemble of electrons is well characterized by an initial powerlaw electron energy distribution N (E) ∝ E −, with the corresponding synchrotron spectrum I() ∝ −, where = 2 + 1 (Pacholczyk 1970). Synchrotron losses steepen the spectrum at higher frequencies by depleting high energy electrons first. A curvature or break occurs in the spectrum at the critical frequency, C, which is determined by synchrotron age. Kardashev studied the synchrotron spectrum of an ensemble of electrons evolving with time in the presence of a magnetic field (see Pacholczyk 1970) and showed that the steepening of the electron spectrum at the high frequencies is dependent on the pitch angle and energy of the relativistic electrons. There are three main models for characterizing the synchrotron spectrum: the KP (Kardashev-Pacholczyk) model, which assumes a single injection of electrons and a pitch angle for the radiating electrons that is constant with time; the JP (Jaffe-Perola) model, which assumes a single injection of electrons and an isotropic pitch angle distribution; and the CI (continuous injection) model, which assumes a mixed population of electrons of different ages (see Myers & Spangler 1985;;;). The break frequency is determined by fitting these models to the radio spectrum (for details of the code, see ). The free parameters of the models are the injection index, inj, which determines the power law index at frequencies below the critical frequency, and the critical frequency itself, C, above which the spectrum steepens. We found that the CI model did not provide acceptable fits to many of our spectra, so we do not consider it further. We fit the data with both the KP and JP 0.216 lobes 0.72 ± 0.04 0.0117 ± 0.0012 total 0.80 ± 0.03 0.021 ± 0.001 0.0013 ± 0.0001 2.48 ± 0.04 Hydra A 0.055 outer lobes 36 ± 10 inner lobes 116 ± 5 39.1 ± 1.6 14.8 ± 0.6 7.2 ± 0.3 total 152 ± 6 39. Note. -When we have multiple final images of different resolutions (see Table 7), the lower resolution image was used to measure the flux, with the exceptions of A133 and Hydra A. Clarke et al.. a The spectral index, was calculated using the fluxes at the two lowest available frequencies assuming a power-law spectrum (S ∝ − ). b The fluxes are from literature; see Table 2 for references. models at a given injection index and selected the break frequency that corresponded to the best fit of the model to the data. In general, the KP and JP models give similar fits of the lobes' spectra, but in some cases the KP model fits better the higher-frequency points. Therefore, for simplicity, we use the break frequencies derived with the KP model. Table 1 gives the radio fluxes for the lobes and total source and the spectral index for the total source, denoted by (calculated between the two lowest frequencies and used later in Section 4.7). Table 2 lists the break frequencies for the lobes and total source that we derived by fitting the spectra (shown in Figure 1) with a KP model, the derived injection index, and the corresponding chi-squared statistic. For our sample, the injection index varies from 0.5 to 1.3. However, the preferred value for the injection index in the literature is 0.5 or sometimes 0.75 (Komissarov & Gubanov 1994). Our higher values of the injection index for some objects suggest that our data are sensitive to a different region of the asymptotic spectrum than those of Slee et al. and Komissarov & Gubanov. As a result, these sources may have a much lower break frequency than we measure, consistent with previous findings (Komissarov & Gubanov 1994;). For a number of systems, we were not able to obtain lobe fluxes at three frequencies (see Table 1). In these cases, to derive the break frequency, we use the approximation of Myers & Spangler using the fluxes at the frequencies given in the last column of Table 2. We calculated the bolometric radio luminosity for the total source and the lobes by integrating under the bestfit KP model (given by the inj and C listed in Table 2) between the rest-frame frequencies of 10 MHz and 10000 MHz. Errors in the resulting luminosities include errors on C and the model normalization. In cases where C is an upper or lower limit, we calculated the errors on the luminosity assuming that C could be as low as 100 MHz or as high as 10000 MHz. In all cases, we symmetrized the errors by adding the upper and lower errors in quadrature. We note that the lower cutoff frequency of 10 MHz that we adopt, while commonly used in the literature, is arbitrary and results in an arbitrary energy cutoff for the electrons. Reducing the low-energy cutoff will tend to increase the electron pressure which in turn will reduce k. This effect would be greatest for the sources with steepest spectra at low frequencies (largest inj ). However, while lowering the cutoff frequency for these steep spectrum sources might reduce the large k values, our data do not extend to such low frequencies, and we cannot therefore choose a cutoff frequency based on our observations. For simplicity and consistency with much of the literature, we adopt a cutoff of 10 MHz and note that further investigation of the low-energy cutoff is warranted. Each spectrum is shifted by an arbitrary factor so that all spectra can be shown in one plot. In order to have as many data points as possible, in some cases we complemented our data with literature values (see Table 2). The data were fit with the KP model in order to derive the break frequency. We show the fit with the best 2 value. Both the input parameters for the KP model ( inj ) and the results of the model ( C, 2 ) are listed in Table 2. Cavity Classification In the literature, X-ray cavities have been divided into two categories depending on the presence of bright 1400 MHz radio emission in the cavities: radio-filled and radioghost cavities. Radio-filled cavities, such as the inner cavities in Hydra A (), have 1400 MHz or higher frequency emission. Ghost cavities, such as those in Perseus () and A2597 (), lack significant emission at 1400 MHz. The ghost cavities were interpreted as detached relics of earlier outbursts whose radio emission has faded ). However, this classification depends critically on the available radio images and is largely a qualitative one. In this section we give a quantitative classification system based on the break frequency of the synchrotron emission. We have radio data at 4 different frequencies for most of the systems in our sample (see the Appendix). Therefore, we can now determine more precisely whether a cavity is radio filled or ghost. Overlays of the radio emission (in green) on the smoothed Chandra X-ray images are shown in the Appendix. Since we are interested in the correlation between the X-ray cavities and the radio emission at different frequencies, we display only the cases where we have extended radio emission. These figures show that Hydra A (inner lobes), M84, M87, Centaurus, A2052, A2199, and Cygnus A have X-ray cavities filled with 1.4 GHz and higher frequency radio emission (4.5 GHz and/or 8.5 GHz) and would be classified as radio-filled cavities based on the above classification. On the other hand, A133, A478, and MS 0735.6+7421 were classified as radio-filled cavities based on the fact that 1.4 GHz fills the cavities; however, our new data do not show any higher frequency emission filling the cavities in these systems. cavities are relics of an earlier outburst. However, the situation has become complicated with the discovery of tunnels in the X-ray emission filled with low frequency radio emission (;). Such structure is possibly indicative of continuous feeding of the lobes by the central source, such as in the models of Diehl et al.. Additionally, some of the ghost systems show inner jets or lobes at higher frequencies (Hydra A -outer lobes, RBS 797, Sersic 159/03, A2597, and A4059). These radio sources can be either restarting or fading away. For RBS 797, based on the discovery that the inner jets seen at higher frequencies have a different orientation than the outer lobes seen at lower frequencies, the interpretation is that this radio source has restarted (see also ). However, for A4059 the inner jets have the same orientation as the outer ones; therefore, this radio source may be in an intermediate stage where the radio emission from the lobes is fading away (as suggested by ). A2597 is interpreted by Clarke et al. as an intermediate case based on the finding of an X-ray tunnel which connects the western ghost bubble to the core of the source. The outer lobes in Hydra A are in a similar situation ). For Sersic 159/03, the 10 ks X-ray observation was not deep enough to image the cavities well. The 327 MHz radio map shows extended emission, but oriented differently than the Xray cavities identified in Rafferty et al.. Much deeper X-ray observations are required in order to clarify this discrepancy. However, the radio source seems to be either restarted or fading away; as a result the X-ray cavities are classified as ghost. Synchrotron Ages Under the assumption that the relativistic electrons inside the radio lobes lose their energy only by synchrotron emission and inverse Compton scattering, for the KP model the synchrotron break (critical frequency) and the synchrotron age of a distribution of electrons are related through (;Feretti & Giovannini 2007): where the magnetic field B is in G and the break frequency C is in GHz. The magnetic field equivalent of the 3K background radiation, B m, accounts for inverse-Compton losses, with B m = 3.25 2 G. The largest uncertainty in the synchrotron age calculation is the magnetic field strength. Siah & Wiita and Wiita & Gopal-Krishna discussed the difficulty of estimating the strength of the magnetic field and how inhomogeneities in the magnetic field can affect the spectral age estimates. Also, Tribble, by studying the effects of a random magnetic field on the spectral age calculation, showed that the magnetic field rather than the pitch angle distribution is responsible for the difficulty of estimating the spectral age (JP or KP model). Eilek showed that inhomogeneities in the magnetic field can have important consequences for the radio sources, e.g., producing a deceptively short radiative age (for a review, see Rudnick 2002). We computed the synchrotron ages of the lobes using equation 4 and the minimum energy estimate of the magnetic field strength in the lobes, B eq, or the magnetic field required for pressure equilibrium, B p (see Section 4.6.1 for a description of how the magnetic field strengths were calculated). In Table 3 we list the equipartition magnetic field strengths, the magnetic field strengths required for pressure equilibrium (for k = 0 and = 1), and the corresponding synchrotron ages (t eq syn, t p syn ). We note that there is a clear separation in age between those cavities classified as radio filled (t syn 0.1 10 7 yr) and those classified as radio ghost (t syn 210 7 yr), a result which tends to support our classification scheme. "Spectral ages" computed using equation 4 (t eq syn ) are estimates of the time elapsed since acceleration of the particles, under the assumption that synchrotron radiation is the only mechanism by which the electrons lose energy. However, in addition to synchrotron losses, adiabatic expansion can also deplete particle and field energy in a radio lobe (Scheuer & Williams 1968), reducing the break frequency and the magnetic field, so making the measured spectral age, t eq syn, exceed the true age. Blundell & Alexander computed a formula for break frequency versus age, which takes into account both synchrotron losses and adiabatic-expansion losses:, where C is the measured break frequency in the presence of adiabatic-expansion losses, and f (∆) = 16∆ 6 /, where ∆ is the linearexpansion factor for a volume of plasma. We calculated ∆ as the ratio between the final radius of the bubble at the end of the adiabatic expansion (r 1 ) and the initial radius of the bubble at the start of the adiabatic expansion (r 0 ). According to the adiabatic-expansion law:, where, the ratio of specific heats, is assumed to be 4/3, and p 1 and p 0 are the gas pressures at the location of the X-ray cavity and at the center of the cluster respectively (derived from X-ray observations, see ). We assume that the bubble starts at the cluster center and calculate r 0 from this equation. Table 3 lists the adiabatic-loss-corrected ages (t eq syn,cor ), and the factors involved in its derivation (∆, f (∆) and cor C ) are listed in Table 2. Our assumption that the particles are all injected at the central pressure and expand to the current lobe pressure probably overestimates the adiabatic correction, which is generally modest. Comparing Age Estimates In Figure 2, we compare the adiabatic-loss-corrected synchrotron ages of the radio lobes to the X-ray-derived ages of the cavities (taken from, and averaged over each set of cavities). There is no strong trend in this figure between the two age estimates, implying that they are in general only weakly coupled. Additionally, the clear separation between radio-filled and radio-ghost cavities discussed in the previous section is evident in this figure. When comparing the two estimates of age, one can assume either that the cavity ages are the true ages or that the synchrotron ages are the true ages. If we assume that the cavity ages represent the true ages, we find that the synchrotron ages systematically underestimate the ages of the radio sources by a mean factor of ∼ 13 with a median value ∼ 1.5 when the buoyancy estimate is used. When the sound-speed age is used, the situation improves somewhat, although the radio-filled cavities still have synchrotron ages that are much lower than their cavity ages. We can also constrain the ages in the radio-filled systems from the weak shocks seen in Xray observations by fitting models to the surface brightness profiles (e.g., b,a). For example the shock age for Cygnus A based on the surface brightness profile from Smith et al. is around 1.7 10 7 yr. As a result, the buoyancy ages in radio-filled systems are probably several times too large, but the synchrotron ages are an order of magnitude too small. In general, our results agree with the conclusions of Eilek, who finds that the synchrotron ages are generally lower limits to the radio source ages, and support the idea that particle injection is still occurring in the radio-filled systems. If, however, we assume that the synchrotron age represents the true dynamical age of the cavity system, Figure 2 implies that many of the cavities, particularly the radio-filled ones, are being strongly driven, or that they form at radii close to their observed radii. If we assume that they are driven, Figure 2 implies that they are moving ∼ 4 to ∼ 20 times faster than the buoyancy age suggests, so in most cases substantially supersonically. As a result, in these systems we would expect to see shocks. The discovery of mild shocks in some systems (see Mc-Namara & Nulsen 2007) fits with the above scenario, and we may expect to see shocks in all of the other systems for which the synchrotron age is much less than the buoyancy age of the cavity. We can test in detail whether the synchrotron ages are indicative of the dynamical ages by calculating the implied Mach numbers, M = R/(t eq syn,cor c s ), where R is the distance from the cluster center to the cavity center and c s is the velocity of sound in the pre-shock gas, both taken from Rafferty et al.. A number of objects have high Mach numbers, between 3.5 and 8.0 for M84, M87, and Centaurus, 14 for the inner lobes of Hy- a The cavity classification: radio-filled cavites (RF) have lobe break frequencies (C, see Table 2) above 1.4 GHz; radio-ghost cavities (RG) have lobes with break frequencies below 1.4 GHz. b The equipartition magnetic field strength for k = 0 and = 1. c The magnetic field strength required for pressure equilibrium for k = 0 and = 1. d The synchrotron age computed using the equipartition magnetic field strength (Beq) and the break frequency C. e The adiabatic-loss-corrected synchrotron age computed using the equipartition magnetic field strength (Beq) and the adiabatic expansion corrected break frequency cor C. f The synchrotron age computed using the magnetic field strength required for pressure equilibrium (Bp) and the break frequency C. g The magnetic field strength obtain by assuming that the equipartition synchrotron age (t eq syn,cor ) is equal to the buoyancy age. h Assumes = 1. NS denotes cases for which no physical solution was possible. i The magnetic field strength that corresponds to the keq value for which the equipartition magnetic field equals the field required for pressure equilibrium. j The X-ray volume, buoyancy age, and sound speed age are from Wise et al.. Fig. 2.-The synchrotron age of the lobes corrected for adiabatic-expansion losses versus the X-ray-derived buoyancy age (left) and sound-speed age (right) of the X-ray cavities. Triangles denote radio-filled cavities, and circles denote radio-ghost cavities (see Section 4.3 for details). Dashed lines denote different ratios of the synchrotron age to the cavity age. dra A, and 24 for Cygnus A. Such Mach numbers imply strong shocks that are not seen; the Mach numbers of observed shocks range between ∼ 1.2 in e.g., M87 ((Forman et al., 2007, to ∼ 1.65 in Hercules A (a). Nevertheless, the existence of weak shocks in many of these systems supports the conclusion that one may expect to see shocks whenever the synchrotron age is much lower than the buoyancy age. Therefore, we conclude that the synchrotron and buoyancy ages appear to be only weakly coupled, and the synchrotron ages for radio-filled cavities are generally not good estimates of the dynamical ages (although in very young sources with ages much less than those in our sample, the spectral ages are consistent with the dynamical ages; see ). For the ghost cavities, the spectral ages are roughly consistent with the buoyancy or sound-speed ages. Magnetic Field and Particle Content Because the magnetic field and particles are intimately connected through the observed synchrotron radiation, we discuss them together in the following sections. Observational evidence for magnetic fields outside of the radio sources, but within the hot thermal gas in galaxy clusters, comes from Faraday rotation measurements of radio galaxies in and beyond clusters in combination with X-ray data (e.g., ;;;Ge & Owen 1993;Taylor & Perley 1993;Ge & Owen 1994;;;). These studies show that the central cooling flow regions have magnetic field strengths of 5 to 10 G, with a coherence scale between 5 and 10 kpc (Carilli & Taylor 2002). Current theory posits that AGN are responsible for the magnetization of the ICM, and they may also have an impact on large-scale structure and galaxy formation Carilli & Taylor 2002;). Because X-ray and radio data probe different properties of the lobes, they can be used together to increase our understanding of the lobe contents. Equation 1 governs the total energy content of the lobes, comprised of magnetic field and particle contributions. However, before the discovery of X-ray cavities, the total energy (the lefthand side of the equation) could only be estimated indirectly (). Cavities provide direct measurement of the total mechanical energy to within factor of a few (see Section 4.7). The other factors in equation 1 are constrained either by X-ray or radio data, with the exceptions of k and B. By further assuming pressure balance and equipartition, we can constrain these two remaining parameters. Other assumptions, e.g., of source uniformity, are required to fully determine the relationships between intrinsic and observed properties of radio lobes. The adequacy of these assumptions is not evident in advance, making it is unclear how well the resulting relationships reflect reality. Observed properties can also be used in a variety of combinations to constrain intrinsic lobe properties. In the following sections we consider a range of approaches to constraining lobe contents from their observed properties, generally relaxing assumptions as we proceed. Do All Lobes Have the Same Composition? Properties of the radio lobes, particularly their pressures, can be constrained by X-ray data (e.g., ). X-ray cavities are assumed to be near pressure equilibrium with their surroundings, since they are observed to be long lived and often surrounded by cool rims which do not appear to be shocked. The pressure in a radio lobe is the sum of the particle pressure, p P, and the magnetic pressure, p B. In equilibrium, the total pressure, p P +p B, should match that of the surrounding thermal gas, p th. Here we assume p B = B 2 /8, which is strictly valid only for expansion perpendicular to the magnetic field. More generally, the effective magnetic pressure depends on the structure of the magnetic field in a lobe. For example, if the field is tangled and isotropic, the effective magnetic pressure would be p B = B 2 /24 (e.g., Hughes 1991). Uncertainty in this relationship is a source of uncertainty that affects estimates of B p in particular. With p B = B 2 /8, the lobe pressure is given in terms of the particle and field energies by in the notation of equations 1 -3. Using equations 2 and 3 to express E B and E e in terms of the magnetic field strength, this equation determines lobe pressure in terms of B. Thermal pressures for the gas can be computed from the X-ray observations (). Thus, for a given value of k, the magnetic field required for pressure equilibrium, B p, can be determined from the X-ray and radio properties of a lobe. Considered as a function of B, the right hand side of equation 5 has a minimum (for B = 3 −2/7 B eq, equation 7), so that there is a minimum pressure consistent with observations. For any thermal pressure larger than the minimum, equation 5 has two solutions for B. For the smaller solution, the particle pressure dominates and, for the larger, the magnetic pressure dominates. Since the smaller solution typically gives unreasonably small magnetic field strengths (the majority of them smaller than 1 G), we chose the solution for which the magnetic pressure dominates. Very low magnetic field strength can also imply excessive inverse Compton X-ray emission from a lobe, violating constraints obtained from the gamma-ray background (e.g.,, find that B is unlikely to be smaller than 10 G on average in systems such as these). Because the magnetic pressure obtained in this way is close to the thermal pressure, B p is relatively insensitive to k. Values of B p in Table 3 were calculated by this method, using the gas pressure at the radius of the center of a lobe, and assuming k = 0 and = 1. The widely used the minimum energy condition (first proposed by Burbidge 1956) requires (Pacholczyk 1970) where k is the ratio of the energy of heavy particles to that in electrons, E e. Thus it implies approximate equipartition between the energy of the magnetic field and that in relativistic electrons and heavy particles. Under the minimum energy condition, the magnetic field strength is where B ct = (6) 2/7 c 2/7 12 (, 1, 2 )L 2/7 rad V −2/7. This minimum-energy magnetic field strength estimate depends on the radio luminosity integrated between two fixed frequencies (10 MHz and 10000 MHz). Analyses using a fixed low energy cutoff for the electrons () or knowledge of the acceleration mechanism (Beck & Krause 2005) suggest that low energy particles may make a greater contribution to the pressure than we find. However, throughout this paper we use the classical equipartition magnetic field strengths. We now consider whether all lobes can have the same composition (i.e. the same value of k), assuming that the minimum energy (equipartition) condition applies. The equipartition magnetic field strengths given in Table 3 and Table 4 (B eq, B eq327 ) are computed from equation 7 above using the volumes from X-ray observations and 327 MHz radio maps respectively, assuming no heavy particles (k = 0) and a volume filling factor, (), of unity. The assumption of k = 0 is the limiting case, where the energy in the heavy particles is negligible (see De Young 2006). The choice of = 1 is justified by X-ray observations of cavities and shocks, since the cavities must be mostly empty of thermal gas, as otherwise they would not be evident in X-ray images (;;). This lack of thermal gas and the requirement of pressure support implies a high filling factor. Additionally, the energy represented by the observed shocks requires that the radio lobes displace most of the volume that they occupy (see. Values in Table 3 are computed using cavity volumes from X-ray observations. Those in Table 4 use lobe volumes from the 327 MHz radio observations. In Figure 3, left, we compare the equipartition magnetic field strength, B eq, to that required for pressure equilibrium, B p, for k = 0 and = 1. For all of the objects, B eq cannot support the cavities against the ICM pressure, although Centaurus, Cygnus A, and the inner lobes of Hydra A are within a factor of two of equilibrium. These systems are three of the five that were classified as radio-active in Section 4.3. For the other two (M84 and M87), the thermal pressure is too low to give a solution for B p, so they are not plotted. For these objects the minimum lobe pressure is too large and they are likely in a driving stage where the lobes are still being inflated (see the discussion in the next section). Whereas the magnetic field required for pressure equilibrium, B p, is insensitive to k as discussed above, the equipartition magnetic field does depend on k. For example, the estimates of B eq would increase by factors of ∼ 4 and ∼ 7, if 1 + k = 100 and 1 + k = 1000, respectively. Assuming 1 + k = 100 (Figure 3, right), many objects shift closer to equality. However, we note that for this value of k there are many systems absent from the figure, since the pressure equilibrium equation does not have a solution. If 1 + k = 100 in the latter systems, they could not produce the observed synchrotron radiation unless their pressures exceeded the surrounding gas pressure. There is no single value of k for which the equipartition magnetic field strengths are equal to the field strengths required for pressure equilibrium across our entire sample. Therefore, either the lobes do not have the same composition or equipartition does not apply. We investigate these possibilities further in the following sections. Varying Lobe Composition If the composition of the radio lobes, i.e., k, is variable, and the lobes are close to equipartition, then k can be determined by applying the equipartition and pressure equilibrium conditions together. By requiring the equipartition magnetic field (equation 7) to be equal to the magnetic field required for pressure equilibrium (equation 5), we can determine k as. In applying equation 3, which gives the ratio of electron energy to synchrotron luminosity, it is assumed that the radio observations measure the power down to the low frequency cutoff, which is not always true (Hughes 1991). For > 1/2, the bulk of the electron energy resides in low energy electrons, so that, if the low frequency cutoff is unknown, the factor c 12 (, 1, 2 ) in equation 3 is poorly determined. This can contribute an order of magnitude or more of uncertainty to values of k given by equation 9. By contrast, under the equipartition and pressure equilibrium assumptions, the magnetic pressure p B = (9/13)p th and the total particle pressure p p = (4/13)p th, so that they and the magnetic field are unaffected by this uncertainty. We have computed the heavy particle content, k eq, using equation 9 (i.e., the heavy particle content of the lobes required to match their pressure to the surrounding gas pressure under equipartition). Values of k eq in Table 3 are computed using cavity volumes from X-ray observations. Values of k eq327 in Table 4 use 327 MHz lobe volumes from radio observations. The filling factor = 1 in all cases. The gas pressure is measured at the radius of the center of a lobe. Under these assumptions, we find values of k from ∼ 1 to 4000. From theoretical estimates k is predicted to range between 1 and 2000, depending on the mechanism that is generating the electrons (Pacholczyk 1970). If these predictions are correct, the high values of k eq determined here imply either that equipartition does not apply in the lobes of some of these radio sources or that there is additional pressure support (e.g., from hot thermal gas). The latter scenario needs to be investigated further with deep Chandra images (see e.g., ;?). Alternatively, there may be substantial variations from source to source in the low energy cutoff of the electron energy distribution (i.e., in c 12 (, 1, 2 )). The value of k might also be affected by other differences in intrinsic radio source history, e.g., by synchrotron aging. The magnetic field strength corresponding to k eq, B eq,p, is determined from the equipartition requirement p B = (9/13)p th, with p th measured at the radius of the center of the X-ray cavity (see Table 3). Values of B eq,p327 (Table 4) differ only because the gas pressure is different at the center of the typically larger 327 MHz radio lobes (Section 4.8). In general, the magnetic field strengths determined from the radio lobe volumes are a little smaller than those determined for the X-ray cavities, as the pressures for the former case are determined at slightly larger distances from the cluster centers. The equipartition magnetic field strengths are generally a little smaller than those required for pressure equilibrium (B p ) and both are larger than the cluster-wide magnetic field estimates (Carilli & Taylor 2002). Our range of estimates for the ratio of heavy-particle energy to electron energy, ∼ 1 -thousands, is similar to that of Dunn & Fabian and Dunn et al.. However, for some systems our numbers differ by orders of magnitude. There are several reasons for the discrepancies. Because k is inversely proportional to the total radio luminosity, the differences can be due in part to differences in the total radio luminosity. Dunn & Fabian and Dunn et al. used the spectral indices from the literature and the 5 GHz radio flux in order to calculate the total radio luminosity. In contrast, we use measurements of the lobe fluxes at multiple frequencies to determine the spectrum and the total luminosity, which is generally more accurate and less sensitive to aging affects. Furthermore, we note that for some systems the cavity sizes and positions used by Dunn & Fabian and Dunn et al. differ from ours (;). The differences in sizes and positions will further affect the volume and buoyancy-age calculation (Section 4.4), both important in the derivation of k. The large range of k may be due to the range in intrinsic radio properties such as the synchrotron age. To investigate this possibility further, in Figure 4 we plot k eq versus the break frequency. We notice a dichotomy between high and low break frequency systems, such that objects with high k have a low break frequency, as might be expected if the low-break-frequency objects lost their high-energy electrons, increasing the ratio between heavy (total) particle energy and electron energy over time. Because no clear trend is present, aging is unlikely to fully The ratio of heavy-particle energy to electron energy for which the equipartition magnetic field strength equals the field required for pressure equilibrium versus the break frequency. Symbols are the same as in Figure 2. explain the range in k that we find. However, since the bulk of the energy resides in low energy electrons (for > 0.5), the total energy of the electrons can only change significantly when electrons near to the low energy cutoff begin to age significantly. Until this stage, k will be little affected by synchrotron aging. When the lowest energy electrons have aged significantly, the break frequency should have evolved to below the low frequency cutoff. Since we measure a break frequency above the cutoff for the majority of our sources, either k should be largely independent of the age, or the break frequency does not directly reflect the age. Also we note that k is low in the radio-filled sources. If we assumed that k starts close to unity and evolves due to synchrotron losses alone, then 90% of the remaining electron energy would have to be lost to boost k by an order of magnitude or more. That would require every source with large k to be older than the synchrotron loss time at the low energy cutoff. Nor can adiabatic expan-sion explain the high values of k. If the heavy particles are relativistic, adiabatic expansion does not change k, and if they are non-relativistic, k is reduced by expansion, as adiabatic expansion favors relativistic particles (E p /E e ∝ V −1/3 ). The trend in Figure 4 and the large values of k support the idea of a heavy jet (for a complementary view on this subject, see De Young 2006) or entrainment of heavy particles (see e.g., ;a). Entrainment may play a role by redistributing jet energy from electrons to protons or suprathermal particles, increasing k and decreasing radio luminosity as the electrons lose energy. It may explain how objects with the same break frequency can have different k values. Lastly, by equating the synchrotron age derived from the lobe's radio spectrum (equation 4 in Section 4.4) to the X-ray-derived age for the cavity (from ), we can place further limits on the magnetic field strength and lobe content. The resulting relation determines the magnetic field strength in a lobe, B buoy (Table 3), required to make the synchtron age consistent with the age estimated from X-ray observations (the solution for B buoy with B > √ 2B m /3 is used). Note that, at least in some cases, the buoyancy age is likely to be an overestimate of the age of a cavity, causing B buoy to be underestimated. Also assuming pressure equilibrium, so that the total pressure of a lobe (equation 5) equals the surrounding gas pressure, p th, taking B = B buoy then gives This approach, which combines the synchrotron age with constraints from X-ray observations, determines k without the need to assume equipartition, cf. Sections 4.6.1 and 4.6.2. Values of B buoy (Table 3) are used in equation 10 to obtain k buoy for the X-ray cavities (Table 3) and k buoy327, using the 327 MHz lobe volumes (Table 4). We note that for some lobes and some magnetic field estimates in Tables 3 and 4, the magnetic pressure of the lobe exceeds the thermal pressure of the surrounding gas, allowing no physical solution for k. For B buoy, this may be because t buoy overestimates the age of the cavity (due to projection or because the cavity is driven). In other cases, the magnetic pressures may simply be overestimated (such that p B > (9/13)p th ) within the large uncertainties in the equipartition assumption (discussed at the beginning of this section). Given these qualifications, if all the assumptions that go into these calculations are correct, lobes for which the thermal pressure is too low to allow pressure equilibrium must be over-pressured and therefore in a driving stage (e.g., ). Scaling Relations between Synchrotron Power and Jet Power While deep X-ray observations are critical for measuring the AGN output (cavity and shock energy), these observations are difficult to obtain in many clusters, particularly at higher redshift. However, it is important to quantify the history of AGN output in clusters for a better understanding of the feedback process in galaxy formation and cluster preheating (e.g., Magliocchetti & Brggen 2007;). This goal requires sensitive measurements of both the current rate of energy injection and the history of injection with cosmic time. Radio observations, properly calibrated to the total energy, may be a useful proxy for X-ray observations as a tracer of the energy injection. Our goal in this section is to use the observed cavity and radio properties to calibrate the radio-to-total jet power. The first attempt at this was presented in Brzan et al., where we found that L radio ∼ P 1/2 cav, but with large scatter. This scatter and the unknown temporal behavior of the radio emission limits the usefulness of this relation to accurately probe jet power. Nevertheless, Best et al. and Magliocchetti & Brggen adopted the Birzan relation to study feedback in elliptical galaxies using 1.4 GHz radio power alone. Like the studies of Brzan et al. and Rafferty et al., they found that AGN were able to quench cooling in many systems. However, an additional source of heat is implied in massive systems. This conclusion is uncertain because it takes no account of the large scatter and its origin in L radio -P cav relation. For example, one powerful outburst in any system can dominate the AGN heat input over its entire lifetime. In this case, the variance in the relation would be as important as the mean. Furthermore, the slope and scatter depend on frequency. Frequencies below 1 GHz are most sensitive to feedback power. A more accurate relation that can be applied to data from all-sky surveys would provide the basis for understanding radiomode feedback (;Sijacki & Springel 2006) and its impact on galaxy formation and evolution. Additionally, accurate estimates of the radiative efficiencies are important for jet and accretion models. With these goals in mind, in this section we use our sample of cavity systems to examine the relationship between the radio power and the cavity power. In Figure 5, we plot the jet power versus the bolometric radio luminosity for the total source (left) and the lobes (right) of the radio sources. This figure shows the same trend between bolometric radio luminosity and cavity power as seen in Brzan et al.. The most radio-luminous objects generally have the largest cavity power. This trend is shared by both radio-filled cavities and radio-ghost cavities, but the ghost cavities tend to have a higher ratio of jet power to radiative power. To quantify the trend, we perform an ordinary least squares regression to fit a linear function to the logarithms of the data. The best-fit line for the total source luminosity is given by log P cav = (0.48 ± 0.07) log L radio + (2.32 ± 0.09), with a scatter (standard deviation) of ≈ 0.83 (see Figure 5, left). The best-fit line for the lobes only ( Figure 5, right) is log P cav = (0.59 ± 0.08) log L radio + (2.11 ± 0.11), with a scatter of ≈ 0.65 dex. In these relations, both the cavity power and the bolometric radio luminosity are in units of 10 42 erg s −1. The relation between the jet power and total radio power is similar to our previous finding in Brzan et al., where we used inhomogeneous literature data in order to quantify the radio power. When we use only the five radio-filled sources, those with break frequencies above 1400 MHz, the best fit line -Cavity (jet) power versus bolometric radio power for the total source (left) and lobes only (right). The symbols and wide error bars denote the values of the cavity power calculated using the buoyancy timescale. The short and medium-width error bars denote upper and lower limits of the cavity power calculated using the sound speed and refill timescales, respectively. Each point represents the sum of cavity powers of each cavity type. Filled symbols denote radio-filled cavities, and open symbols denote radio-ghost cavities. Dotted lines denote different ratios of cavity power to bolometric radio luminosity. The dashed line shows the best-fit power law for the entire sample (equations 11 and 12); the solid line shows the fit for the radio-filled systems only (equations 13 and 14). in units of 10 42 erg s −1 is given by log P cav = (0.70 ± 0.12) log L radio + (1.40 ± 0.17) for the total source (the solid line in Figure 5, left) and for the lobes only (the solid line in Figure 5, right) by log P cav = (0.69 ± 0.12) log L radio + (1.46 ± 0.17). For the radio-filled sources, the jet power scales tightly with both the total and lobe radio power, with a scatter in both cases of only 0.31 dex. For comparison with monochromatic radio data, we also plot the cavity power against the 1400 MHz and 327 MHz powers of the total source in Figure 6. The monochromatic radio power was calculated as P = 4D 2 L S (1 + z) −1, where we have assumed a power-law spectrum (S ∝ − ). The best-fit relations are (with P cav in units of 10 42 erg s −1 and P 327 and P 1400 in units of 10 24 W Hz −1 ): log P cav = (0.62 ± 0.08) log P 327 + (1.11 ± 0.17) log P cav = (0.35 ± 0.07) log P 1400 + (1.85 ± 0.10). The scatter about the 1400 MHz relation for the whole sample is 0.85 dex, compared to 0.69 dex for the 327 MHz relation (an improvement of ≈ 20%). In terms of the scatter, the monochromatic 327 MHz power is almost as accurate for inferring the cavity power as the bolometric lobe luminosity (equation 12). We note that the slopes of the best-fit relations differ by almost a factor of 2, whereas one might expect them to have similar slopes (if P 327 scales roughly with P 1400 ). However, we are not attempting to uncover the true, underlying relation between cavity power and radio luminosity. Rather, we wish to find the best relation to use for predictive purposes. Therefore, the relation that results from a simple ordinary least squares regression is the most appropriate (for a discussion, see ). The large scatter about these trends is similar to that found in Brzan et al.. In Figure 5 we see that the ratio of cavity power to radio power ranges between a few and a few thousand. About half of our systems have ratios in the range 10-100, with the rest being on average vastly larger (radiative efficiencies of < 0.001). The median value for the ratio of cavity power (4pV /t) to radio power is 420 when we consider the total radio luminosity, and 141 when we consider only the lobe radio luminosity. However, the mean values for the ratio of cavity power to radio power are 4200 (total radio luminosity) and 595 (lobe radio luminosity). The scatter that we see in Figure 5 is much larger than the range in theoretical estimates, which generally predict a ratio of 10-100 (De Young 1993;). As a result, the total or lobe radio luminosity is not a good predictor of the total jet power. It is important to note that we did not include the contribution of shocks in the cavity power calculation for any of the objects. Deep Chandra X-ray images show that the lobes create mild shocks during their expansion, with a Mach number lying between 1.2 and 1.7 (;;a,b;;?;;;. In cases where shocks are present, the cavity powers are lower limits to the jet powers, and as a consequence the radiative efficiencies are overestimated. Radio-source aging may be responsible for some of the scatter in this plot: in general, the most radiatively efficient systems (e.g., Cygnus A and M87) are also the youngest ones and may still be driven by the radio source. Conversely, the most radiatively inefficient systems are generally the older ones. In this scenario, the sources start with high radiative efficiencies when they are young and, as they age, their efficiencies decrease. However, since the radiative efficiencies depend mainly on the lower energy electrons which have a very long radiative lifetime, the radiative efficiencies of the sources in our sample should not be strongly affected by aging. To further investigate whether the scatter is due to ra- Figure 7 we plot the ratio of cavity power to radiative power (the inverse of radiative efficiency) versus the break frequency. Only a few objects are radiatively efficient (e.g, M87, Cygnus A, and Hydra A -inner). If the scatter in Figure 5 is a radioaging effect, one would expect to see a correlation between radiative efficiency and the break frequency, such that those objects with high efficiencies have high break frequencies (and are therefore younger). Figure 7, left, shows a segregation between young (radio-filled) objects, which may be still in a driving stage (e.g., M87, Cygnus A, etc.), and the older (ghost) objects (e.g., Hydra A -outer, A1835, etc.) and a tendency for objects with higher break frequencies to be radiatively efficient. This segregation is similar to the one in Figure 4. This result is not surprising since k is approximately proportional to the ratio between cavity power squared and the bolomet-ric radio luminosity (see equation 9). As a result, the k values are indicators of the radiative efficiencies for the radio sources. As we discussed in section 4.6, the scatter in the radiative efficiencies may be due to a combination of aging and entrainment, which will increase k and reduce the bolometric radio luminosity. A similar segregation is seen in the right panel of Figure 7, where we plot the ratio of cavity energy to radiative power versus the break frequency. The ratio of cavity energy to radiative power represents the timescale for the AGN to radiate away its cavity energy via synchrotron radiation. Since many of the objects have a very long timescale, longer than the Hubble time, the synchrotron radiation is generally a negligible fraction of the total energy budget currently. Only for a few objects is radiation important (e.g, M87, Cygnus A, and M84). As a result, aging does not appear to be the only factor that contributes to the large scatter in the radiative-efficiency plot. However, the scatter may be reduced if the dependence of the radiative efficiencies on break frequency is taken into account. To this end, we fit the equation log P cav = A log L radio +B log C +C to all objects with estimates of the lobe break frequency. For the purposes of this fit we treat the upper and lower limits on the break frequency as detections. The resulting best-fit relation is: log P cav = (0.53 ± 0.09) log L radio − (0.74 ± 0.26) log C + (2.12 ± 0.19), where the cavity power and lobe radio luminosity are in units of 10 42 erg s −1, and C is in units of GHz. In Figure 8 we plot the cavity power versus (L radio ) 0.53 ( C ) −0.74. Figure 8 shows that accounting for the synchrotron aging greatly reduces the scatter about the best-fit line, from 0.64 dex (equation 12) to 0.33 dex. Therefore, knowledge of the lobe break frequency improves the scatter by ≈ 50%, significantly increasing the accuracy by which one can estimate the jet power of the AGN when cavity data are unavailable. A relation with similar scatter was identified by Merloni & Heinz using the 5 GHz core radio luminosity only, after correction for relativistic beaming. Another factor that may contribute to the scatter in the radiative efficiency plot is the interplay between the magnetic field and the particle content. From Figure 3, we concluded that for k = 0, only in a few sources (the youngest ones) can the equipartition fields achieve pressure equilibrium. For the majority of the objects, in order for the equipartition fields to achieve pressure equilibrium, a much larger value of k is required (Section 4.6.1). However, in Section 4.6 we concluded that the large range in k is not due only to variations in magnetic field strengths, but may be due to differences in intrinsic radio properties. Because of the interrelations between magnetic field, particle content, and intrinsic radio properties such as radio luminosity, the scatter in Figure 5 is not due exclusively to one of these factors, but may be a result of all of them. Radio Observations As a Tracer of Cavity Size Low-frequency radio observations appear to be a good tracer of cavity activity over 10 8 yr timescales (;;). For example, 327 MHz VLA radio maps have proved to be crucial for detecting the outer, fainter cavities in systems like Hydra A ), due to a combination of a brighter source at 327 MHz (particularly important for steep spectrum sources, such as MS 0735.6+7421) and the generally higher sensitivity of the VLA at low frequencies to larger-scale structure (though depending on the array this may not always be the case). We note, however, that the system temperature of the VLA is higher at lower frequencies, so there is some trade off between the above effects and VLA's sensitivity to low surface brightness emission. In order to evaluate whether 327 MHz emission is generally a better predictor of cavity size than 1400 MHz emission, we compare pV cav, where V cav is the volume of the cavities from the X-ray maps against pV 1400, where V 1400 is the volume of the lobes from 1400 MHz radio maps, in Figure 9, left. We also plot pV cav against pV 327, where V 327 is the volume of the lobes from 327 MHz radio maps (Figure 9, right). The pressure on each axis is measured at the position of the radio lobe's center or cavity's center, and can therefore differ from one axis to another. In Table 5, we list the the lobe's size and the pressure at the lobe's center for both 327 MHz and 1400 MHz radio lobes. The X-ray pressures are taken from Rafferty et al.. We include only those systems with resolved emission in this analysis. Figure 9 suggests that 1400 MHz emission in our images is a good tracer of cavity size in most cases, but there is a significant scatter, with many points falling below the equality line. Assuming that P cav traces the minimum jet power, we note that the power we estimate from the 1400 MHz emission underestimates the cavity power in some systems. On the other hand, at 327 MHz, all of the points are above the equality line, despite the fact that the radio data have a variety of noise levels and differing uv coverage and antenna spacings (array configurations), all of which affect the sensitivity of the resulting images to the lobe structure. This effect is likely due to steepening of the spectrum towards the edges of the lobes, a common property of many low-power radio sources (e.g., ). It therefore appears that, in general, cavity energies inferred from lower-frequency radio maps are less likely to underestimate the X-ray-inferred energies. A number of objects lie above the equality line at both frequencies (e.g., Abell 4059, Perseus, Abell 2052, RBS 797, and 2A 0335+096). In these cases, the radio lobes are larger than the cavities measured in X-rays. It is possible that X-ray measurements have underestimated the sizes of these cavities, or that the radio plasma has diffused beyond the cavities. The latter explanation seems to be favoured for Abell 4059 if we think of it as an intermediate case in which the X-ray cavities are fading away (). In Hydra A, the inner cavities that we measured from X-ray images are filled with 4500 MHz radio emission. However, from Wise et al. we know that Hydra -Left: Cavity energy inferred from the 1400 MHz radio emission versus that inferred from the X-ray data. Right: Cavity energy inferred from the 327 MHz radio emission versus that inferred from the X-ray data. Symbols are the same as in Figure 2. A has outer cavities that are filled with 327 MHz radio emission (from ). For Hydra A, we calculated two sets of data: one for the inner cavities using the pV cav from Rafferty et al. and one for the outer cavities using the X-ray information from Wise et al.. There are other objects similar to Hydra A where the energy inferred from the 327 MHz radio emission is well above the energy we measure from X-ray images (e.g., RBS 797). In these objects we expect to find outer cavities in deeper Chandra images which will increase their total pV cav estimates. CONCLUSIONS In summary, using an X-ray and radio study of 24 systems with X-ray cavities, we found that these systems are in general poor radiators with a ratio of cavity (jet) power to radio power ranging from a few to a few thousands. We conclude that this scatter is probably due to several effects including aging and entrainment plus a combination of intrinsic differences in magnetic field strength and particle content. Accounting for the dependence of the radiative efficiencies on aging reduces the scatter (standard deviation) of the relationship between radio luminosity and average jet power by ≈ 50%, improving the accuracy with which one can determine the total jet power of the AGN using radio observations alone. However, age estimates are costly to obtain, as an accurate estimate of the break frequency requires observations at several different frequencies. When data at only a single frequency are available and in the absence of an estimate of the break frequency, we found that low-frequency (327 MHz) monochromatic radio power allows a more accurate estimate of the jet power than the higher-frequency 1400 MHz powers (the scatter at 327 MHz is ≈ 20% lower than at 1400 MHz). Therefore, low-frequency radio observations may be the cheapest strategy for studying feedback in radio galaxies. Our data allow us to put limits on the particle content and, through comparisons of the buoyancy and synchrotron ages, to test the assumptions that go into their determination. We found that the two age estimates are weakly coupled. We argue that the synchrotron ages underestimate the true ages for the younger systems (with high break frequencies), which likely are actively being inflated by the radio source and which generally have a lower value of k. On the other hand, for the older systems (with low break frequencies), the cavity ages and synchrotron ages are closer to being in agreement, and k is generally much higher. Using both radio and X-ray data we placed limits on the magnetic field strengths and particle content in the lobes (k, defined as the ratio between the heavy-particle energy and the electron energy). Assuming a lepton jet (k = 0), we found that the magnetic field strengths required for pressure equilibrium are in general much larger than both the equipartition magnetic field strengths and those derived by requiring the synchrotron age to be equal to the buoyancy age. Therefore, either equipartition does not apply in the lobes of the radio sources or there is additional pressure support from other sources. If we allow for heavy jets (k > 0), equating the equipartition magnetic field strength to that required for pressure equilibrium gives values of k between approximately unity and 4000, a range similar to that found by Dunn & Fabian and Dunn et al.. The range in k may be due to the effects of aging and entrainment. Our multiwavelength radio data allow us to better classify the cavities based on their radio emission. Motivated by the traditional classification system based on the presence or absence of 1400 MHz emission in the cavity, we used the break frequency to classify the cavities as ghost ( C 1400 MHz) and active ( C 1400 MHz). Based on this classification, only M84, M87, Hydra A, Cygnus A, and Centaurus have radio-filled cavities. However, we note that since our systems have a continuous range in break frequencies, any separation of the cavities into discrete categories is somewhat arbitrary. Lastly, by comparing the cavity sizes inferred from the X-ray maps with those inferred from 1400 MHz and 327 MHz radio maps, we found that the sizes from our 1400 MHz images often under-predict that cavity energy, whereas the lobes sizes measured from our 327 MHz images generally equal or exceed the X-ray cavity sizes. Where the low-frequency lobe emission appears to extend far beyond the X-ray cavities, there may exist faint outer cavities which would only be visible in very deep X-ray images (such as the outermost cavities in Hydra A). The discovery of X-ray cavities in the hot atmosphere of clusters has made it possible to estimate the radiative efficiencies of the radio sources, which can be much lower than the theoretical estimates (as low as 0.0001). Therefore, most of the AGN's energy in such radio galaxies is dumped directly into the ICM through the X-ray bubbles and shocks, likely preventing the overcooling of gas below ∼ 2 keV which would lead to an over-abundance of extremely bright galaxies at the centers of clusters (Sijacki & Springel 2006;). ApJS, 91, 111 APPENDIX RADIO IMAGES Figure 10 presents the radio contours for each image listed in Table 7. Figure 11 shows the resolved radio emission superimposed on the smoothed Chandra X-ray images. In this figure, systems are ordered by decreasing P cav /L radio (i.e., increasing radiative efficiency), and images for each system are ordered by increasing frequency. Table 6 lists the details of our observations for each object in the sample. Table 7 lists the basic radio image properties such as resolution, noise, position angle for the beam at each frequency, and the arrays from which data were used to make the image. Also listed are the references to published images. |
A terminal end of an optical fiber cable used for various communications is provided with an optical connector for use in relay or connection to other apparatuses. The optical connector includes a cylindrical ferrule of which an optical fiber is inserted into an inner circumferential part, and a plug housing which holds the ferrule and is connected and fixed to other apparatuses or an adaptor for relay.
In the optical connector, if an end face of the ferrule (including the optical fiber) which is a connection portion is scratched or stained, the communication quality of the optical fiber deteriorates. Thus, when an optical fiber cable is connected, an end face inspection apparatus which inspects a state of an end face of a ferrule of a formed optical connector is used.
The end face inspection apparatus captures an image of the end face of the ferrule of the optical connector with an image sensor, and enlarges and observes the captured image so as to find a scratch or a stain.
Non-Patent Document 1 discloses that an operator manually finely adjusts a focus of an image captured with an image sensor, and a focused image is acquired.
However, in such an end face inspection apparatus, an operator is required to manually perform fine adjustment for focusing, and thus time for fine adjustment is taken. The operator is required to perform an operation for acquiring a focused image while viewing an image displayed on a display unit of the end face inspection apparatus, and thus it takes time to acquire a focused image.
In order to cope with such a problem, Patent Document 1 has proposed a technique in which an end face of a ferrule of an optical connector is focused through automatic focusing, and then captured image data is subject to image processing. |
<reponame>olekolek1000/Fractal_Engine
#pragma once
#include "Core/Resource/Resource.h"
#include "Scene/BaseComponent.h"
using namespace fr;
struct MeshRenderer : public ECS::BaseComponent {
~MeshRenderer() = default;
MeshRenderer(std::string name="CUBE"): Name(name) {
Mesh = Resource.GetMesh(Name);
}
GLMesh Mesh;
std::string Name;
};
|
Prime Minister Stephen Harper would like it to be known that Bill C-51, the anti-terrorism act, is "strongly supported by Canadians." Indeed, an early-days Angus Reid poll did show that 82 per cent of us support the new law, which the Conservatives have been rushing to put away as if it were past legislative last call, the lights had gone on and the waitress was coming to clear it from the table. Bottoms up!
"Cheers," much of Canada shouted. "If people have nothing to hide, they shouldn't fear scrutiny," some said, giving the Conservatives a free pass on very much not wanting the bill scrutinized.
Expert testimony at committee, the Conservatives tried to argue, should be limited to just three sessions, and to this end they played all the angles. Urgency brought on by genuine concerns this bill largely fails to address, being one; Bill C-51 is being presented to us as if we currently have no means of investigating and prosecuting terrorists – as if, up to now, we've turned a blind eye to that sort of thing.
Story continues below advertisement
Addressing the committee that was discussing how long should be spent scrutinizing the bill, LaVar Payne, the Conservative member for Medicine Hat, said, "Imagine what would happen if we didn't protect our nuclear facilities?" before adding: "My goodness, that would be a big mess" – lest anyone think the answer was "Good times!"
Mr. Payne may be under the impression that Canada has an open-reactor policy – that we meet terrorists at the border with a double-double and the keys to a generator. If that were the case, proper study of a bill that gives the Canadian Security Intelligence Service and other organizations extraordinary new powers, but offers no new oversight, may be rash, but happily it isn't.
The dog-eared "You're either our cheerleader or a traitor" card also was played – by the man at the top. During Question Period on Thursday, Mr. Harper attacked the New Democrats, who insist on being the Official Opposition in more than name only and thus oppose the bill.
"Now is not the time for the NDP agenda of attacking the police and the security agencies," Mr. Harper said. "Now is the time to take on terrorists," making me wonder where the child pornographers stand right now and reminding me NDP Leader Thomas Mulcair's son is a police officer.
The Prime Minister might have more credibility if the erosion of our civil liberties was not habitually put forward by his government as a cure for whatever ails us. We're pretty close to "Got a pothole on your street? Text us your password." They have, of course, been angling to read all your e-mail for some time.
The tragic deaths by suicide of Amanda Todd and Rehtaeh Parsons gave us Bill C-13, the Protecting Canadians from Online Crime Act, which, oh, what did that bill do again? It did what the failed Protecting Children from Internet Predators Act tried to do. It made it easier for law enforcement to read your e-mails. And yet, in comparison to Bill C-51, very much pegged to the Oct. 22 shooting on Parliament Hill, which it wouldn't have prevented, both of those now look like acts of innocence. It's almost a ritual – as if from time to time a terrible thing happens in our land and we are required to make a civil-liberties sacrifice to the gods in the hopes it will not happen again.
The wording of the bill is odd – somehow familiar and yet alien, almost as if it has been dubbed over from another language. The "promoting terrorism" section of the bill eschews the already legally defined term "terrorist activity" in favour of the broad-as-barn-door phase, "terrorism in general," and that ought to be a red flag on a bill that quite frankly looks like a map of the Soviet Union.
Story continues below advertisement
Story continues below advertisement
It would appear any utterance deemed to encourage a terrorist act could be judged to be a criminal offence under the bill. This, one imagines, would be a freedom-of-expression issue – and possibly put an end to the chanting of "No justice! No peace!" at many a rally. So, I'll give it that.
Narrative-wise, revisions to the no-fly list would make Kafka envious. Information-sharing on any "activity that undermines the security of Canada" is allowed within a wide, perhaps expandable array of agencies for a somewhat open-ended list of reasons.
The New Democrats won the week, it could be argued. Their vigilance earned the spy bill eight days of scrutiny. Eight days! But really, I imagine it is Mr. Harper who's most pleased with himself; Bill C-51 is at the very least in dire need of revision, and still Canadians seem to be big fans.
Its immense popularity is a mystery to me and I wonder if this makes the situation a dream for the PM – he has brought us the Nickelback of legislation. |
class ElastalertFieldMissingError(Exception):
pass
class SettingFieldMissingError(Exception):
pass
class SettingFieldTypeError(Exception):
pass
class PostgreSQLFieldMissingError(Exception):
pass
class OTRSFieldMissingError(Exception):
pass
class ElasticSearchFieldMissingError(Exception):
pass
class InfluxDBFieldMissingError(Exception):
pass
class ErrorVariableParser(BaseException):
pass
class ErrorParametersParser(BaseException):
pass
class ErrorStartDateParser(BaseException):
pass
class ErrorMySqlParameters(Exception):
pass
class ErrorPostgreParameters(Exception):
pass
|
Lead Policy and Academic Performance: Insights from Massachusetts Childhood exposure to even low levels of lead can adversely affect neurodevelopment, behavior, and cognitive performance. This paper investigates the link between lead exposure and student achievement in Massachusetts. Panel data analysis is conducted at the school-cohort level for children born between 1991 and 2000 and attending 3rd and 4th grades between 2000 and 2009 at more than 1,000 public elementary schools in the state. Massachusetts is well-suited for this analysis both because it has been a leader in the reduction of childhood lead levels and also because it has mandated standardized achievement tests in public elementary schools for almost two decades. The paper finds that elevated levels of blood lead in early childhood adversely impact standardized test performance, even when controlling for community and school characteristics. The results imply that public health policy that reduced childhood lead levels in the 1990s was responsible for modest but statistically significant improvements in test performance in the 2000s, lowering the share of children scoring unsatisfactory on standardized tests by 1 to 2 percentage points. Public health policy targeting lead thus has clear potential to improve academic performance, with particular promise for children in low income communities. |
<filename>lab2.cpp
// <NAME> (656971609)
#include <iostream>
using namespace std;
void diamond(int inpVal)
{
int spaceBetween = inpVal - 1;
for (int i = 0; i < inpVal; i++)
{
for (int j = 0;j < spaceBetween; j++)
cout << " ";
for (int j = 0; j <= i; j++)
cout << "* ";
cout << endl;
spaceBetween--;
}
spaceBetween = 0;
for (int i = inpVal; i > 0; i--)
{
for (int j = 0; j < spaceBetween; j++)
cout << " ";
for (int j = 0;j < i;j++)
cout << "* ";
cout << endl;
spaceBetween++;
}
}
void square(int inpVal){
for (int i = 1; i <= inpVal; i++)
{
for(int j=1; j <= inpVal; j++){
cout<<"*";
}
cout<<endl;
}
}
void triangle(int inpVal){
for (int i = 0; i <= inpVal; i+=2)
{
for(int j=0; j<=i; j++){
cout<<"*";
}
cout<<endl;
}
}
int main()
{
int menuOption = 0;
int theSize;
cout << "Welcome to pattern maker." << "\n"
<< "Enter the pattern type (1: Square, 2: Triangle, 3: Diamond): ";
cin >> menuOption;
cout << "Enter an odd integer for the size: ";
cin >> theSize;
cout << endl;
switch( menuOption) {
case 1: square(theSize); break;
case 2: triangle(theSize); break;
case 3: diamond(theSize); break;
default: cout << "Invalid option chosen. Exiting..." << endl;
exit( -1);
break;
}
cout<<"Done.";
return 0;
}
|
Just follow the trail of smoke from Brooklyn to L.A.
If you’re familiar with the comedic work of the Lucas Brothers, then you probably already know why it’s perfect that their new Netflix special is being released just two days before the annual stoner holiday of 4/20.
But no matter how high you are while watching the aptly titled On Drugs, there’s a level of comedy in the Lucas Brothers’ stand-up that works regardless of mind-altering substances. As any fan of their animated series Lucas Bros. Moving Co. can attest, L.A.’s latest Brooklyn comedy imports know how to get a laugh out of even the most sober crowds.
Considering that the twins are best known for their animated shorts and a memorable scene in 22 Jump Street , Kenny and Keith’s stand-up may not be exactly what folks expect. Sure, it may not look or feel exactly the same as their previous projects, but their comedy is essentially the ideas and jokes behind everything else they’ve done.
As far as their stand-up goes, the brothers’ special confirms that they’re as synced up onstage as they are when creating their other content. On Drugs flows as smoothly and hilariously as any solo hour on Netflix, which shouldn’t be a surprise considering the twins have been working together creatively for more or less their entire lives. At the same time, teaming up for a live stand-up show is a little different from being able to take turns writing episodes for a TV series.
Going forward, the world should expect to see a lot more of the Lucas Brothers. From movies to full-length animated TV shows, there’s still plenty left on their agenda. For now, the Brooklyn natives are still finding their groove in the L.A. comedy world. That’s not to say they don’t like their new hometown; it’s just not exactly what they’re used to after launching their careers in the Big Apple. |
package ru.contextguide.campaign.textCampaign;
import ru.contextguide.yandexservices.utils.JsonSerializableObject;
import java.util.Objects;
public class StrategyNetworkDefault implements JsonSerializableObject {
private int bidPercent;
private int limitPercent;
/**
* Максимальный процент бюджета, расходуемый на показы в сетях. Значение кратно десяти: 10, 20, ..., 100. Значение по умолчанию — 100.
*/
public int getBidPercent() {
return bidPercent;
}
/**
* Максимальный процент бюджета, расходуемый на показы в сетях. Значение кратно десяти: 10, 20, ..., 100. Значение по умолчанию — 100.
*/
public void setBidPercent(int bidPercent) {
this.bidPercent = bidPercent;
}
/**
* Ограничение ставки в сетях. Задается в процентах от ставки на поиске. Значение кратно десяти: 10, 20, ..., 100. Значение 100 делает ставку в сетях равной цене на поиске. Значение по умолчанию — 100.
*/
public int getLimitPercent() {
return limitPercent;
}
/**
* Ограничение ставки в сетях. Задается в процентах от ставки на поиске. Значение кратно десяти: 10, 20, ..., 100. Значение 100 делает ставку в сетях равной цене на поиске. Значение по умолчанию — 100.
*/
public void setLimitPercent(int limitPercent) {
this.limitPercent = limitPercent;
}
@Override
public String toString() {
return this.toJson();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
StrategyNetworkDefault that = (StrategyNetworkDefault) o;
return bidPercent == that.bidPercent &&
limitPercent == that.limitPercent;
}
@Override
public int hashCode() {
return Objects.hash(bidPercent, limitPercent);
}
}
|
<gh_stars>0
# -*- coding: UTF-8 -*-
from commands.parser import Parser
from const import SPLASH
if __name__ == "__main__":
"""
"""
print(SPLASH)
try:
parser = Parser()
command = parser.getCommand()
args = parser.getArgs()
if not args:
command()
else:
command(args)
except KeyboardInterrupt:
print('Execution aborted by user ! Bye !')
|
Thomas Cooley: Will Big Government Change The Rules Of Commerce?
Cooley: I’m Thomas Cooley. I’m the Dean of the Stern School of Business at New York University. I’m also a professor of economics.
Question: What is the greatest lesson of the financial crisis?
Cooley: How you think about responding to a crisis once you’re in it. So the… the issue is once you’re in a crisis, how do you… how do you fix the system, how do you deal with a crisis without simply creating the seeds of the next crisis. And that requires a little more thoughtful approach than I think we’ve seen in response to the financial crisis over the past year and a half. One of the things that we argue is that some of the things they’ve done have just sown the seeds of further problems. One example, just to take one example, is the large scale intervention of the Fed and the treasury in trying to [prop] up institutions that they deemed to be too big to fail. And that just postpones a problem, it doesn’t solve the problem.
Question: So the government is making the economy worse?
Cooley: As soon as you say that an institution is too big to fail, then that’s a promise to not let it fail. That’s insurance. And they should be required to pay for that insurance. Otherwise, there’s an incentive, actually, to be thought of as being too big to fail or too interconnected to fail. Another example would be the Federal Deposit Insurance Corporation, that’s really… it has always been a fine institution in that. It provides deposit insurance. It eliminates uncertainty about whether or not [deposit] in commercial banks will get their money back. And it does that by charging the banks for the insurance so the people who create the risk pay for the risk. But when that changes, when you shift that risk to the public, which is something that I believe has been happening more recently with the FDIC, then you’re saying, well… you know, we’re not going to charge the institutions that create this risk. For creating it, we’re going to shift that cost to the public. And that just sows the seeds of more problems further on.
Question: How will the financial sector shake out?
Cooley: As we acknowledge that some of these institutions are too big to fail and create too much systemic risk by their size and interconnectedness, then they’re going to be more heavily regulated. And overtime, as they… as they get more heavily regulated, you know, my analogy is they’ll be like the utility companies were in the 1960s and ‘70s, the AT&Ts of the 1960s. Once that… As that pressure grows to regulate them more, they will find in their interest to break off parts of their business. So I actually think we’ll see an evolution towards many more medium-size firms and firms that are focused in particular areas. I think the… sort of the viability of the financial supermarket model is probably in question.
Question: How would you change the U.S. tax code?
Cooley: We’re looking at potentially, really staggering increases in tax rates. And if you look at a person who lives and works in New York, who are looking at higher city taxes, higher state taxes… Many state governments have dug themselves into the big fiscal holes. And then, clearly, people earning over… what in New York might seem like a fairly modest salary are going to be facing higher federal taxes as well. So the tax burden on Americans is going to increase enormously in response to this crisis. And… You know, I think there’re… That one of the things we have to face up to is how we deal with the problems that that’s going to create because that’s going to have… dealing with that is going to have a dampening effect on our economic future. One of the… One of the biggest problems facing state in local governments are their pension obligations. And we’re going to face much higher taxes because of that. So we haven’t begun to… we haven’t even begun to talk about those issues publicly maybe because they’re too scary to talk about. The good thing about flat tax is… And I don’t… I don’t sort of necessarily endorse the simplest version of flat tax. But I do think that the… the good thing about flat taxes is that they tax consumption and not investment behavior. And that’s the part of it that one would like to preserve. I certainly agree that the tax system should be progressive in some way, but a flat tax can be progressive in the right way. And, I think that one of the problems with the existing tax code is it’s so complicated and it taxes a lot of the wrong things.
Question: What are the best avenues for stimulus dollars?
Cooley: I think the size of the stimulus package is so huge it’s hard to… it’s hard to think about how you use it most efficiently. But my perspective as an economists says that the things that we now pay off really well in the long run are investments in education, investments in science and technology education, investments in research that lead to longer term benefits that can pay off. There’s actually a lot of research on the effects of early childhood education. That educating children in their pre-school years, particularly children who are at risk, is enormously helpful. That children can succeed in school unless their brains develop at an early age. And early childhood education has the potential to address that. So those are the kinds of things that at least have the possibility to pay benefits over the long-term that can be realized by the future generations. You’re going to have to pay the enormous bill for this stimulus package.
Dean of the NYU Stern School of Business, Thomas Cooley, on how to navigate an expansive, global regulatory environment. |
/**
* Copyright (c) Facebook, Inc. and its affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <flashlight/flashlight.h>
#include <gflags/gflags.h>
#include <glog/logging.h>
#include <fstream>
#include <iostream>
#include "common/Defines.h"
#include "common/FlashlightUtils.h"
#include "common/Transforms.h"
#include "criterion/criterion.h"
#include "module/module.h"
#include "runtime/runtime.h"
using namespace w2l;
int main(int argc, char** argv) {
google::InitGoogleLogging(argv[0]);
std::string exec(argv[0]);
gflags::SetUsageMessage(
"Usage: \n " + exec + " [model] [dataset] [outputfile]");
if (argc <= 3) {
LOG(FATAL) << gflags::ProgramUsage();
}
std::string reloadpath = argv[1];
std::string dataset = argv[2];
std::string outputfile = argv[3];
std::unordered_map<std::string, std::string> cfg;
std::shared_ptr<fl::Module> network;
std::shared_ptr<SequenceCriterion> criterion;
W2lSerializer::load(reloadpath, cfg, network, criterion);
auto flags = cfg.find(kGflags);
if (flags == cfg.end()) {
LOG(FATAL) << "Invalid config loaded from " << reloadpath;
}
LOG(INFO) << "Reading flags from config file " << reloadpath;
gflags::ReadFlagsFromString(flags->second, gflags::GetArgv0(), true);
LOG(INFO) << "Parsing command line flags";
gflags::ParseCommandLineFlags(&argc, &argv, false);
LOG(INFO) << "Gflags after parsing \n" << serializeGflags("; ");
Dictionary dict(pathsConcat(FLAGS_tokensdir, FLAGS_tokens));
if (FLAGS_eostoken) {
dict.addEntry(kEosToken);
}
LOG(INFO) << "Number of classes (network) = " << dict.indexSize();
LOG(INFO) << "[network] " << network->prettyString();
af::setMemStepSize(FLAGS_memstepsize);
af::setSeed(FLAGS_seed);
DictionaryMap dicts;
dicts.insert({kTargetIdx, dict});
auto lexicon = loadWords(FLAGS_lexicon, FLAGS_maxword);
auto testset = createDataset(dataset, dicts, lexicon, 1, 0, 1);
network->eval();
criterion->eval();
std::ofstream out;
out.open(outputfile);
for (auto& sample : *testset) {
auto sampleId = readSampleIds(sample[kSampleIdx]).front();
auto output = network->forward({fl::input(sample[kInputIdx])}).front();
auto viterbipathArr = criterion->viterbiPath(output.array());
auto viterbipath = afToVector<int>(viterbipathArr);
remapLabels(viterbipath, dict);
if (viterbipath.size() == 0) {
continue;
}
// assume "reflen1" is not a valid word in the lexicon
out << sampleId << " reflen" << std::to_string(viterbipath.size())
<< std::endl;
}
out.close();
return 0;
}
|
Interpretation of tissue artifacts in transbronchial lung biopsy specimens. Proper interpretation of transbronchial biopsies is critical for appropriate patient management. Artifacts in lung tissue acquired during the biopsy procedure or subsequent processing may mimic "true" disease and potentially lead to incorrect diagnoses. In this study the interpretation of various artifacts in transbronchial biopsies will be correlated with the level of pathologist training and experience. Minced 1 to 2 mm fragments of normal lung tissue were processed to produce various tissue artifacts (atelectasis, sponge artifact, or bubble artifact). Seven hematoxylin-eosin-stained slides of various artifacts and three similar-appearing slides from "true" pulmonary diseases (lipoid pneumonia, usual interstitial pneumonia, and foreign body reaction) were evaluated by eight pathologists of different levels of training and experience. Most pathologists were unaware of the various artifacts in transbronchial biopsies and were occasionally able to differentiate them from true disease. Senior faculty frequently identified and correctly diagnosed the true pathology slides; however, they often failed to recognize artifacts. Junior faculty performed the best by correctly identifying the majority of true pathology and dismissed most artifacts. Junior and senior residents described the microscopic changes, but had more difficulty determining the significance of both true pathology and artifacts. Various artifacts in transbronchial biopsy specimens can create diagnostic dilemmas for all pathologists regardless of level of training. The elimination of these artifacts should reduce the possibility of biopsy misinterpretation. |
Dilated cardiomyopathy in monkeys beware of Trypanosoma cruzi infection To the Editor: The recent case of dilative cardiomyopathy in a squirrel monkey reported by Tolwani et al. has a particular resonance for us. We have just reported the results of repeated PCR-based screening for trypanosoma infections in a large squirrel monkey research colony (n = 162). We found that at least 36% of this mixed wild-caught and captivebred colony was positive for Trypanosoma cruzi. A smaller but significant number of the animals ( N 10% of the total number) were found to be parasitemic. T. rangeli was present in < 1% of the animals and we found no evidence of T. evansi, T. minusense or T. simiae. One of the oldest monkeys in this colony (a 1517-yr-old, wild-caught animal from Guyana) has recently died with evidence of diffuse mega-organ disease (heart, colon). This animal was PCR-positive for T. cruzi infection. Although there are other possible causes for dilative cardiomyopathy in primates (as rightly pointed out by Towlani et al.), our data strongly suggest that T. cruzi infection of squirrel monkeys is far from uncommon. Such chronic parasitic infections not only put valuable animals and research animal handlers at risk, but they also have the potential to introduce significant confounders into otherwise well-designed studies. |
<reponame>opatrascoiu/jmf<filename>ocl-core/src/main/java/uk/ac/kent/cs/ocl20/standard/lib/OclState.java<gh_stars>0
package uk.ac.kent.cs.ocl20.standard.lib;
public interface OclState
extends OclAny
{
}
|
Sensing skin for detecting wing deformation with embedded soft strain sensors This work presents the design and fabrication of a flexible wing skin with an array of embedded soft strain sensors for detecting the deformation of an airplane wing. The fabricated skin is composed of soft sensors and wires encapsulated by an elastomeric sheet. The soft strain sensors comprised of conductive elastomeric comb capacitors provide enough sensitivity to detect the mechanical strain changes of the wing and a process was developed to integrate these sensors into the skin. Soft electrical wires made of the same conductive elastomer were used for connecting the sensors to an external read-out circuit that was then connected to a computer for analysis. Experimental results from both single sensors and the wing skin show a clear relationship to wing deflection. |
Police and the province’s chief coroner are investigating the death of a 9-month-old baby in an unregulated home daycare in Markham — the third death of a child in such a facility this year. The baby girl was reportedly not breathing when emergency responders were called to the residence on The Meadows Ave. near Country Glen Rd. Wednesday around 5 p.m.
A York Regional Police cruiser is parked outside of a home on The Meadows Ave. in Markham on Thursday where police are investigating the death of a 9-month-old-baby girl. The infant died on Wednesday in the unlicensed home daycare. ( TIM ALAMENCIAK / TORONTO STAR )
She was rushed to nearby Markham Stouffville Hospital where efforts to revive her were unsuccessful, said Det. James Ward of York Regional Police’s Criminal Investigation Bureau. It is not known how the baby died and there is no evidence the daycare is at fault. A post-mortem examination conducted Thursday found no signs of trauma to the body. The coroner is still waiting for toxicology reports and police continue to investigate the cause of death, Ward said.
Article Continued Below
Homicide detectives investigate all deaths of children under age 5. A spokesperson for Education Minister Liz Sandals said a preliminary review of ministry records found no complaints against the home. “I can confirm that the Ministry of Education is conducting an investigation under the Day Nurseries Act into this case, as is the standard process in such circumstances, and that staff were on-site this morning,” said Lauren Ramey. In July, 2-year-old Eva Ravikovitch died in an illegal home daycare in Vaughan where at least 35 children were registered for care. Earlier that month, 2-year-old Alison Tucker died in a North York condo where she had been receiving care for the past year.
The deaths have prompted calls for more government oversight of unlicensed home daycares. Currently, anyone can operate an unregulated home daycare as long as the facility has no more than five children under age 10, in addition to the operator’s own kids. The home where the baby died this week is operated by Andrea Cleator, who has a certificate as an early childhood assistant from Sheridan College, according to her Facebook profile.
Article Continued Below
The shutters were drawn at Cleator’s three-storey house in the quiet suburb known as Cornell as police forensic officials investigated throughout the day Friday. Neighbour Lynne Vessio, whose 13-year-old son is friends with Cleator’s son, said the boys are often at the Cleator house in the evenings and on weekends. “They’re good people, loving people and I would trust her with my child,” Vessio said Friday. She was aware a daycare was operating out of the house but didn’t know how many kids regularly stayed there. She said it was “not a large amount.” “I’m shocked at all of it . . . I’m sure that she didn’t do anything wrong,” said Vessio. “There has to be a logical reason for it.” Neighbours said there are often kids around the house and that the couple who live there have two adolescent children of their own. Education Minister Liz Sandals expressed condolences to the family Friday. “I learned yesterday of the tragic death of a child who had been receiving home child care in York Region,” she said in a statement. “My heart goes out to the family and loved ones of the child at this devastating and unimaginable time.” Ministry officials are working with police and the coroner’s office as their investigation continues, she said. Sandals’ ministry is reviewing provincial legislation governing licensed daycare, to better reflect changes in the sector as 4- and 5-year-olds move to full-day kindergarten. As a result of last summer’s daycare deaths in two Toronto-area unregulated homes, the ministry is also considering changes for unlicensed care. Regulated home daycare operators are permitted a maximum of five children under age 10, including their own. Among those children, they can only have two under age 2 and three under age 3. They must be affiliated with a licensed home daycare agency that visits a minimum of every three months to provide support and ensure the premises comply with strict health and safety measures. Most agencies require their caregivers to undergo police checks and have first aid and CPR training. Sandals has said she will be introducing changes to the Day Nurseries Act this fall, which, if approved, would expand the authority of the ministry to address complaints related to unlicensed child-care providers. Since last summer’s deaths, the ministry has established a dedicated enforcement team to investigate complaints about non-compliant unlicensed providers. It has also appointed a new assistant deputy minister responsible for unlicensed child care. The Ontario Coalition for Better Child Care says provincial laws should be changed to ensure all home daycare providers are overseen by licensed agencies. “One death is too many,” said coalition spokesperson Andrea Calver. “But now we have three. We need to make sure that something like this doesn’t happen again. It’s not enough to take people’s word that they are providing adequate care.” NDP Children and Youth Critic Monique Taylor urged the government to act. Wednesday’s “tragic death of a 9-month-old child in an unregulated daycare in Markham is another sad reminder of why the province needs to do more to ensure our children’s safety in home-based daycares in Ontario,” she said in a statement.
Read more about: |
GREENVILLE, N.C. – The Kansas City Mavericks’ losing streak reached three games Thursday night at the Bon Secours Wellness Arena as the Greenville Swamp Rabbits claimed a 5-3 victory on the strength of Kamerin Nault’s hat trick.
While the loss was disappointing, the winning goal – by Brendan Harms at 6:53 of the third period – really frustrated coach John-Scott Dickson.
“It looked to me like it was icing and should not have been called a goal,” Dickson said by phone after the Mavericks fell to 32-25-3-2. “Our guy clearly got there first, but the linesman’s explanation was that their guy was there first. I don’t want to sound like I’m whining – look at it. It was icing.
The Mavericks continue their East Coast road trip at 6:05 tonight as they face the South Carolina Stingrays in North Charleston, S.C. The Mavericks, who lost to the Stingrays 4-2 Tuesday, then travel to Georgia to face the Atlanta Gladiators at 6:05 p.m. Saturday.
Mavericks forward Greg Betzold had three assists, giving him 14 points (six goals, eight assists) in his last seven games. The Mavericks posted a season-high 48 shots on goal to Greenville’s 38.
Captain Rocco Carzo finished with a goal and an assist. His shorthanded goal at 10:59 of the second period put the Mavericks ahead 3-2.
Dickson’s next win will be No. 100 in his three years as head coach of the Mavericks.
Jordan Klimek scored at 12:24 of the first period to tie it 1-1, and Darian Dziurzynski scored a power play goal less than two minutes later for a 2-1 lead for the Mavericks.
Adam Larkin scored for Greenville with 51 seconds left in the first two tie it. After Carzo’s shorthanded goal, Kamerin Nault scored the second of his three goals just 1:15 later to tie it 3-3. Nault added an insurance goal at 16:05 of the third period to seal it. |
import {
Get,
Put,
Req,
Post,
Body,
Query,
Param,
Delete,
UseGuards,
Controller,
} from '@nestjs/common';
import { Request } from 'express';
import { User } from './user.interface';
import { ApiTags } from '@nestjs/swagger';
import { UserService } from './user.service';
import { RequireAuth } from '@guards/auth.guard';
import { ListUserInput } from './dto/list-users.dto';
import { CreateUserInput } from './dto/create-user.dto';
import { UpdateUserInput } from './dto/update-user.dto';
import { StatusCodes } from '@modules/_base/base.interface';
import { DetailInput } from '@modules/_base/dto/detail-input.dto';
import { ListResponse } from '@modules/_base/dto/list-response.dto';
import { BaseResponse } from '@modules/_base/dto/base-response.dto';
import { BooleanResponse } from '@modules/_base/dto/bool-response.dto';
@ApiTags('users')
@Controller('users')
export class UserController {
constructor(private readonly userService: UserService) {}
/**
* Get users
*
* @param {ListUserInput} body
* @returns {Promise<ListResponse<User>>}
*/
@Get()
@UseGuards(RequireAuth)
async getAllUsers(
@Query() query: ListUserInput,
): Promise<ListResponse<User>> {
const data = await this.userService.get(query);
return {
status: StatusCodes.SUCCESS,
...data,
};
}
/**
* Create user
*
* @param {CreateUserInput} body
* @returns {Promise<BaseResponse<User>>}
*/
@Post()
@UseGuards(RequireAuth)
async createUser(
@Body() body: CreateUserInput,
@Req() req: Request & { user: User },
): Promise<BaseResponse<User>> {
const data = await this.userService.create(body, req.user);
return {
status: StatusCodes.SUCCESS,
data,
};
}
/**
* Get one user
*
* @param {DetailUserInput} body
* @returns {Promise<BaseResponse<User>>}
*/
@Get('/:id')
@UseGuards(RequireAuth)
async getOneUser(@Param() param: DetailInput): Promise<BaseResponse<User>> {
const data = await this.userService.getOne(param);
return {
status: StatusCodes.SUCCESS,
data,
};
}
/**
* Update user
*
* @param {DetailUserInput} param
* @param {UpdateUserInput} body
* @returns {Promise<BaseResponse<User>>}
*/
@Put('/:id')
@UseGuards(RequireAuth)
async updateEmployee(
@Param() param: DetailInput,
@Body() body: UpdateUserInput,
@Req() req: Request & { user: User },
): Promise<BaseResponse<User>> {
const data = await this.userService.update(param, body, req.user);
return {
status: StatusCodes.SUCCESS,
data,
};
}
/**
* Delete user
*
* @param {DetailUserInput} param
* @returns {Promise<BooleanResponse>}
*/
@Delete('/:id')
@UseGuards(RequireAuth)
async deleteUser(
@Param() param: DetailInput,
@Req() req: Request & { user: User },
): Promise<BooleanResponse> {
const data = await this.userService.delete(param, req.user);
return {
status: StatusCodes.SUCCESS,
data,
};
}
}
|
Oxygen release from low and normal P50 Hb vesicles in transiently occluded arterioles of the hamster window model. A phospholipid vesicle encapsulating Hb has been developed as a transfusion alternative. One characteristic of HbV is that the O affinity of Hb can be easily regulated by the amount of the coencapsulated allosteric effector pyridoxal 5'-phosphate. In this study, we prepared two HbVs with different Ps (8 and 29 mmHg, termed HbV and HbV, respectively) and observed their O-releasing behavior from an occluded arteriole in a hamster skinfold window model. Conscious hamsters received HbV or HbV at a dose rate of 7 ml/kg. In the microscopic view, an arteriole (diameter: 53.0 +/- 6.6 mum) was occluded transcutaneously by a glass pipette on a manipulator, and the reduction of the intra-arteriolar Po 100 mum down from the occlusion was measured by the phosphorescence quenching of preinfused Pd-porphyrin. The baseline arteriolar Po (50-52 mmHg) decreased to about 5 mmHg for all the groups. Occlusion after HbV infusion showed a slightly slower rate of Po reduction compared with that after HbV infusion. The arteriolar O content was calculated at each reducing Po in combination with the O equilibrium curves of HbVs, and it was clarified that HbV showed a significantly slower rate of O release compared with HbV and was a primary source of O (maximum fraction, 0.55) overwhelming red blood cells when the Po was reduced (e.g., <10 mmHg) despite a small dosage of HbV. This result supports the possible utilization of Hb-based O carriers with lower P for oxygenation of ischemic tissues. |
<gh_stars>1-10
/*
x86defs.c
diStorm3 - Powerful disassembler for X86/AMD64
http://ragestorm.net/distorm/
distorm at gmail dot com
Copyright (C) 2003-2012 <NAME>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
*/
#include "x86defs.h"
#include "instructions.h"
#include "../include/mnemonics.h"
/*
* The first field of an _InstInfo is the flagsInex, which goes into FlagsTable in insts.c
* Since this table is auto generated in disOps, we have to make sure that the first 5 entries
* are reserved for our use here.
* The following defined inst-infos have to be synced manually every time you change insts.c.
*/
_InstInfo II_arpl = {0 /* INST_MODRM_REQUIRED */, OT_REG16, OT_RM16, ISC_INTEGER << 3, I_ARPL};
/*
* MOVSXD:
* This is the worst defined instruction ever. It has so many variations.
* I decided after a third review, to make it like MOVSXD RAX, EAX when there IS a REX.W.
* Otherwise it will be MOVSXD EAX, EAX, which really zero extends to RAX.
* Completely ignoring DB 0x66, which is possible by the docs, BTW.
*/
_InstInfo II_movsxd = {1 /* INST_MODRM_REQUIRED | INST_PRE_REX | INST_64BITS */, OT_RM32, OT_REG32_64, ISC_INTEGER << 3, I_MOVSXD};
_InstInfo II_nop = {2 /* INST_FLAGS_NONE */, OT_NONE, OT_NONE, ISC_INTEGER << 3, I_NOP};
_InstInfo II_pause = {3 /* INST_FLAGS_NONE */, OT_NONE, OT_NONE, ISC_INTEGER << 3, I_PAUSE};
_InstInfo II_3dnow = {4 /* INST_32BITS | INST_MODRM_REQUIRED | INST_3DNOW_FETCH */, OT_MM64, OT_MM, ISC_3DNOW << 3, I_UNDEFINED};
|
package sc.fiji.howto.overlays;
/**
* How to add an overlay to an image
*/
public class AddOverlayToImage {
//TODO
}
|
CLOSE Republicans wanted to drill in an-oil rich area of an Alaskan refuge for decades, and the political stars are perfectly aligned for that to happen. Video provided by Newsy Newslook
Buy Photo The Ruby Mountains in Elko County in May 2017. (Photo: Andy Barron/RGJ)Buy Photo
When Lisa Eriksen wants a break from town life she heads to the Ruby Mountains near Elko, a range that’s been called the Swiss Alps of Nevada.
Eriksen, who has a botany degree, relishes the range as an alpine oasis where she can find plants such as the meadow rue, a flowering plant that can’t survive in the desert that surrounds the Rubies.
“It is kind of a delicate little thing you find in the shade,” she said.
Lately, though, Eriksen fears the fragile beauty of the range is under attack by a proposal to issue leases for oil and gas drilling.
“To see oil rigs and such in the Rubies, that would crush me,” said Eriksen, of Elko. “It is my sanctuary.”
The lease request, which is in its earliest stage and under review by the U.S. Forest Service, covers 52,500 acres. It is the result of an expression of interest in oil and gas leases from a requester identified in documents as Ethan Murray, who did not respond to multiple phone calls and emails seeking an interview.
The land at the northern end is just west of Lamoille Canyon, an area known for scenic, glaciated terrain that sees an estimated 23,000 visitors annually who mostly arrive via Lamoille Canyon Road, a National Scenic Byway.
Further south the proposal seeks leases on both sides of Harrison Pass Road, a seasonal route that cuts through the heart of the range and offers views of the Ruby Valley and access to the Ruby Lake National Wildlife Refuge. It also calls for leases on land that includes creeks that provide habitat for the threatened Lahontan Cutthroat Trout, hunt units for the largest deer herd in Nevada and habitat for Greater Sage Grouse.
The sheer size of the proposal and its location in a range that’s beloved for so many recreational uses has generated immense interest.
A Forest Service request for public input on the plan generated more than 7,500 comments. Only three comments supported offering the leases, said Susan Elliott, minerals and geology program manager for the Humboldt Toiyabe National Forest in Elko.
“For people who have been in the Elko area years and years and years this is home, they love the mountains,” said Fermina Stevens, a member of the Te-Moak Tribe of Western Shoshone Indians.
“That is where our medicines are, that is where our ancestors are buried,” Stevens said. “It is everything to us.”
‘It smells like money’
The Ruby Mountains proposal comes as federal energy policy is undergoing whiplash while agencies transition from the administration of former Democratic President Barack Obama to current Republican President Donald Trump.
Under Obama, the government took action to incentivize the production of renewable energy such as wind and solar on public land. The Obama administration sought to reduce the amount of greenhouse gases from fossil fuels, the primary cause of global warming.
Trump, who has publicly mocked the documented effects of global warming, has shown more willingness to champion fossil fuel development. The administration has already approved oil drilling in the Arctic and public land drilling proponents credit Trump for newfound enthusiasm for exploration on public land.
The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive. — Donald J. Trump (@realDonaldTrump) November 6, 2012
“The good news is the leases are now available and you get them cheap,” Alan Chamberlain, a Las Vegas-based geologist who says Nevada has “trillions of barrels” of untapped oil underground, said during an energy conference in November. “Thank you, President Trump.”
In addition to the expression of interest for leases in the Ruby Mountains, the Bureau of Land Management has other large proposals on the table in Nevada.
The agency is considering one plan to offer leases on about 67,000 acres in Elko, Eureka and White Pine Counties in March.
Additionally, the BLM has a lease sale scheduled for Dec. 12 that includes as many as 389,000 acres from Alamo in the south to the Little Smoky Valley near Eureka in the north.
“I love the smell of oil, it smells like money.” Alan Chamberlain, Nevada oil drilling advocate
Opponents of that sale say the BLM hasn’t adequately studied the potential harm to groundwater nor has the agency consulted with the U.S. Fish and Wildlife Service regarding endangered species that could be at risk from drilling.
Under Trump, critics say, agencies appear to be opening up more land with fewer restrictions.
“The actual process of acquiring a lease is exactly the same as it was under Obama,” said Patrick Donnelly, Nevada state director for the Center for Biological Diversity. “It's the amount of land being made available, and the amount of restrictions being placed on how that land can be developed.”
The changes, “will make it much easier to drill, with fewer conditions, less mitigation, and fewer hassles for the oil companies,” Donnelly said.
That’s music to the ears of pro-drilling advocates,
Chamberlain’s pro-drilling comments on Nov. 9 at the America First Energy Conference in Houston, Texas were practically gleeful about the prospects for oil extraction under Trump.
The conference was organized by the Heartland Institute, a private, non-profit education organization that disputes the documented connection between fossil fuel consumption and global warming and downplays climate risk communities face.
A video of Chamberlain’s presentation posted on YouTube shows an enthusiastic call for more oil and gas development throughout eastern Nevada. Chamberlain, who did not return calls for comment, said a dramatic increase in Nevada drilling would be lucrative for investors.
“I can hardly wait,” Chamberlain said, later adding, “I love the smell of oil, it smells like money.”
Nevada’s little-known oil history
While Chamberlain is bullish on Nevada’s oil future, the history of oil and gas development in the state is modest.
The first well on record in Nevada came in 1907 and was an 1,800-foot dry hole in Washoe County, just southwest of Reno.
From there, drilling was sporadic and records were sparse until the 1950s.
In 1954, Shell Oil drilled the first commercially producing wells in Railroad Valley in Nye County. The valley saw several discoveries in the latter half of the 20th century and in 1986 one well produced 4,300 barrels per day, making it the most productive on-shore well in the U.S., according to the Nevada Bureau of Mines and Geology. From 1953 through 1999, Nevada produced 46 million barrels, with peak production of 4 million barrels in 1990.
Since then, however, production plunged steadily and was below 279,000 barrels in 2016.
In contrast, producers on the Bakken oil shale in North Dakota have extracted as much in two months as Nevada has produced in more than 50 years.
In recent years oil interests have shifted their Nevada focus to Elko County. In 2012 Noble Energy announced plans to explore on 350,000 acres, including an area around Jiggs in the valley west of the Ruby Range.
The company invested millions of dollars and drilled four wells, two of which produced oil.
“They basically demonstrated you can produce oil out of the Elko shale,” said William Ehni, an oil industry geologist in Carson City.
Oil prices, however, fell to the point Noble felt the investment wasn’t worth the effort and left Nevada. The Elko wells are inactive.
“It is sad that they walked away from it,” Ehni said.
Ruby Mountains proposal called longshot, at best
While Ehni and other geologists say it’s likely there’s more oil to be found in the Elko formation they say it’s a much different story in the Ruby Mountains.
“My professional opinion is there is zero oil and gas, hydrocarbon potential in that area,” said Chris Henry, a research geologist for the Nevada Bureau of Mines and Geology.
Unlike the shale beneath the valleys where Noble found oil, the rocks that make up the Ruby Range are much older and metamorphosed millions of years ago and several miles beneath the surface of the Earth.
At that depth, the temperature is so hot fossil fuels would have cooked away. Additionally, even if there were source rocks with fossil fuels there’s little to no evidence of underlying geology that could trap them in a way they could be tapped.
“Going out there in the Elko basin is a great idea, out in the valley, not up in the mountains,” Ehni said.
Just the idea of starting the process to acquire oil and gas leases in the Ruby Mountains threatens to do more harm than good for the oil and gas industry, Ehni said.
Not only are the prospects for finding oil incredibly low, the notion of drilling in a part of Nevada that’s popular for natural beauty and outdoor recreation is a political and public relations mistake, he said.
“It would be like filing in a national park somewhere,” Ehni said.
The controversial nature of the Ruby proposal even has some questioning whether the federal government makes it too easy for speculators to file so-called “expressions of interest” documents.
“If they could find a way to tap into it with horizontal drilling from somewhere else of course I would be in support of it.” Rex Steninger, Elko County Commissioner
Under federal law, anyone can identify public land and file an expression of interest in land to be included in a future oil and gas lease sale.
The BLM will look at the land and determine the jurisdiction and whether or not oil and gas leasing would be an allowable use. If the land is under Forest Service jurisdiction, as with the Ruby Mountains proposal, the BLM will ask the Forest Service to evaluate the request.
Through the review process, the agency will determine how much, if any, of the land should be offered up in a future lease sale. Available land can then go up for lease to the high bidder. The BLM would not offer the Ruby leases without consent from the Forest Service.
If the agencies authorize leases and the lease holder wants to disturb the ground to explore or drill for oil or gas he or she would need to go through another permitting process.
Unlike the process for developing geothermal resources, which requires fees, the expression of interest process which kick-starts an oil and gas lease requires no money and little documentation up front from the person nominating the land.
“Anyone can come in and nominate acreage and it doesn’t cost them anything,” said Richard Perry, administrator of the Nevada Division of Minerals. “That seems like it is a bit wide open.”
Elko County Commissioner Rex Steninger said he thinks existing rules provide adequate protection for the environmental and recreation values of the land.
The Elko County Commission submitted one of the only three letters in favor of proceeding with the leasing review process in the Ruby Mountains.
“The national policy now coming from the Trump administration is to open up areas for exploration,” Steninger said. “I’m pretty confident we have enough safeguards in place nothing will be disturbed or harmed.”
Buy Photo The Ruby Mountains in Nevada on May 19, 2017. (Photo: Andy Barron/RGJ)
Steninger said he's not worried about the mountains because "geologically there is no oil potential there."
And if there were oil, Steninger said, he's confident oil companies could remove it without harming the environment.
"I would never support any disturbance of the Ruby Mountains," Steninger said. "If they could find a way to tap into it with horizontal drilling from somewhere else of course I would be in support of it."
The overwhelming majority of people who have commented so far on the Ruby Mountains proposal disagree.
In addition to everyday residents, conservation organizations such as Trout Unlimited, Backcountry Hunters and Anglers and the Wilderness Society oppose the plan.
In comments to the Forest Service the Nevada Department of Wildlife, which regulates fishing and hunting in the state, expressed "great concern" because the lease request covers, "some of the richest fish and wildlife resources the state of Nevada has to offer."
Nearly every commenter urged the Forest Service, which is expected to make a decision on the expression of interest sometime in the spring, to reject the idea.
Justin French, 45, of Spring Creek said he grew up in Elko before going to college in Montana and working in the coal industry in Wyoming.
He’s since moved back to Nevada and hunts deer with his wife, Stephanie, on land he said was included in the proposal.
French, who now works for a solar water pumping company, said he witnessed changes in Wyoming he doesn’t want to see in the Ruby Mountains.
“I got to see development first hand,” French said. “I saw sage grouse that I hunted, antelope I hunted in that part of the world just disappear. That country changed."
Read or Share this story: https://www.rgj.com/story/news/2017/12/05/nevadas-ruby-mountains-targeted-oil-leasing-and-locals-dont-like/916350001/ |
Displacement-constrained vibration-attenuation controller design for linear structure systems with parameter uncertainties Two aspects, occupants' comfort and structural safety, need to be considered in the presence of the control problems of linear structure systems. In this paper, the two aspects are described by two controlled objectives. They are movements of the floors to the ground and the maximum relative displacements between adjacent floors. To achieve the two objectives, the method with a combination of H |
Review of workbody activities under the strategy theme basin * The strategy theme Basin deals with all the basinlevel environment aspects that impact agriculture water management, such as climate, floods, droughts, seawater, etc. and includes the work of six working groups (WGs) and one task team. This review examines the strategy theme Basin and consists of the Mandate, Activities and Achievements arising from the Bali meeting, and Appraisal and Recommendations for the Theme. Main general observations and recommendations are as follows: Generally, WGs under the strategy theme Basin are functioning quite well and productively. Overall, the attendance of members is good, but in some cases this is limited. WGs should promote the exchange of knowledge with other agriculture water management professionals by publishing summaries and outcomes in ICID NEWS. WGs should clearly identify their output in a work plan in accordance with the Action Plan on the Road Map to ICID Vision 2030. WGs' productivity and necessity should be evaluated carefully and when mandates and objectives are completed a final report should be written and then they should move on. Efforts to attract young professionals should be continued and increased. All WG chairs and theme leaders should be more conscious of the purpose and the set procedures initially. |
Implementation of ultrasound time-domain cross-correlation blood velocity estimators The implementation of real-time blood velocity estimators using time-domain cross-correlation is investigated. The basic algorithm for stationary echo canceling, cross-correlation estimation and subsequent velocity estimation is presented. Sampled data acquired at rates of approximately 20 MHz are used in the algorithm, imposing a heavy burden on the signal processing hardware. The algorithm is analyzed with regard to the high sampling frequency, and a method for performing real-time high-speed-movement and cross-correlation is suggested. Implementation schemes based on using the sign of the data as well as the full precision are proposed. From an analysis of the process it is concluded that the sign data implementation can attain real-time processing. This can also be obtained for the full precision data, but at the expense of using a number of dedicated signal processing chips. Both implementations suggested can handle the estimation of velocities for A-lines acquired from multiple directions.<<ETX>> |
package com.uniftec.sportscheduleapp.controller;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import androidx.appcompat.app.AppCompatActivity;
import com.uniftec.sportscheduleapp.R;
import com.uniftec.sportscheduleapp.entities.Endereco;
import com.uniftec.sportscheduleapp.entities.Quadra;
import com.uniftec.sportscheduleapp.services.EnderecoServico;
import com.uniftec.sportscheduleapp.utils.Alerts;
import com.uniftec.sportscheduleapp.utils.SingletonUsuario;
import com.uniftec.sportscheduleapp.utils.Utils;
import java.util.List;
public class CadastroQuadra1 extends AppCompatActivity {
static final String MAPS_API_KEY = "<KEY>";
Endereco endereco = new Endereco();
ProgressDialog load;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cad_quadra_1);
Button btnProximo = (Button) findViewById(R.id.btnProximo);
EditText txtCep = (EditText) findViewById(R.id.txtCep);
List<EditText> listRequiredFields = Utils.determineMandatoryFields(txtCep);
txtCep.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if (!txtCep.getText().toString().trim().equals("")) {
GetJson gt = new GetJson();
gt.execute();
} else {
Alerts.toastRequiredPostService(CadastroQuadra1.this);
}
}
}
});
btnProximo.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (Utils.validateRequiredFields(listRequiredFields)) {
Intent telaQuadra2 = new Intent(CadastroQuadra1.this, CadastroQuadra2.class);
startActivityForResult(telaQuadra2, 3);
} else {
Alerts.toastRequiredFields(CadastroQuadra1.this);
}
}
});
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
EditText txtNome = (EditText) findViewById(R.id.txtNome);
EditText txtNumero = (EditText) findViewById(R.id.txtNumero);
EditText txtDetalhes = (EditText) findViewById(R.id.txtObs);
if (requestCode == 3) {
if (resultCode == 1 || resultCode == 99) {
Quadra quadra = (Quadra) data.getSerializableExtra("quadra");
quadra.setNome(txtNome.getText().toString());
quadra.setDetalhes(txtDetalhes.getText().toString());
endereco.setNumero(txtNumero.getText().toString());
quadra.setEndereco(endereco);
if(resultCode ==1) {
Intent resultado = new Intent();
resultado.putExtra("quadra", quadra);
setResult(1, resultado);
finish();
}
}
}
super.onActivityResult(requestCode, resultCode, data);
}
public void populateAddressFields(Endereco endereco) {
EditText txtCep = (EditText) findViewById(R.id.txtCep);
EditText txtRua = (EditText) findViewById(R.id.txtRua);
EditText txtBairro = (EditText) findViewById(R.id.txtBairro);
EditText txtCidade = (EditText) findViewById(R.id.txtCidade);
EditText txtEstado = (EditText) findViewById(R.id.txtEstado);
if (endereco == null) {
txtCep.setText("");
txtRua.setText("");
txtBairro.setText("");
txtCidade.setText("");
txtEstado.setText("");
} else {
txtRua.setText(endereco.getLogradouro());
txtBairro.setText(endereco.getBairro());
txtCidade.setText(endereco.getLocalidade());
txtEstado.setText(endereco.getUf());
}
}
private class GetJson extends AsyncTask<Void, Void, Endereco> {
@Override
protected void onPreExecute() {
load = ProgressDialog.show(CadastroQuadra1.this,
"Aguarde", "Localizando endereço através do CEP informado...");
}
@Override
protected Endereco doInBackground(Void... voids) {
//URL VIA CEP: https://viacep.com.br/ws/{cep}]/json/
//URL GOOGLE MAPS: https://maps.googleapis.com/maps/api/geocode/json?address={cep}&key={chaveapi}
EditText txtCep = (EditText) findViewById(R.id.txtCep);
String cep = txtCep.getText().toString().trim().replaceAll("[^0-9]", "");
if (cep.length() < 8) {
return null;
} else {
return EnderecoServico.getEnderecoCoordenadas("https://viacep.com.br/ws/" + cep + "/json", "https://maps.googleapis.com/maps/api/geocode/json?address=" + cep + "&key=" + MAPS_API_KEY);
}
}
@Override
protected void onPostExecute(Endereco enderecoAux) {
populateAddressFields(enderecoAux);
endereco = enderecoAux;
load.dismiss();
}
}
}
|
One logical law that is easy to accept is the law of non-contradiction. This law can be expressed by the propositional formula ¬(p^¬p). Breaking the sentence down a little makes it easier to understand. p^¬p means that p is both true and false, which is a contradiction. So, negating this statement means that there can be no contradictions (hence, the name of the law). In other words, the law of non-contradiction tells us that a statement cannot be both true and false at the same time. This law is relatively uncontroversial, though there have been those who believe that it may fail in certain special cases. However, it does lead us to a logical principle that has historically been more controversial: the law of excluded middle.
The law of excluded middle can be expressed by the propositional formula p_¬p. It means that a statement is either true or false. Think of it as claiming that there is no middle ground between being true and being false. Every statement has to be one or the other. That’s why it’s called the law of excluded middle, because it excludes a middle ground between truth and falsity. So while the law of non-contradiction tells us that no statement can be both true and false, the law of excluded middle tells us that they must all be one or the other. Now, we can get to this law by considering what it means for the law of non-contradiction to be true. For the law of noncontradiction to be true, ¬(p^¬p) must be true. This means p^¬p must be false. Now, we must refer back the truth table definition for a conjunction. What does it take for p ^ ¬p to be false? It means that at least one of the conjuncts must be false. So, either p is false, or ¬p is false. Well, if p is false, then ¬p must be true. And if ¬p is false, then p must be true. So we are left with the disjunction p _ ¬p, which is exactly the formulation I gave of the law of excluded middle. So we have just derived the law of excluded middle from the law of non-contradiction.
by considering what it means for the conjunction to fail. The rule that lets us do this is known as De Morgan’s rule, after Augustus De Morgan. Formally speaking, it tells us that statements of the following two forms are equivalent: ¬(p^q) and ¬p_¬q. If you substitute ¬p for q in the first formula, you will have the law of non-contradiction. So you might want to try doing the derivation yourself. You will, however, need the rule that tells us that p is equivalent to ¬¬p. The point of this exercise, however, was to show that it is possible to derive the law of excluded middle from the law of non-contradiction. However, it is also possible to convince yourself of the truth of the law of excluded middle without the law of non-contradiction.
p _ ¬p is always true. As a point of terminology, a statement that is always true, irrespective of the truth values of its components, is called a tautology. p _ ¬p is a tautology, since no matter what the truth value of p is, p_¬p is always true. We can see this illustrated in the truth table below.
You can try constructing a similar truth table to show that the law of non-contradiction is also a tautology. Its truth table is a bit more complicated, though. However, since the law of excluded middle is a tautology, it should hold no matter what the truth value of p is. In fact, it should be true no matter what statement we decide p should represent. So the law of excluded middle tells us that every statement whatsoever must be either true or false. At first, this might not seem like a very problematic claim. But before getting too comfortable with this idea, we might want to consider Bertrand Russell’s famous example: “The present King of France is bald.” Since the law of excluded middle tells us that every statement is either true or false, the sentence “The present King of France is bald” must be either true or false. Which is it?
Since there is no present King of France, it would seem quite unusual to claim that this sentence is true. But if we accept the law of excluded middle, this leaves us only one option - namely, to claim that it is false. Now, at this point, we might choose to reject the law of excluded middle altogether, or contend that it simply does not hold in some cases. This is an interesting option to consider, but then we might need to consider why the method of constructing truth tables tells us that the law of excluded middle holds, if it actually doesn’t. We would also have to consider why it is derivable from the principle of non-contradiction. After all, this sentence doesn’t pose a problem for the law of non-contradiction, since it’s not both true and false. So we’ll ignore this option for now.
Returning to the problem at hand, we must now consider the question of what it means for the sentence “The present King of France is bald” to be false. Perhaps it means “The present King of France is not bald.” But that would imply that there is a present King of France, and he is not bald. This is not a conclusion we want to reach. Russell, in his 1905 paper “On Denoting” presented his own solution to this problem, which comes in the form of a theory of definite descriptions. Under this theory, we can think of there being a hidden conjunctive structure in the sentence “The present King of France is bald.” What the sentence really says is that there is a present King of France, and he is bald. So the fact that there is no present King of France implies that this sentence is false, and we have the solution we need.
Russell’s solution clearly suggests that we can’t just extract the logical structure of a sentence from its grammatical structure. We have to take other things into account. If you’re interested in issues about the relationship between logic and language, you might want to take a class in philosophy of language. The other essay in this section, entitled “Logic and Natural Language”, covers some other issues in this area.
One method of proof that comes naturally from the law of excluded middle is a proof by contradiction, or reductio ad absurdum. In a proof by contradiction, we assume the negation of a statement and proceed to prove that the assumption leads us to a contradiction. A reductio ad absurdum sometimes shows that the assumption leads to an absurd conclusion, which is not necessarily a contradiction. In both cases, the unsatisfactory result of negating our statement leads us to conclude that our statement is, in fact, true. How does this follow from the law of excluded middle? The law of excluded middle tells us that there are only two possibilities with respect to a statement p. Either p is true, or ¬p is true. In showing that the assumption of ¬p leads us to a contradictory conclusion, we eliminate the possibility that ¬p is true. So we are then forced to conclude that p is true, since the law of excluded middle is supposed to hold for any statement whatsoever.
Now, I’ve been a bit flippant in talking about statements. Statements can be about a lot of different things. The above discussion illustrated a problem with statements about things that don’t actually exist. I’m sure most people would agree that the designation “the present King of France” refers to something that doesn’t exist. But what about situations where it’s not so certain? One of the main metaphysical questions in the philosophy of mathematics is the question of whether or not mathematical objects actually exist. Think about the question of whether numbers exist. If they do exist, then what are they? After all, they’re not concrete things that we can reach out and touch. But if they don’t exist, then what’s going on in math?
Metaphysical worries have motivated certain people to argue that proofs by contradiction are not legitimate proofs in mathematics. Proponents of intuitionism and constructivism in mathematics place a significant emphasis on the construction of mathematical objects. One way to characterize this position is that in order to show that a mathematical object exists, it is necessary to construct it, or at the very least, provide a method for its construction. This is their answer to the metaphysical question. Suppose we had a mathematical proof in which we assumed an object did not exist, and proved that our assumption lead us to a contradiction. For an intuitionist or a constructivist, this proof would not be a sufficient demonstration that the object does exist. A sufficient demonstration would have to involve the construction of the object.
Even if questions about existence get too complicated, we can still ask the question “What mathematical objects can we legitimately talk about?” The intuitionist answer is that we can talk about those mathematical objects which we know can be constructed.
Simply speaking, intuitionistic logic is logic without the law of excluded middle. I have outlined some small part of the motivation behind developing such a system, but more details can be found in the work of L.E.J. Brouwer and Arend Heyting. |
The present invention relates to a process for preparing a polymer composition containing a physiologically active substance. More particularly, the present invention relates to a process for preparing a polymer composition containing a physiologically active substance and having the property of releasing the active substance at the controlled rate.
In one aspect, the present invention relates to a process for preparing a polymer composition containing a physiologically active substance and having the property of eluting the active substance at the rate controlled by pH.
In another aspect, the present invention relates to a process for preparing a polymer composition comprising a spherical polymer matrix of 50 to 5,000.mu. in size containing a physiologically active substance and having the property of releasing the active substance at the controlled rate.
Various compounds having physiological activities have been broadly utilized in various fields including medical science, agriculture and engineering, and these compounds have proved to be indispensable in industry and living in many ways. Many physiologically active substances, without distinction of inorganic substance and organic substance, or low molecular compound and high molecular compound, have been known and even now are being developed. However, in the utilization of these active substances, some common defects and inconveniences have been found. One of them is a fact that in general these physiologically active substances are effective only within a certain range of concentration in an environment in which they act, but they are not only ineffective in an concentration below such appropriate range but also often bring about harmful side reactions or side effects when they exceed the concentration range. However, on the other hand, in order to keep such organic substances continuously within the appropriate concentration range, they must be continuously replenished at an appropriate rate because they are consumed or spent simultaneously with fulfilling their function. Although there is a method of supplying or replenishing the desired substance continuously at an appropriate rate by using an apparatus or machine, the most convenient method which can be carried out in any environment and in any place is such a method that sufficient amount of the desired substance is previously contained in a certain supporting carrier so that the substance is naturally released from the carrier at the desired rate depending on the structure and function or carrier. Second, many physiologically active substances are easy to suffer a change such as deterioration and decomposition caused by various factors in an environment in which they are maintained or act, before their function is fulflled. Therefore, it is necessary to maintain these active substances in a protected stable state until their desired function is displayed and, in this sense, it is desirable for efficiently utilizing the active substances to stabilize them by maintaining in an appropriate supporting carrier.
Mainly, for the reason as described above, such a method as containing or adsorbing various physiologically active substances in or onto an appropriate supporting carrier for use has recently come to be studied extensively. A high polymer is one of the most desirable materials as such supporting carrier. The reason is that the high polymer is a high molecular weight compound in which the desired physiologically active substance can be easily caught and maintained within the molecular structure of the compound, that the releasing rate of the desired substance can be easily controlled by adjusting the structure and shape of the polymer by means of the polymer chemical technique, and that in many cases the high polymer is physiologically neutral as a carrier so that it has no physiological effects on environment.
Therefore, the problem is now how to include or support the desired substance in a high polymer carrier in such a state that the substance can be easily released at the desired rate as described above with the original properties being not harmed.
Heretofore, high polymer materials used as a pharmaceutical additive are generally a polymer such as, for example polyvinyl alcohol, polyvinyl pyrrolidone, polyvinyl acetate, methyl cellulose, methacrylate-methacrylic acid-methyl methacrylate copolymer, methylacrylate-methacrylic acid copolymer and styrene-maleic acid copolymer. In case of mixing these polymers and medicine to form a tablet, etc., a large amount of organic solvent is required for dissolving the polymer. Such organic solvent includes chloroform-ethanol, methanol-ethylacetate, cyclohexane, acetone, ethanol, water, etc. However, these organic solvents other than ethanol and water will remain as a trace within the matrix even if the degassing treatment is apparently sufficiently carried out. In case of continuous administration of medicine over a long period, the side effect due to the cumulative build-up thereof becomes a problem. Alternatively, in case of preparing preparations which release gradually an effective ingredient contained therein (hereinafter referred to "a controlled releasing agent") in a form of tablet, film, particle, powder etc. by mixing a polymerizable monomer, a catalyst for polymerization of monomer and medicine, the following defects are noted:
(1) The reaction temperature must be raised to near 80.degree. C. for polymerizing the monomer, and consequently the distribution state of medicine in the interior of matrix becomes not uniform and the medicine is deteriorated with high temperature; PA0 (2) The catalyst remaining in the interior of the matrix cannot be thoroughly removed; and PA0 (3) The cost is high because it takes a few days to complete the reaction. PA0 (1) Since many physiologically active substances have a physiological activity owing to their peculiar molecular structure, it is not desirable to expose them to such a state as being contacted with other chemicals at comparatively elevated temperatures. In this regard, it is considered to be advantageous to contain them in a high polymer carrier at a lower temperature as far as possible; PA0 (2) In order to adjust the structure of carrier so that the desired substance is contained in the carrier sufficiently uniformly and released therefrom at an appropriate rate, the method of mixing a high polymer carrier in a monomeric state before polymerization with the desired substance and polymerizing the mixture to contain the desired substance into the carrier is excellent; and PA0 (3) It is necessary to impart the polymer such as internal porous structure or a structure having broad surface area that the desired substance can be appropriately released, and it is advantageous to design a structure and shape of polymer starting from the monomer. PA0 (1) A polymerizable monomer and a physiologically active substance and/or a non-polymerizable compound (i.e. crystallizable compound) which is insoluble or soluble in the monomer and freezes at low temperatures to be crystallized or is a crystal at room temperature are mixed to prepare a solution or suspension; PA0 (2) A polymerizable monomer and a physiologically active substance are mixed, and the mixture is added to a medium insoluble in the polymerizable monomer with or without adding an appropriate medium to prepare a microsphere comprising the polymerizable monomer and the physiological active substance, which is then separated from the medium; and PA0 (3) A polymerizable monomer is cast to a film and a physiologically active substance or a polymerizable monomer containing it and an insoluble medium are flowed on the surface thereof to prepare a monomer film having dispersed physiologically active substance on the surface.
For example, in a case, it takes 3 days to prepare a controlled releasing agent by polymerizing 2-hydroxyethyl methacrylate and ethylene glycol dimethacrylate containing norethandrolene in the presence of t-butylperoctanoate as a catalyst under a nitrogen atmosphere at 80.degree. C. (U.S. Ser. No. 766,840 filed Oct. 11, 1968). In another example, a controlled releasing agent is prepared by polymerizing a polymerizable monomer in the presence of catalyst, impregnating the polymer obtained with a solution containing a medicine to permeate it into the interior of the matrix of polymer and drying. However, in the agent so obtained the catalyst is not removed from the matrix and it is difficult to contain a large amount of medicine per unit volume of matrix depending on the hydrophilic nature of matrix. Further, in another case a controlled releasing agent is prepared by polymerising a mixture of Cab-O-Sil EH5(RTM) and 2-hydroxyethyl methacrylate, N-vinyl-2-pyrrolidone, methyl methacrylate, divinyl benzene and t-butylperoctanoate under a nitrogen atmosphere at 54.degree. C. for 12 hours and immersing the polymer matrix obtained into a NaCl aqueous solution containing methantheline bromide to impregnate methantheline bromide in the interior of matrix (U.S. Ser. Nos. 39,668; 395,492; 395,691; 395,695 all were filed July 6, 1982). However, this process comprises two steps two steps of polymerization and impregnation of medicine, and so it is expensive.
As a result of studying on these points the present inventors have come to the following conclusion:
The present invention has been accomplished on the basis of the principle and facts as described above. |
John Harbaugh: Ravens interested in Colin Kaepernick
Colin Kaepernick’s next NFL home could be with a Harbaugh.
Ravens head coach John Harbaugh told reporters today that he’s been in contact with the former 49ers quarterback throughout this summer. He said they’ve had “great conversations” and termed Kaepernick a “great guy” who he initially got to know through his brother, former 49ers head coach Jim Harbaugh.
Harbaugh said Kaepernick is being discussed as a roster addition as Baltimore quarterback Joe Flacco is sidelined for the start of training camp with a back injury. The Ravens other quarterbacks are Ryan Mallett and Dustin Vaughan.
FILE - In this Sunday, Jan. 1, 2017, file photo, San Francisco 49ers quarterback Colin Kaepernick (7) warms up before an NFL football game against the Seattle Seahawks in Santa Clara, Calif. Talent or not, Kaepernick won't be setting foot on any NFL field very soon. (AP Photo/Tony Avelar, File) less FILE - In this Sunday, Jan. 1, 2017, file photo, San Francisco 49ers quarterback Colin Kaepernick (7) warms up before an NFL football game against the Seattle Seahawks in Santa Clara, Calif. Talent or not, ... more Photo: Tony Avelar, Associated Press Photo: Tony Avelar, Associated Press Image 1 of / 15 Caption Close John Harbaugh: Ravens interested in Colin Kaepernick 1 / 15 Back to Gallery
Harbaugh indicated the decision to sign with the Ravens could be up to Kaepernick: “Depends on Colin, first of all. What's his passion? What's his priority? What’s he wanna do?” Harbaugh said, via MMQB.com.
The Ravens are just the second team to publicly express interest in Kaepernick, who visited the Seahawks in May. Seattle eventually signed Austin Davis. The modest interest in Kaepernick comes after a season in which he threw 16 touchdowns and four interceptions, while becoming a national story for kneeling during the national anthem. Harbaugh noted he shared Kaepernick’s interest in history and politics and said they’ve had some enjoyable debates this summer.
Kaepernick, of course, had his best seasons with the 49ers under Jim Harbaugh and offensive coordinator Greg Roman, who is an assistant with the Ravens.
Twitter: @Eric_Branch |
A framework to integrate MFiX with Trilinos for high fidelity fluidized bed computations A framework is developed to integrate MFiX, an open source multiphase flow solver, with state-of-the-art pre-conditioners and linear solver packages in Trilinos via MFIX, Fortran, C and CPP wrappers. The computations are carried out to simulate flow in a fluidized bed problem with MFiX as well as the integrated solver, MFiX-Trilinos. BiConjugate gradient stabilized method as well as GMRES is used to solve the linear system of equations. The linear system of equations for the flow variable are solved using the built-in solvers in MFiX. On the other hand, MFiX-Trilinos uses the solvers from AztecOO package in Trilinos. The performance of the integrated solver is tested on various computer architectures for variety of problem sizes. The flow from the solver with the integrated framework and MFiX are in good agreement. However, the solver in MFiX-Trilinos is, approximately 30% faster compared to the same solver in MFiX. |
<gh_stars>10-100
/**
* @author ooooo
* @date 2021/3/18 17:59
*/
#ifndef CPP_0092__SOLUTION1_H_
#define CPP_0092__SOLUTION1_H_
#include <iostream>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode() : val(0), next(nullptr) {}
ListNode(int x) : val(x), next(nullptr) {}
ListNode(int x, ListNode *next) : val(x), next(next) {}
};
class Solution {
public:
ListNode *reverse(ListNode *head, int cnt) {
ListNode *cur = head, *prev = nullptr;
while (cnt > 0) {
ListNode *next = cur->next;
cur->next = prev;
prev = cur;
cur = next;
cnt--;
}
head->next = cur;
return prev;
}
ListNode *reverseBetween(ListNode *head, int left, int right) {
ListNode *dummyHead = new ListNode(-1);
dummyHead->next = head;
int cnt = 1;
ListNode *cur = dummyHead;
while (cnt < left) {
cur = cur->next;
cnt++;
}
ListNode *prev = cur;
prev->next = reverse(prev->next, right - left + 1);
return dummyHead->next;
}
};
#endif //CPP_0092__SOLUTION1_H_
|
package ru.vyarus.spock.jupiter.interceptor;
import org.junit.jupiter.api.extension.AfterAllCallback;
import org.junit.jupiter.api.extension.AfterEachCallback;
import org.junit.jupiter.api.extension.AfterTestExecutionCallback;
import org.junit.jupiter.api.extension.BeforeAllCallback;
import org.junit.jupiter.api.extension.BeforeEachCallback;
import org.junit.jupiter.api.extension.BeforeTestExecutionCallback;
import org.junit.jupiter.api.extension.Extension;
import org.junit.jupiter.api.extension.TestExecutionExceptionHandler;
import org.junit.jupiter.api.extension.TestInstancePostProcessor;
import org.junit.jupiter.api.extension.TestInstancePreDestroyCallback;
import org.junit.jupiter.api.function.Executable;
import org.junit.platform.commons.logging.Logger;
import org.junit.platform.commons.logging.LoggerFactory;
import org.junit.platform.commons.util.ExceptionUtils;
import org.junit.platform.commons.util.UnrecoverableExceptions;
import org.junit.platform.engine.support.hierarchical.ThrowableCollector;
import ru.vyarus.spock.jupiter.engine.context.AbstractContext;
import ru.vyarus.spock.jupiter.engine.context.ClassContext;
import ru.vyarus.spock.jupiter.engine.context.MethodContext;
import java.util.List;
import java.util.stream.Collectors;
/**
* Executes registered extensions.
* <p>
* Mostly a copy of {@code ClassBasedTestDescriptor} and {@code TestMethodTestDescriptor} logic.
* <p>
* Note that in jupiter all such logic is aggregated in descriptors because they have to do all the work of methods
* execution. But spock do most of it already and that's why descriptors concept wasn't used at all. Essentially,
* this class contains all required code (plus {@link ru.vyarus.spock.jupiter.engine.ExtensionUtils}).
* <p>
* Contexts are more equal to jupiter analog, but in context of spock much less context types is required (and
* overall amount of possible execution scenarios is less than in jupiter because there is no templates and
* nested tests).
* <p>
* {@link ThrowableCollector} concept is very limited comparing to jupiter: there it used for everything, because
* descriptors control all flow, but here, collectors used only for exceptions detection in extensions
* (and to make callbacks processing logic more equal to the original source). Also, that's why exception handler
* extensions are not supported (it is possible, but not so important).
*
* @author <NAME>
* @since 28.12.2021
*/
public class JunitApiExecutor {
private final Logger logger = LoggerFactory.getLogger(JunitApiExecutor.class);
// org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeBeforeAllCallbacks
public void beforeAll(final ClassContext context) {
for (BeforeAllCallback callback : getExtensions(context, BeforeAllCallback.class)) {
context.getCollector().execute(() -> callback.beforeAll(context));
if (context.getCollector().isNotEmpty()) {
break;
}
}
context.getCollector().assertEmpty();
}
// org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors
public void instancePostProcessors(final ClassContext context, final Object instance) {
context.getCollector().execute(() ->
getExtensions(context, TestInstancePostProcessor.class).forEach(
extension -> executeAndMaskThrowable(() ->
extension.postProcessTestInstance(instance, context))));
context.getCollector().assertEmpty();
}
// org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeBeforeEachCallbacks
public void beforeEach(final MethodContext context) {
final ThrowableCollector collector = context.getCollector();
for (BeforeEachCallback callback : getExtensions(context, BeforeEachCallback.class)) {
collector.execute(() -> callback.beforeEach(context));
if (collector.isNotEmpty()) {
break;
}
}
collector.assertEmpty();
}
// org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeBeforeTestExecutionCallbacks()
public void beforeTestExecution(final MethodContext context) {
final ThrowableCollector collector = context.getCollector();
for (BeforeTestExecutionCallback callback : getExtensions(context, BeforeTestExecutionCallback.class)) {
collector.execute(() -> callback.beforeTestExecution(context));
if (collector.isNotEmpty()) {
break;
}
}
collector.assertEmpty();
}
// org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeAfterTestExecutionCallbacks()
public void afterTestExecution(final MethodContext context) {
final ThrowableCollector collector = context.getCollector();
getReversedExtensions(context, AfterTestExecutionCallback.class).forEach(
callback -> collector.execute(() -> callback.afterTestExecution(context)));
collector.assertEmpty();
}
// org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeAfterEachCallbacks
public void afterEach(final MethodContext context) {
final ThrowableCollector collector = context.getCollector();
getReversedExtensions(context, AfterEachCallback.class).forEach(
callback -> collector.execute(() -> callback.afterEach(context)));
collector.assertEmpty();
}
// org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestInstancePreDestroyCallbacks
public void instancePreDestroy(final MethodContext context) {
final ThrowableCollector collector = context.getCollector();
getReversedExtensions(context, TestInstancePreDestroyCallback.class).forEach(callback ->
collector.execute(() -> callback.preDestroyTestInstance(context)));
collector.assertEmpty();
}
// org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeAfterAllCallbacks
public void afterAll(final ClassContext context) {
final ThrowableCollector collector = context.getCollector();
getReversedExtensions(context, AfterAllCallback.class).forEach(
extension -> collector.execute(() -> extension.afterAll(context)));
collector.assertEmpty();
}
// org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestExecutionExceptionHandlers
public void handleTestException(final MethodContext context, final Throwable error) {
processTestException(context, getReversedExtensions(context, TestExecutionExceptionHandler.class), error);
}
private <T extends Extension> List<T> getReversedExtensions(final AbstractContext context, final Class<T> type) {
return getExtensions(context, type, true);
}
private <T extends Extension> List<T> getExtensions(final AbstractContext context, final Class<T> type) {
return getExtensions(context, type, false);
}
private <T extends Extension> List<T> getExtensions(final AbstractContext context,
final Class<T> type,
final boolean reversed) {
final List<T> exts = reversed ? context.getRegistry().getReversedExtensions(type)
: context.getRegistry().getExtensions(type);
if (!exts.isEmpty()) {
logger.debug(() -> "Junit " + context.getSpec().getReflection().getSimpleName() + "."
+ type.getSimpleName() + ": "
+ exts.stream()
.map(t -> t.getClass().getSimpleName())
.collect(Collectors.joining(", ")));
}
return exts;
}
private void executeAndMaskThrowable(final Executable executable) {
try {
executable.execute();
} catch (Throwable throwable) {
ExceptionUtils.throwAsUncheckedException(throwable);
}
}
// org.junit.jupiter.engine.descriptor.JupiterTestDescriptor.invokeExecutionExceptionHandlers
private void processTestException(final MethodContext context,
final List<TestExecutionExceptionHandler> handlers,
final Throwable error) {
// No handlers left?
if (handlers.isEmpty()) {
ExceptionUtils.throwAsUncheckedException(error);
}
try {
// Invoke next available handler
handlers.remove(0).handleTestExecutionException(context, error);
} catch (Throwable handledThrowable) {
UnrecoverableExceptions.rethrowIfUnrecoverable(handledThrowable);
processTestException(context, handlers, handledThrowable);
}
}
}
|
Feasibility and Acceptability of a Text Messaging Program for Smoking Cessation in Israel Text messaging programs on mobile phones have been shown to promote smoking cessation. This study investigated whether a text-messaging program for smoking cessation, adapted from QuitNowTXT, is feasible in Israel and acceptable to Israeli smokers. Participants (N = 38) were given a baseline assessment, enrolled in the adapted text messaging program, and followed-up with at 2 weeks and 4 weeks after their quit date. The authors used an intent-to-treat analysis and found that 23.7% of participants reported having quit smoking at the 4-week follow-up. Participants sent an average of 12.9 text replies during the study period, and the majority reported reading most or all of the texts. However, 34.2% of participants had unsubscribed by the 4-week follow-up. Moderate levels of satisfaction were reported; more than half agreed that they would recommend the program. Suggestions for improvement included adding advice by an expert counselor, website support, and increased customization. Results indicate that a text messaging smoking cessation program developed by modifying the content of QuitNowTXT is feasible and could be acceptable to smokers in Israel. The experience adapting and pilot testing the program can serve as a model for using QuitNowTXT to develop and implement such programs in other countries. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.