summaryrefslogtreecommitdiffstats
path: root/application/Bootstrap.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/Bootstrap.php')
-rw-r--r--application/Bootstrap.php22
1 files changed, 1 insertions, 21 deletions
diff --git a/application/Bootstrap.php b/application/Bootstrap.php
index f0fe7d3..f06c85b 100644
--- a/application/Bootstrap.php
+++ b/application/Bootstrap.php
@@ -26,24 +26,4 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
->setSeparator(' :: ');
}
}
-function print_a(){
- $numargs = func_num_args();
- if($numargs>1){
- $out = '';
- ob_start();
- echo "<div style='background-color:#FFCC33;border:1px solid black;margin:3px;padding:5px;'>";
- for($a=0;$a<$numargs;$a++)
- print_a(func_get_arg($a));
- echo "</div>";
- $out .= ob_get_contents();
- ob_end_clean();
- echo $out;
- }else{
- echo "<pre style='background-color:#FFDF80;border:1px solid #000;margin:3px;padding:5px;'>";
- $a = func_get_arg(0);
- $a = (is_bool($a))?(($a)?'true':'false'):$a;
- print_r($a);
- echo "</pre>";
- }
-}
-
+include 'Functions.php'; \ No newline at end of file