102 lines
2.1 KiB
Plaintext
102 lines
2.1 KiB
Plaintext
/**
|
|
* Local Core Joomla Fields
|
|
*
|
|
* @var array|null
|
|
* @since 3.2.0
|
|
**/
|
|
protected array $fields = [];
|
|
|
|
/**
|
|
* Local Core Joomla Fields Path
|
|
*
|
|
* @var array
|
|
* @since 3.2.0
|
|
**/
|
|
protected array $paths = [];
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @since 3.2.0
|
|
*/
|
|
public function __construct()
|
|
{
|
|
// set the path to the form validation fields
|
|
$this->paths[] = JPATH_LIBRARIES . '/src/Form/Field';
|
|
$this->paths[] = JPATH_LIBRARIES . '/joomla/form/fields';
|
|
}
|
|
|
|
/**
|
|
* Get the Array of Existing Validation Field Names
|
|
*
|
|
* @param bool $lowercase Switch to set fields lowercase
|
|
*
|
|
* @return array
|
|
* @since 3.2.0
|
|
*/
|
|
public function get(bool $lowercase = false): array
|
|
{
|
|
if ($this->fields === [])
|
|
{
|
|
// check if the path exist
|
|
foreach ($this->paths as $path)
|
|
{
|
|
$this->set($path);
|
|
}
|
|
}
|
|
|
|
// return fields if found
|
|
if ($this->fields !== [])
|
|
{
|
|
// check if the names should be all lowercase
|
|
if ($lowercase)
|
|
{
|
|
return array_map(
|
|
fn($item): string => strtolower((string) $item),
|
|
$this->fields
|
|
);
|
|
}
|
|
|
|
return $this->fields;
|
|
}
|
|
|
|
// return empty array
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* Set the fields found in a path
|
|
*
|
|
* @param string $path The path to load fields from
|
|
* @return void
|
|
* @since 3.2.0
|
|
*/
|
|
private function set(string $path): void
|
|
{
|
|
// Check if the path exists
|
|
if (!Folder::exists($path))
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Load all PHP files in this path
|
|
$fields = Folder::files($path, '\.php$', true, true);
|
|
|
|
// Process the files to extract field names
|
|
$processedFields = array_map(function ($name) {
|
|
$fileName = basename($name);
|
|
|
|
// Remove 'Field.php' if it exists or just '.php' otherwise
|
|
if (substr($fileName, -9) === 'Field.php')
|
|
{
|
|
return str_replace('Field.php', '', $fileName);
|
|
}
|
|
else
|
|
{
|
|
return str_replace('.php', '', $fileName);
|
|
}
|
|
}, $fields);
|
|
|
|
// Merge with existing fields and remove duplicates
|
|
$this->fields = array_unique(array_merge($processedFields, $this->fields));
|
|
} |