mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
42 lines
993 B
PHP
42 lines
993 B
PHP
<?php
|
|
|
|
return [
|
|
'meta_tags' => [
|
|
'type' => 'anomaly.field_type.tags',
|
|
'config' => [
|
|
'default_value' => ['Openclassify'],
|
|
],
|
|
],
|
|
'template' => [
|
|
'type' => 'anomaly.field_type.select',
|
|
'config' => [
|
|
'default_value' => 'default',
|
|
'options' => [
|
|
'default' => 'Default',
|
|
's' => 'S-Type',
|
|
],
|
|
],
|
|
],
|
|
|
|
's-type-latest-limit' => [
|
|
'type' => 'anomaly.field_type.integer',
|
|
'config' => [
|
|
'default_value' => 36,
|
|
'min' => 12,
|
|
],
|
|
],
|
|
's-type-showcase-limit' => [
|
|
'type' => 'anomaly.field_type.integer',
|
|
'config' => [
|
|
'default_value' => 12,
|
|
'min' => 12,
|
|
],
|
|
],
|
|
's-type-banner-code' => [
|
|
'type' => 'anomaly.field_type.editor',
|
|
],
|
|
's-type-banner-mobile-code' => [
|
|
'type' => 'anomaly.field_type.editor',
|
|
],
|
|
];
|