]> _ Git - physioassist.git/commitdiff
Changed namespace
authorvincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Tue, 3 Mar 2015 18:00:25 +0000 (18:00 +0000)
committervincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Tue, 3 Mar 2015 18:00:25 +0000 (18:00 +0000)
framework/application/configs/application.ini
framework/application/forms/CMS.php
framework/application/forms/CMS/Home.php
framework/application/forms/Settings.php
framework/application/forms/User.php
framework/application/models/Content.php
framework/application/models/User.php
index.php

index 2aac767a1b007e0832ee24994f474abff92d5357..f3dc191106d9bf322c66325c1004e4ffed01d21b 100644 (file)
@@ -12,7 +12,7 @@ bin.unzip = /usr/bin/unzip
 bin.cp = /bin/cp
 bin.rm = /bin/rm
 
-appnamespace = "ZendSample"
+appnamespace = "Simeox"
 
 timezone = 'Europe/Paris'
 
@@ -23,9 +23,9 @@ webhost = www.
 
 database.adapter = pdo_mysql
 database.params.host = localhost
-database.params.username = $username
-database.params.password = $password
-database.params.dbname = $username
+database.params.username = simeox
+database.params.password = imTJvRYpc3
+database.params.dbname = simeox
 
 ;former.database.adapter = pdo_mysql
 ;former.database.params.host =
@@ -67,4 +67,4 @@ seo.universalAnalytics =
 
 robots = false
 
-webhost = $devdomain
\ No newline at end of file
+webhost = simeox.dev.cubedesigners.com
\ No newline at end of file
index 125bf485ef916cc16a9e352a5e4cf06091a2eaee..8cacd539f7a80c92536a668c92da1dea8d9b3fd6 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_CMS extends CubeIT_Form_CMS {
+class Simeox_Form_CMS extends CubeIT_Form_CMS {
        public function init(){
                parent::init();
        }
index ae8a8e0bd37bd5d08d48a898940f5f58eb53ed56..b9aec17a87e362c4116c46b248b9251530462c8c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_CMS_Home extends ZendSample_Form_CMS{
+class Simeox_Form_CMS_Home extends Simeox_Form_CMS{
        public function init(){
                parent::init();
        }
index d2baf42fab7ba888d334e7ec8a00c3f7a9ab18ce..c2c3180f6deb00ef17f5eabc7738ce66d334e7d7 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_Settings extends CubeIT_Form_Settings {
+class Simeox_Form_Settings extends CubeIT_Form_Settings {
 
        public function init() {
                parent::init();
index 8f3fccff96300ec8d9c9b62992fb70f2eded18fc..284f41b25d0fae233bc0aeeaadc232ead3503b87 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_User extends CubeIT_Form_User {
+class Simeox_Form_User extends CubeIT_Form_User {
        public function init(){
                parent::init();
        }
index df6a8280735bafec28dd4da1831a2832116cb37b..374a19ddda6a81227167edd33c329cd2f2609846 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Model_Content extends CubeIT_Model {
+class Simeox_Model_Content extends CubeIT_Model {
 
        protected $id;
        protected $name;
index 87098091f7a7b656fe968292ea37ac209e04f8de..c9d97f980448b78340a844eeac61f0ab43f0fcbb 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Model_User extends CubeIT_Model_User {
+class Simeox_Model_User extends CubeIT_Model_User {
        
 }
 
index 8c3ee7887fbc6d2031acd91c1a8705576c8a8204..73a995e70b1746c9f2b66c6ca574ad5851820516 100644 (file)
--- a/index.php
+++ b/index.php
@@ -4,7 +4,7 @@ $start = microtime(true);
 ini_set('log_errors', '1');
 ini_set('error_log', dirname(__FILE__) . '/log/php_error.log');
 
-if ($_SERVER['HTTP_HOST'] == '$devdomain') {
+if ($_SERVER['HTTP_HOST'] == 'simeox.dev.cubedesigners.com') {
        define('APPLICATION_ENV', 'testing');
 } else if ($_SERVER['HTTP_HOST'] == 'www.') {
        define('APPLICATION_ENV', 'production');