mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-27 20:48:46 +02:00
- Autoloader for portal files in the itop-portal-base module - Dependencies moved to root composer.json - Add autoloader for /core and /application content
20 lines
347 B
PHP
20 lines
347 B
PHP
<?php
|
|
|
|
class ProjectWithXsdExtension extends ProjectExtension
|
|
{
|
|
public function getXsdValidationBasePath()
|
|
{
|
|
return __DIR__.'/schema';
|
|
}
|
|
|
|
public function getNamespace()
|
|
{
|
|
return 'http://www.example.com/schema/projectwithxsd';
|
|
}
|
|
|
|
public function getAlias()
|
|
{
|
|
return 'projectwithxsd';
|
|
}
|
|
}
|