A dropdown was added in the SelfService configuration, this dropdown let you set if the trigger seted in the self service is gonna be executed ONE time or every time that cron is executed. Some validations where added in the cron_single.php file to save the data in the new table 'APP_TIMEOUT_ACTION_EXECUTED' when the Execution is set in ONCE. If the app_UID is find in this table the trigger will not be executed, if is not find the trigger will be executed.
24 lines
661 B
PHP
24 lines
661 B
PHP
<?php
|
|
|
|
// include base peer class
|
|
require_once 'classes/model/om/BaseAppTimeoutActionExecutedPeer.php';
|
|
|
|
// include object class
|
|
include_once 'classes/model/AppTimeoutActionExecuted.php';
|
|
|
|
|
|
/**
|
|
* Skeleton subclass for performing query and update operations on the 'APP_TIMEOUT_ACTION_EXECUTED' table.
|
|
*
|
|
*
|
|
*
|
|
* You should add additional methods to this class to meet the
|
|
* application requirements. This class will only be generated as
|
|
* long as it does not already exist in the output directory.
|
|
*
|
|
* @package classes.model
|
|
*/
|
|
class AppTimeoutActionExecutedPeer extends BaseAppTimeoutActionExecutedPeer {
|
|
|
|
} // AppTimeoutActionExecutedPeer
|