mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-11 01:44:02 +01:00
12 lines
180 B
PHP
12 lines
180 B
PHP
|
<?php
|
||
|
|
||
|
namespace Addon\Example;
|
||
|
|
||
|
class LoadAutomatically{
|
||
|
|
||
|
function AutomaticallyLoaded(){
|
||
|
echo '<h3>Autoload</h3>';
|
||
|
echo '<p>This portion was loaded automatically</p>';
|
||
|
}
|
||
|
|
||
|
}
|