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

  • AlphaController
  • CacheManager
  • Create
  • CreateArticle
  • Detail
  • Edit
  • EditArticle
  • EditDEnum
  • EditTags
  • GenSecureQueryStrings
  • Install
  • ListAll
  • ListBusinessObjects
  • ListDEnums
  • ListSequences
  • Login
  • Logout
  • PreviewArticle
  • Search
  • TagManager
  • ViewArticle
  • ViewArticleFile
  • ViewArticlePDF
  • ViewArticlePrint
  • ViewArticleTitle
  • ViewAttachment
  • ViewExcel
  • ViewFeed
  • ViewImage
  • ViewLog
  • ViewMetrics
  • ViewRecordSelector
  • ViewTestResults

Interfaces

  • AlphaControllerInterface
  • Overview
  • Package
  • Class
  • Tree
  • Deprecated
  1: <?php
  2: 
  3: // include the config file
  4: if(!isset($config)) {
  5:     require_once '../util/AlphaConfig.inc';
  6:     $config = AlphaConfig::getInstance();
  7: 
  8:     require_once $config->get('app.root').'alpha/util/AlphaAutoLoader.inc';
  9: }
 10: 
 11: /**
 12:  *
 13:  * Controller used to display the software metrics for the application
 14:  *
 15:  * @package alpha::controller
 16:  * @since 1.0
 17:  * @author John Collins <dev@alphaframework.org>
 18:  * @version $Id: ViewMetrics.php 1654 2013-03-08 17:13:14Z alphadevx $
 19:  * @license http://www.opensource.org/licenses/bsd-license.php The BSD License
 20:  * @copyright Copyright (c) 2013, John Collins (founder of Alpha Framework).
 21:  * All rights reserved.
 22:  *
 23:  * <pre>
 24:  * Redistribution and use in source and binary forms, with or
 25:  * without modification, are permitted provided that the
 26:  * following conditions are met:
 27:  *
 28:  * * Redistributions of source code must retain the above
 29:  *   copyright notice, this list of conditions and the
 30:  *   following disclaimer.
 31:  * * Redistributions in binary form must reproduce the above
 32:  *   copyright notice, this list of conditions and the
 33:  *   following disclaimer in the documentation and/or other
 34:  *   materials provided with the distribution.
 35:  * * Neither the name of the Alpha Framework nor the names
 36:  *   of its contributors may be used to endorse or promote
 37:  *   products derived from this software without specific
 38:  *   prior written permission.
 39:  *
 40:  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
 41:  * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 42:  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 43:  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 44:  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 45:  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 46:  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 47:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 48:  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 49:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 50:  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 51:  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 52:  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 53:  * </pre>
 54:  *
 55:  */
 56: class ViewMetrics extends AlphaController implements AlphaControllerInterface{
 57:     /**
 58:      * Trace logger
 59:      *
 60:      * @var Logger
 61:      * @since 1.0
 62:      */
 63:     private static $logger = null;
 64: 
 65:     /**
 66:      * The constructor
 67:      *
 68:      * @since 1.0
 69:      */
 70:     public function __construct() {
 71:         self::$logger = new Logger('ViewMetrics');
 72:         self::$logger->debug('>>__construct()');
 73: 
 74:         // ensure that the super class constructor is called, indicating the rights group
 75:         parent::__construct('Admin');
 76: 
 77:         $this->setTitle('Application Metrics');
 78: 
 79:         self::$logger->debug('<<__construct');
 80:     }
 81: 
 82:     /**
 83:      * Handle GET requests
 84:      *
 85:      * @param array $params
 86:      * @since 1.0
 87:      */
 88:     public function doGET($params) {
 89:         self::$logger->debug('>>doGET($params=['.var_export($params, true).'])');
 90: 
 91:         global $config;
 92: 
 93:         echo AlphaView::displayPageHead($this);
 94: 
 95:         $dir = $config->get('app.root');
 96: 
 97:         $metrics = new AlphaMetrics($dir);
 98:         $metrics->calculateLOC();
 99:         echo $metrics->resultsToHTML();
100: 
101:         echo AlphaView::displayPageFoot($this);
102: 
103:         self::$logger->debug('<<doGET');
104:     }
105: 
106:     /**
107:      * Handle POST requests
108:      *
109:      * @param array $params
110:      * @since 1.0
111:      */
112:     public function doPOST($params) {
113:         self::$logger->debug('>>doPOST($params=['.var_export($params, true).'])');
114: 
115:         self::$logger->debug('<<doPOST');
116:     }
117: 
118:     /**
119:      * Renders the JQuery code to do zebra-style table colouring
120:      *
121:      * @return string
122:      * @since 1.0
123:      */
124:     public function during_displayPageHead_callback() {
125:         global $config;
126: 
127:         $html = '<script type="text/javascript">'.
128:             '$(document).ready(function(){'.
129:             '   $(".list_view tr:even").addClass("zebraAlt");'.
130:             '   $(".list_view tr").mouseover(function(){'.
131:             '       $(this).addClass("zebraOver");'.
132:             '   });'.
133:             '   $(".list_view tr").mouseout(function(){'.
134:             '       $(this).removeClass("zebraOver");'.
135:             '   });'.
136:             '});</script>';
137: 
138:         return $html;
139:     }
140: 
141:     /**
142:      * Use this callback to inject in the admin menu template fragment
143:      *
144:      * @since 1.2
145:      */
146:     public function after_displayPageHead_callback() {
147:         $menu = AlphaView::loadTemplateFragment('html', 'adminmenu.phtml', array());
148: 
149:         return $menu;
150:     }
151: }
152: 
153: // now build the new controller if this file is called directly
154: if ('ViewMetrics.php' == basename($_SERVER['PHP_SELF'])) {
155:     $controller = new ViewMetrics();
156: 
157:     if(!empty($_POST)) {
158:         $controller->doPOST($_POST);
159:     }else{
160:         $controller->doGET($_GET);
161:     }
162: }
163: 
164: ?>
Alpha Framework ${alpha.version.new} API Documentation API documentation generated by ApiGen 2.8.0