Charly Crembil
|
| Posted: 03/28/2002, 10:03 AM |
|
Hi,
I'm building myself a CC Flowchart, just to see the order of the events.
I've found every event position in the space/time But I can't find where
goes the code I've inserted into Form's Validation event, and Module's
Custom Connection.
All the tests where using PHP4 code.
Who has the answer?
BTW, has anyone made this flowchart before and want to share it? 
Regards,
Carlos.
|
|
|
 |
CodeCharge Support
|
| Posted: 03/28/2002, 11:54 AM |
|
The validation event is placed before the Before insert event:
//-------------------------------
// Members Check Event begin
//Validation event code
// Members Check Event end
//-------------------------------
The custom connection event is placed at the beginning of the Common.php
file
and replaces the default connection code.
// CustomConnection begin
//Custom connection event code
// CustomConnection end
CodeCharge Support
"Charly Crembil" <nouser@hotmail.com> wrote in message
news:a7vltj$ir$1@news.codecharge.com...
> Hi,
> I'm building myself a CC Flowchart, just to see the order of the events.
> I've found every event position in the space/time But I can't find
where
> goes the code I've inserted into Form's Validation event, and Module's
> Custom Connection.
>
> All the tests where using PHP4 code.
>
> Who has the answer?
> BTW, has anyone made this flowchart before and want to share it? 
>
> Regards,
> Carlos.
>
>
>
|
|
|
 |
Charly Crembil
|
| Posted: 03/28/2002, 1:16 PM |
|
Thanks.
I've generated code again, and look for the code where you told. But I only
found the Custom Connection event (in the common.php file). The Validation
event is not generated in the page's php code.
I tried also putting code in the Before Insert event, in the Validaton
event, and in the After Insert event. Before and After appears ok, but
Validation not. And also I looked for the "Check Event" tags, and they don't
appear too.
Sounds strange, isn't it?
Regards,
Carlos
"CodeCharge Support" <Walkerp@codecharge.com> escribió en el mensaje
news:a7vsde$cjp$1@news.codecharge.com...
> The validation event is placed before the Before insert event:
>
> //-------------------------------
> // Members Check Event begin
> //Validation event code
> // Members Check Event end
> //-------------------------------
>
> The custom connection event is placed at the beginning of the Common.php
> file
> and replaces the default connection code.
>
> // CustomConnection begin
> //Custom connection event code
> // CustomConnection end
>
> CodeCharge Support
>
>
>
> "Charly Crembil" <nouser@hotmail.com> wrote in message
>news:a7vltj$ir$1@news.codecharge.com...
> > Hi,
> > I'm building myself a CC Flowchart, just to see the order of the events.
> > I've found every event position in the space/time But I can't find
> where
> > goes the code I've inserted into Form's Validation event, and Module's
> > Custom Connection.
> >
> > All the tests where using PHP4 code.
> >
> > Who has the answer?
> > BTW, has anyone made this flowchart before and want to share it? 
> >
> > Regards,
> > Carlos.
> >
> >
> >
>
>
|
|
|
 |
|