mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 02:12:17 +00:00
EZ-Components
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
class erMyClass1
|
||||
{
|
||||
function toString()
|
||||
{
|
||||
echo "Class 'erMyClass1'\n";
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
class erMyClass2
|
||||
{
|
||||
function toString()
|
||||
{
|
||||
echo "Class 'erMyClass2'\n";
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
class erYourClass1
|
||||
{
|
||||
function toString()
|
||||
{
|
||||
echo "Class 'erYourClass1'\n";
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
class erYourClass2
|
||||
{
|
||||
function toString()
|
||||
{
|
||||
echo "Class 'erYourClass2'\n";
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'erMyClass1' => 'Me/myclass1.php',
|
||||
'erMyClass2' => 'Me/myclass2.php',
|
||||
);
|
||||
?>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'erYourClass1' => 'You/yourclass1.php',
|
||||
'erYourClass2' => 'You/yourclass2.php',
|
||||
);
|
||||
?>
|
||||
Reference in New Issue
Block a user