This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Sealed class can not be created directly | |
| */ | |
| class Seal | |
| { | |
| private function __construct() | |
| { | |
| // private ctor prevents from direct creation of instance | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DELIMITER ;; | |
| DROP PROCEDURE IF EXISTS fix_ace_order; | |
| CREATE PROCEDURE fix_ace_order() | |
| BEGIN | |
| DECLARE done INT DEFAULT FALSE; | |
| DECLARE acl_id INT; | |
| DECLARE acl_cursor CURSOR FOR SELECT o.id | |
| FROM acl_object_identities o | |
| LEFT JOIN acl_entries e ON ( | |
| e.class_id = o.class_id AND |
OlderNewer