Overview

Packages

  • alpha::controller
  • alpha::controller::front
  • alpha::exceptions
  • alpha::model
  • alpha::model::types
  • alpha::tasks
  • alpha::tests
  • alpha::util
  • alpha::util::cache
  • alpha::util::codehighlight
  • alpha::util::convertors
  • alpha::util::feeds
  • alpha::util::filters
  • alpha::util::graphs
  • alpha::util::helpers
  • alpha::util::metrics
  • alpha::view
  • alpha::view::renderers
  • alpha::view::widgets

Classes

  • AlphaDAO
  • AlphaDAOProviderFactory
  • AlphaDAOProviderMySQL
  • AlphaDAOProviderSQLite
  • ArticleCommentObject
  • ArticleObject
  • ArticleVoteObject
  • BadRequestObject
  • BlacklistedClientObject
  • BlacklistedIPObject
  • PersonObject
  • RightsObject
  • TagObject

Interfaces

  • AlphaDAOProviderInterface
  • Overview
  • Package
  • Class
  • Tree
  • Deprecated
 1: <?php
 2: 
 3: /**
 4:  *
 5:  * A HTTP client that is blacklisted from accessing this application
 6:  * 
 7:  * @package alpha::model
 8:  * @since 1.0
 9:  * @author John Collins <dev@alphaframework.org>
10:  * @version $Id: BlacklistedClientObject.inc 1524 2012-05-10 12:58:19Z alphadev $
11:  * @license http://www.opensource.org/licenses/bsd-license.php The BSD License
12:  * @copyright Copyright (c) 2012, John Collins (founder of Alpha Framework).  
13:  * All rights reserved.
14:  * 
15:  * <pre>
16:  * Redistribution and use in source and binary forms, with or 
17:  * without modification, are permitted provided that the 
18:  * following conditions are met:
19:  * 
20:  * * Redistributions of source code must retain the above 
21:  *   copyright notice, this list of conditions and the 
22:  *   following disclaimer.
23:  * * Redistributions in binary form must reproduce the above 
24:  *   copyright notice, this list of conditions and the 
25:  *   following disclaimer in the documentation and/or other 
26:  *   materials provided with the distribution.
27:  * * Neither the name of the Alpha Framework nor the names 
28:  *   of its contributors may be used to endorse or promote 
29:  *   products derived from this software without specific 
30:  *   prior written permission.
31:  *   
32:  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 
33:  * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
34:  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
35:  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
36:  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 
37:  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
38:  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
39:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
40:  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
41:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
42:  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 
43:  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
44:  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45:  * </pre>
46:  *  
47:  */
48: class BlacklistedClientObject extends AlphaDAO {
49:     /**
50:      * The (unique) client string this is blocked
51:      * 
52:      * @var String
53:      * @since 1.0
54:      */
55:     protected $client;
56:     
57:     /**
58:      * An array of data display labels for the class properties
59:      * 
60:      * @var array
61:      * @since 1.0
62:      */
63:     protected $dataLabels = array('OID'=>'Blacklisted Client ID#','client'=>'Client string');
64:     
65:     /**
66:      * The name of the database table for the class
67:      * 
68:      * @var string
69:      * @since 1.0
70:      */
71:     const TABLE_NAME = 'BlacklistedClient';
72:     
73:     /**
74:      * Trace logger
75:      * 
76:      * @var Logger
77:      * @since 1.1
78:      */
79:     private static $logger = null;
80:     
81:     /**
82:      * Constructor for the class
83:      * 
84:      * @since 1.0
85:      */
86:     public function __construct() {
87:         self::$logger = new Logger('BlacklistedClientObject');
88:         
89:         // ensure to call the parent constructor
90:         parent::__construct();
91:         
92:         $this->client = new String();
93:         $this->markUnique('client');
94:     }
95: }
96: 
97: ?>
98: 
Alpha Framework ${alpha.version.new} API Documentation API documentation generated by ApiGen 2.8.0