1  <?php
 2  /* Copyright (c) 2012, Geert Bergman (geert@scrivo.nl)
 3   * All rights reserved.
 4   *
 5   * Redistribution and use in source and binary forms, with or without
 6   * modification, are permitted provided that the following conditions are met:
 7   *
 8   * 1. Redistributions of source code must retain the above copyright notice,
 9   *    this list of conditions and the following disclaimer.
10   * 2. Redistributions in binary form must reproduce the above copyright notice,
11   *    this list of conditions and the following disclaimer in the documentation
12   *    and/or other materials provided with the distribution.
13   * 3. Neither the name of "Scrivo" nor the names of its contributors may be
14   *    used to endorse or promote products derived from this software without
15   *    specific prior written permission.
16   *
17   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27   * POSSIBILITY OF SUCH DAMAGE.
28   *
29   * $Id: StatusCodes.php 629 2013-05-20 23:02:09Z geert $
30   */
31  
32  /**
33   * Implementation of the \Scrivo\StatusCodes interface.
34   */
35  
36  namespace Scrivo;
37  
38  /**
39   * The StatusCodes interface just defines a number of status codes that
40   * can be returned from Scrivo exceptions.
41   */
42  interface StatusCodes {
43  
44      /**
45       * Constant to indicate that a choosen user code is too short.
46       */
47      const USER_CODE_TOO_SHORT 1;
48  
49      /**
50       * Constant to indicate that a user code is already in use.
51       */
52      const USER_CODE_IN_USE 2;
53  
54      /**
55       * Constant to indicate deletion of system users.
56       */
57      const CANNOT_DELETE_SYSTEM_USERS 21;
58  
59      /**
60       * Constant to indicate creation of duplicate labels.
61       */
62      const LABEL_NOT_UNIQUE 22;
63  
64      /*
65      "E00001" => "Een usercode moet uit minimaal drie karakters bestaan",
66      "E00002" => "Usercode is al in gebruik",
67      "E00003" => "Selectie is mislukt, er werd 1 record verwacht, maar er zijn er geen of meer gevonden",
68      "E00004" => "Een pagina kan niet onder zichzelf worden verplaatst",
69      "E00005" => "De pagina kan niet worden verwijderd omdat er nog lijst pagina's onder vallen",
70      "E00006" => "De pagina kan niet worden verwijderd omdat er nog subpagina's onder vallen",
71      "E00007" => "De pagina kan niet worden verwijderd omdat deze is gemarkeerd als 'alleen lezen'",
72      "E00008" => "De pagina kan niet worden gewijzigd omdat deze is gemarkeerd  als 'alleen lezen'",
73      "E00009" => "De pagina kan niet worden gewijzigd/verwijderd, er is geen geldige bovenliggend pagina",
74      "E00010" => "De pagina kan niet worden gewijzigd/verwijderd, de bovenliggend pagina is gemarkeerd als 'alleen lezen'",
75      "E00011" => "De pagina kan niet worden verplaatst, de bovenliggend pagina is gemarkeerd als 'alleen lezen'",
76      "E00012" => "Kan bestand niet hernoemen, de naam is al in gebruik",
77      "E00013" => "De map kan niet worden verwijderd omdat deze niet leeg is",
78      "E00014" => "Een map kan niet onder zichzelf worden gehangen",
79      "E00015" => "De map(pen) of bestand(en) kunnen niet naar dezelfde map worden verplaats",
80      "E00016" => "Het bestand is hernoemd omdat de naam niet uniek was",
81      "E00017" => "De pagina kan niet worden verwijderd omdat deze een speciale functie heeft in de menustructuur",
82      "E00018" => "Dit type pagina kan niet onder de gekozen pagina worden geplaatst",
83      "E00019" => "Niet geinitialiseerd staging item",
84      "E00020" => "Het item kan niet worden verwijderd omdat er nog item's onder vallen",
85      "E00021" => "Systeemgebruikers kunnen niet worden verwijderd",
86      "E00022" => "Label niet uniek",
87  */
88  
89  }
90  

Documentation generated by phpDocumentor 2.0.0a12 and ScrivoDocumentor on August 29, 2013