Home
last modified time | relevance | path

Searched refs:aliasParts (Results 1 – 9 of 9) sorted by relevance

/dports/www/joomla3/joomla3-3.9.24/libraries/fof/table/behavior/
H A Dcontenthistory.php28 $aliasParts = explode('.', $table->getContentType());
31 if (JComponentHelper::getParams($aliasParts[0])->get('save_history', 0))
50 $aliasParts = explode('.', $table->getContentType());
52 if (JComponentHelper::getParams($aliasParts[0])->get('save_history', 0))
/dports/www/joomla3/joomla3-3.9.24/libraries/src/Table/Observer/
H A DContentHistory.php85 $aliasParts = explode('.', $this->contenthistoryHelper->typeAlias);
87 if (\JComponentHelper::getParams($aliasParts[0])->get('save_history', 0))
107 $aliasParts = explode('.', $this->contenthistoryHelper->typeAlias);
109 if (\JComponentHelper::getParams($aliasParts[0])->get('save_history', 0))
/dports/www/joomla3/joomla3-3.9.24/libraries/src/Helper/
H A DContentHistoryHelper.php150 $aliasParts = explode('.', $this->typeAlias);
152 $context = isset($aliasParts[1]) ? $aliasParts[1] : '';
154 …$maxVersionsContext = ComponentHelper::getParams($aliasParts[0])->get('history_limit' . '_' . $con…
160 elseif ($maxVersions = ComponentHelper::getParams($aliasParts[0])->get('history_limit', 0))
/dports/audio/rhvoice/RHVoice-1.2.4/src/third-party/cldr/tools/java/org/unicode/cldr/util/
H A DXMLSource.java216 String aliasParts = aliasPath.substring(pos + 6); in make()
220 return new Alias(pos, oldPath, newPath, aliasParts); in make()
230 private Alias(int pos, String oldPath, String newPath, String aliasParts) { in Alias() argument
231 Matcher matcher = aliasPattern.matcher(aliasParts); in Alias()
233 throw new IllegalArgumentException("bad alias pattern for " + aliasParts); in Alias()
251 + aliasParts in Alias()
/dports/lang/php80/php-8.0.15/build/
H A Dgen_stub.php1110 $aliasParts = explode("::", $tag->getValue());
1111 if (count($aliasParts) === 1) {
1112 $alias = new FunctionName(new Name($aliasParts[0]));
1114 $alias = new MethodName(new Name($aliasParts[0]), $aliasParts[1]);
/dports/www/mod_php80/php-8.0.15/build/
H A Dgen_stub.php1110 $aliasParts = explode("::", $tag->getValue());
1111 if (count($aliasParts) === 1) {
1112 $alias = new FunctionName(new Name($aliasParts[0]));
1114 $alias = new MethodName(new Name($aliasParts[0]), $aliasParts[1]);
/dports/www/mod_php81/php-8.1.1/build/
H A Dgen_stub.php2252 $aliasParts = explode("::", $tag->getValue());
2253 if (count($aliasParts) === 1) {
2254 $alias = new FunctionName(new Name($aliasParts[0]));
2256 $alias = new MethodName(new Name($aliasParts[0]), $aliasParts[1]);
/dports/lang/php81/php-8.1.1/build/
H A Dgen_stub.php2252 $aliasParts = explode("::", $tag->getValue());
2253 if (count($aliasParts) === 1) {
2254 $alias = new FunctionName(new Name($aliasParts[0]));
2256 $alias = new MethodName(new Name($aliasParts[0]), $aliasParts[1]);
/dports/www/joomla3/joomla3-3.9.24/libraries/fof/table/
H A Dtable.php3735 $aliasParts = explode('.', $alias);
3738 $component = $aliasParts[0];
3747 $name = $component_name . ' ' . ucfirst($aliasParts[1]);