/vendor/propel/propel1/generator/lib/builder/om/ClassTools.php
https://gitlab.com/Isaki/le331.fr · PHP · 142 lines · 58 code · 14 blank · 70 comment · 9 complexity · e7c63f546ff02a2f6c0eb924b747d86b MD5 · raw file
- <?php
- /**
- * This file is part of the Propel package.
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- * @license MIT License
- */
- /**
- * Tools to support class & package inclusion and referencing.
- *
- * @author Hans Lellelid <hans@xmpl.org>
- * @version $Revision$
- * @package propel.generator.builder.om
- */
- class ClassTools
- {
- /**
- * Gets just classname, given a dot-path to class.
- *
- * @param string $qualifiedName
- *
- * @return string
- */
- public static function classname($qualifiedName)
- {
- if (false !== $pos = strrpos($qualifiedName, '.')) {
- return substr($qualifiedName, $pos + 1); // start just after '.'
- } elseif (false !== $pos = strrpos($qualifiedName, '\\')) {
- return substr($qualifiedName, $pos + 1);
- } else {
- return $qualifiedName; // there is no '.' in the qualified name
- }
- }
- /**
- * Gets the path to be used in include()/require() statement.
- *
- * Supports multiple function signatures:
- *
- * (1) getFilePath($dotPathClass);
- * (2) getFilePath($dotPathPrefix, $className);
- * (3) getFilePath($dotPathPrefix, $className, $extension);
- *
- * @param string $path dot-path to class or to package prefix.
- * @param string $classname class name
- * @param string $extension The extension to use on the file.
- *
- * @return string The constructed file path.
- */
- public static function getFilePath($path, $classname = null, $extension = '.php')
- {
- $path = strtr(ltrim($path, '.'), '.', '/');
- return self::createFilePath($path, $classname, $extension);
- }
- /**
- * This method replaces the `getFilePath()` method in OMBuilder as we consider `$path` as
- * a real path instead of a dot-notation value. `$path` is generated by the `getPackagePath()`
- * method.
- *
- * @param string $path path to class or to package prefix.
- * @param string $classname class name
- * @param string $extension The extension to use on the file.
- *
- * @return string The constructed file path.
- */
- public static function createFilePath($path, $classname = null, $extension = '.php')
- {
- if ($classname !== null) {
- if ($path !== '') {
- $path .= '/';
- }
- return $path . $classname . $extension;
- } else {
- return $path . $extension;
- }
- }
- /**
- * Gets the basePeer path if specified for table/db.
- * If not, will return 'propel.util.BasePeer'
- *
- * @return string
- */
- public static function getBasePeer(Table $table)
- {
- $class = $table->getBasePeer();
- if ($class === null) {
- $class = "propel.util.BasePeer";
- }
- return $class;
- }
- /**
- * Gets the baseClass path if specified for table/db.
- * If not, will return 'propel.om.BaseObject'
- *
- * @return string
- */
- public static function getBaseClass(Table $table)
- {
- $class = $table->getBaseClass();
- if ($class === null) {
- $class = "propel.om.BaseObject";
- }
- return $class;
- }
- /**
- * Gets the interface path if specified for table.
- * If not, will return 'propel.om.Persistent'.
- *
- * @return string
- */
- public static function getInterface(Table $table)
- {
- $interface = $table->getInterface();
- if ($interface === null && !$table->isReadOnly()) {
- $interface = "propel.om.Persistent";
- }
- return $interface;
- }
- /**
- * Gets a list of PHP reserved words.
- *
- * @return array string[]
- */
- public static function getPhpReservedWords()
- {
- return array('and', 'or', 'xor', 'exception', '__FILE__', '__LINE__', 'array', 'as', 'break', 'case', 'class', 'const', 'continue', 'declare', 'default', 'die', 'do', 'echo', 'else', 'elseif', 'empty', 'enddeclare', 'endfor', 'endforeach', 'endif', 'endswitch', 'endwhile', 'eval', 'exit', 'extends', 'for', 'foreach', 'function', 'global', 'if', 'include', 'include_once', 'isset', 'list', 'new', 'print', 'require', 'require_once', 'return', 'static', 'switch', 'unset', 'use', 'var', 'while', '__FUNCTION__', '__CLASS__', '__METHOD__', 'final', 'php_user_filter', 'interface', 'implements', 'extends', 'public', 'protected', 'private', 'abstract', 'clone', 'try', 'catch', 'throw', 'this', 'namespace', 'yield');
- }
- }