* @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace VDM\Joomla\Componentbuilder\Compiler\Creator; use VDM\Joomla\Componentbuilder\Compiler\Utilities\Indent; /** * Access Sections Joomla Fields Creator Class * * @since 3.2.0 */ final class AccessSectionsJoomlaFields { /** * Set Access Sections Joomla Fields * * @return string * @since 3.2.0 */ public function get(): string { $component = ''; // set all the core field permissions $component .= PHP_EOL . Indent::_(1) . '
'; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(1) . '
'; $component .= PHP_EOL . Indent::_(1) . '
'; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(2) . ''; $component .= PHP_EOL . Indent::_(1) . '
'; return $component; } }