mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 02:16:41 +02:00
121 lines
3.3 KiB
PHP
121 lines
3.3 KiB
PHP
<?php
|
|
/*
|
|
* Copyright (C) 2005 Alfresco, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* As a special exception to the terms and conditions of version 2.0 of
|
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
|
* FLOSS exception. You should have recieved a copy of the text describing
|
|
* the FLOSS exception, and it is also available here:
|
|
* http://www.alfresco.com/legal/licensing"
|
|
*/
|
|
|
|
class NamespaceMap
|
|
{
|
|
const DELIMITER = "_";
|
|
|
|
private $namespaceMap = array(
|
|
"d" => "http://www.alfresco.org/model/dictionary/1.0",
|
|
"sys" => "http://www.alfresco.org/model/system/1.0",
|
|
"cm" => "http://www.alfresco.org/model/content/1.0",
|
|
"app" => "http://www.alfresco.org/model/application/1.0",
|
|
"bpm" => "http://www.alfresco.org/model/bpm/1.0",
|
|
"wf" => "http://www.alfresco.org/model/workflow/1.0",
|
|
"fm" => "http://www.alfresco.org/model/forum/1.0",
|
|
"view" => "http://www.alfresco.org/view/repository/1.0",
|
|
"security" => "http://www.alfresco.org/model/security/1.0",
|
|
"wcm" => "http://www.alfresco.org/model/wcmmodel/1.0",
|
|
"wca" => "http://www.alfresco.org/model/wcmappmodel/1.0");
|
|
|
|
public function isShortName($shortName)
|
|
{
|
|
return ($shortName != $this->getFullName($shortName));
|
|
}
|
|
|
|
public function getFullName($shortName)
|
|
{
|
|
$result = $shortName;
|
|
|
|
$index = strpos($shortName, NamespaceMap::DELIMITER);
|
|
if ($index !== false)
|
|
{
|
|
$prefix = substr($shortName, 0, $index);
|
|
|
|
if (isset($this->namespaceMap[$prefix]) == true)
|
|
{
|
|
$url = $this->namespaceMap[$prefix];
|
|
$name = substr($shortName, $index+1);
|
|
$name = str_replace("_", "-", $name);
|
|
if ($name != null && strlen($name) != 0)
|
|
{
|
|
$result = "{".$url."}".$name;
|
|
}
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
public function getFullNames($fullNames)
|
|
{
|
|
$result = array();
|
|
|
|
foreach ($fullNames as $fullName)
|
|
{
|
|
$result[] = $this->getFullName($fullName);
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
public function getShortName($fullName)
|
|
{
|
|
$result = $fullName;
|
|
|
|
$index = strpos($fullName, "}");
|
|
if ($index !== false)
|
|
{
|
|
$url = substr($fullName, 1, $index-1);
|
|
$prefix = $this->lookupPrefix($url);
|
|
if ($prefix != null)
|
|
{
|
|
$name = substr($fullName, $index+1);
|
|
if ($name != null && strlen($name) != 0)
|
|
{
|
|
$name = str_replace("-", "_", $name);
|
|
$result = $prefix.NamespaceMap::DELIMITER.$name;
|
|
}
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
private function lookupPrefix($value)
|
|
{
|
|
$result = null;
|
|
foreach($this->namespaceMap as $prefix => $url)
|
|
{
|
|
if ($url == $value)
|
|
{
|
|
$result = $prefix;
|
|
}
|
|
}
|
|
return $result;
|
|
}
|
|
}
|
|
|
|
?>
|