Completed
Push — master ( 0ea243...da58d4 )
by Henry
10:25 queued 33s
created

includes/Admin/Template/Tag.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
namespace Redaxscript\Admin\Template;
3
4
use Redaxscript\Admin\View\Helper;
0 ignored issues
show
This use statement conflicts with another class in this namespace, Redaxscript\Admin\Template\Helper.

Let’s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let’s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
5
use Redaxscript\Language;
6
use Redaxscript\Registry;
7
use Redaxscript\Template\Tag as BaseTag;
8
9
/**
10
 * parent class to provide admin template tags
11
 *
12
 * @since 4.0.0
13
 *
14
 * @package Redaxscript
15
 * @category Template
16
 * @author Henry Ruhs
17
 */
18
19
class Tag extends BaseTag
20
{
21
	/**
22
	 * panel
23
	 *
24
	 * @since 4.0.0
25
	 *
26
	 * @param array $optionArray options of the panel
27
	 *
28
	 * @return string
29
	 */
30
31 1
	public static function panel(array $optionArray = []) : string
32
	{
33 1
		$panel = new Helper\Panel(Registry::getInstance(), Language::getInstance());
34 1
		$panel->init($optionArray);
35 1
		return $panel->render();
36
	}
37
}
38