]> _ Git - ccgm.git/commitdiff
Changed namespace
authorvincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Mon, 29 Jul 2013 09:16:37 +0000 (09:16 +0000)
committervincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Mon, 29 Jul 2013 09:16:37 +0000 (09:16 +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 edc63113323013da408170b796125fcba7767cda..1b373b52783f3537fb4cd1fb663c12e76fcddfb2 100644 (file)
@@ -24,7 +24,7 @@ bin.rm = /bin/rm
 includePaths.library = APPLICATION_PATH "/../library"
 bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
 bootstrap.class = "Bootstrap"
-appnamespace = "ZendSample"
+appnamespace = "CCGM"
 resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
 resources.frontController.params.displayExceptions = 0
 resources.view[] =
index 125bf485ef916cc16a9e352a5e4cf06091a2eaee..b2c088bc2851728a898a12d5aa2900611fc87575 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_CMS extends CubeIT_Form_CMS {
+class CCGM_Form_CMS extends CubeIT_Form_CMS {
        public function init(){
                parent::init();
        }
index ae8a8e0bd37bd5d08d48a898940f5f58eb53ed56..351bb072ee9c4fd058bfc347810c02b35c9b2e3a 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_CMS_Home extends ZendSample_Form_CMS{
+class CCGM_Form_CMS_Home extends CCGM_Form_CMS{
        public function init(){
                parent::init();
        }
index d2baf42fab7ba888d334e7ec8a00c3f7a9ab18ce..7dec99ee13d22c593a4c29ceb6587bb9cefd57a8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_Settings extends CubeIT_Form_Settings {
+class CCGM_Form_Settings extends CubeIT_Form_Settings {
 
        public function init() {
                parent::init();
index 8f3fccff96300ec8d9c9b62992fb70f2eded18fc..689ed5b8405c11ae4c8342f84a6abe0f50027bf3 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Form_User extends CubeIT_Form_User {
+class CCGM_Form_User extends CubeIT_Form_User {
        public function init(){
                parent::init();
        }
index df6a8280735bafec28dd4da1831a2832116cb37b..0b0025ca78ef4324bf1c29488319cfed54d4dcdc 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Model_Content extends CubeIT_Model {
+class CCGM_Model_Content extends CubeIT_Model {
 
        protected $id;
        protected $name;
index 87098091f7a7b656fe968292ea37ac209e04f8de..975303b11f86f56f8fdfd3aa2ce0b6a88449cd16 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-class ZendSample_Model_User extends CubeIT_Model_User {
+class CCGM_Model_User extends CubeIT_Model_User {
        
 }