Skip to content

Commit d493f7a

Browse files
committed
fix path namespaces and remove github namespace
1 parent 592ac78 commit d493f7a

66 files changed

Lines changed: 90 additions & 85 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

com_ccpbiosim/administrator/forms/coreteammember.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<form addfieldprefix="Ccpbiosim\Component\Github\Administrator\Field">
2+
<form addfieldprefix="Ccpbiosim\Component\Ccpbiosim\Administrator\Field">
33
<fieldset>
44
<field name="id" type="text" readonly="true" class="readonly" default="0" description="JGLOBAL_FIELD_ID_DESC"/>
55
<field name="state" default="1" type="list" label="JSTATUS" description="JFIELD_PUBLISHED_DESC" class="inputbox" size="1">

com_ccpbiosim/administrator/forms/managementteam.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<form addfieldprefix="Ccpbiosim\Component\Github\Administrator\Field">
2+
<form addfieldprefix="Ccpbiosim\Component\Ccpbiosim\Administrator\Field">
33
<fieldset>
44
<field name="id" type="text" readonly="true" class="readonly" default="0" description="JGLOBAL_FIELD_ID_DESC"/>
55
<field name="state" default="1" type="list" label="JSTATUS" description="JFIELD_PUBLISHED_DESC" class="inputbox" size="1">

com_ccpbiosim/administrator/services/provider.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Joomla\CMS\Extension\Service\Provider\RouterFactory;
1818
use Joomla\CMS\HTML\Registry;
1919
use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
20-
use Ccpbiosim\Component\Github\Administrator\Extension\CcpbiosimComponent;
20+
use Ccpbiosim\Component\Ccpbiosim\Administrator\Extension\CcpbiosimComponent;
2121
use Joomla\DI\Container;
2222
use Joomla\DI\ServiceProviderInterface;
2323

@@ -37,10 +37,10 @@
3737
public function register(Container $container)
3838
{
3939

40-
$container->registerServiceProvider(new CategoryFactory('\\Ccpbiosim\\Component\\Github'));
41-
$container->registerServiceProvider(new MVCFactory('\\Ccpbiosim\\Component\\Github'));
42-
$container->registerServiceProvider(new ComponentDispatcherFactory('\\Ccpbiosim\\Component\\Github'));
43-
$container->registerServiceProvider(new RouterFactory('\\Ccpbiosim\\Component\\Github'));
40+
$container->registerServiceProvider(new CategoryFactory('\\Ccpbiosim\\Component\\Ccpbiosim'));
41+
$container->registerServiceProvider(new MVCFactory('\\Ccpbiosim\\Component\\Ccpbiosim'));
42+
$container->registerServiceProvider(new ComponentDispatcherFactory('\\Ccpbiosim\\Component\\Ccpbiosim'));
43+
$container->registerServiceProvider(new RouterFactory('\\Ccpbiosim\\Component\\Ccpbiosim'));
4444

4545
$container->set(
4646
ComponentInterface::class,

com_ccpbiosim/administrator/src/Controller/CoreteammemberController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @license MIT
66
*/
77

8-
namespace Ccpbiosim\Component\Github\Administrator\Controller;
8+
namespace Ccpbiosim\Component\Ccpbiosim\Administrator\Controller;
99

1010
\defined('_JEXEC') or die;
1111

com_ccpbiosim/administrator/src/Controller/CoreteammembersController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @license MIT
66
*/
77

8-
namespace Ccpbiosim\Component\Github\Administrator\Controller;
8+
namespace Ccpbiosim\Component\Ccpbiosim\Administrator\Controller;
99

1010
\defined('_JEXEC') or die;
1111

com_ccpbiosim/administrator/src/Controller/DisplayController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @license MIT
77
*/
88

9-
namespace Ccpbiosim\Component\Github\Administrator\Controller;
9+
namespace Ccpbiosim\Component\Ccpbiosim\Administrator\Controller;
1010

1111
\defined('_JEXEC') or die;
1212

com_ccpbiosim/administrator/src/Controller/ManagementteamController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @license MIT
66
*/
77

8-
namespace Ccpbiosim\Component\Github\Administrator\Controller;
8+
namespace Ccpbiosim\Component\Ccpbiosim\Administrator\Controller;
99

1010
\defined('_JEXEC') or die;
1111

com_ccpbiosim/administrator/src/Controller/ManagementteamsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @license MIT
66
*/
77

8-
namespace Ccpbiosim\Component\Github\Administrator\Controller;
8+
namespace Ccpbiosim\Component\Ccpbiosim\Administrator\Controller;
99

1010
\defined('_JEXEC') or die;
1111

com_ccpbiosim/administrator/src/Extension/CcpbiosimComponent.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* @license MIT
66
*/
77

8-
namespace Ccpbiosim\Component\Github\Administrator\Extension;
8+
namespace Ccpbiosim\Component\Ccpbiosim\Administrator\Extension;
99

1010
defined('JPATH_PLATFORM') or die;
1111

12-
use Ccpbiosim\Component\Github\Administrator\Service\Html\CCPBIOSIM;
12+
use Ccpbiosim\Component\Ccpbiosim\Administrator\Service\Html\CCPBIOSIM;
1313
use Joomla\CMS\Application\SiteApplication;
1414
use Joomla\CMS\Association\AssociationServiceInterface;
1515
use Joomla\CMS\Association\AssociationServiceTrait;

com_ccpbiosim/administrator/src/Field/CreatedbyField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @license MIT
66
*/
77

8-
namespace Ccpbiosim\Component\Github\Administrator\Field;
8+
namespace Ccpbiosim\Component\Ccpbiosim\Administrator\Field;
99

1010
defined('_JEXEC') or die;
1111

0 commit comments

Comments
 (0)