16 lines
348 B
PHP
16 lines
348 B
PHP
|
<?php
|
||
|
namespace nur\v\base;
|
||
|
|
||
|
use nur\v\model\IChildComponent;
|
||
|
use nur\v\model\IComponent;
|
||
|
|
||
|
abstract class ComponentContent extends SimpleContent implements IComponent, IChildComponent {
|
||
|
use TPlugin, TComponent;
|
||
|
|
||
|
#############################################################################
|
||
|
# IPlugin
|
||
|
|
||
|
const CSS = null;
|
||
|
const JS = null;
|
||
|
}
|