]> _ Git - fluidbook-v3.git/commitdiff
Changed namespace
authorvincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Fri, 22 Jan 2016 15:14:08 +0000 (15:14 +0000)
committervincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Fri, 22 Jan 2016 15:14:08 +0000 (15:14 +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..bf75cbcbc44e47b4281490ad4d53b8d1f97c40d8 100644 (file)
@@ -12,7 +12,7 @@ bin.unzip = /usr/bin/unzip
 bin.cp = /bin/cp
 bin.rm = /bin/rm
 
-appnamespace = "ZendSample"
+appnamespace = "Fluidbook"
 
 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 = fluidbookwebv3
+database.params.password = QsFe2wxVMW
+database.params.dbname = fluidbookwebv3
 
 ;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 = fluidbookwebv3.dev.cubedesigners.com
\ No newline at end of file
index 125bf485ef916cc16a9e352a5e4cf06091a2eaee..1d899e73a5786127ba0b41b7e4c037c6f58ba45e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_CMS extends CubeIT_Form_CMS {
+class Fluidbook_Form_CMS extends CubeIT_Form_CMS {
        public function init(){
                parent::init();
        }
index ae8a8e0bd37bd5d08d48a898940f5f58eb53ed56..14110a7b8771693db16b41bffa7d52b06e027fb5 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_CMS_Home extends ZendSample_Form_CMS{
+class Fluidbook_Form_CMS_Home extends Fluidbook_Form_CMS{
        public function init(){
                parent::init();
        }
index d2baf42fab7ba888d334e7ec8a00c3f7a9ab18ce..3b461c783a707592df7db1396d54c6ac5c2bd61d 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_Settings extends CubeIT_Form_Settings {
+class Fluidbook_Form_Settings extends CubeIT_Form_Settings {
 
        public function init() {
                parent::init();
index 8f3fccff96300ec8d9c9b62992fb70f2eded18fc..77b81760be070fadf3d8c22ecce080436b3625ef 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_User extends CubeIT_Form_User {
+class Fluidbook_Form_User extends CubeIT_Form_User {
        public function init(){
                parent::init();
        }
index df6a8280735bafec28dd4da1831a2832116cb37b..a3a480a2e5e92d03d2a780a15165326db3974c82 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Model_Content extends CubeIT_Model {
+class Fluidbook_Model_Content extends CubeIT_Model {
 
        protected $id;
        protected $name;
index 87098091f7a7b656fe968292ea37ac209e04f8de..44c53fc2407960420c59fed2f6f8138a9f776659 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Model_User extends CubeIT_Model_User {
+class Fluidbook_Model_User extends CubeIT_Model_User {
        
 }
 
index 8c3ee7887fbc6d2031acd91c1a8705576c8a8204..50535b5463208ee6a850af90b49b3a8f5175c632 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'] == 'fluidbookwebv3.dev.cubedesigners.com') {
        define('APPLICATION_ENV', 'testing');
 } else if ($_SERVER['HTTP_HOST'] == 'www.') {
        define('APPLICATION_ENV', 'production');