mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
22 lines
419 B
PHP
22 lines
419 B
PHP
<?php namespace Visiosoft\DefaultadminTheme;
|
|
|
|
use Anomaly\Streams\Platform\Addon\Theme\Theme;
|
|
|
|
/**
|
|
* Class DefaultadminTheme
|
|
*
|
|
* @link http://openclassify.com/
|
|
* @author OpenClassify, Inc. <support@openclassify.com>
|
|
* @author Vedat Akdogan <vedat@openclassify.com>
|
|
*/
|
|
class DefaultadminTheme extends Theme
|
|
{
|
|
|
|
/**
|
|
* This is an admin theme.
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $admin = true;
|
|
}
|