feat: tinymce 本地化

This commit is contained in:
JaguarJack
2023-03-10 17:07:19 +08:00
parent 5bf43f5881
commit 796a513723
75 changed files with 3387 additions and 37 deletions

1
blaze/config/blaze.php Normal file
View File

@@ -0,0 +1 @@
<?php

View File

@@ -0,0 +1,3 @@
<div>
Hello Navigate
</div>

View File

@@ -0,0 +1 @@
<?php

View File

@@ -0,0 +1 @@
<?php

View File

@@ -0,0 +1 @@
<?php

View File

@@ -0,0 +1 @@
<?php

View File

@@ -0,0 +1,8 @@
<?php
namespace Blaze\Contracts;
interface DirectiveContract
{
}

View File

@@ -0,0 +1,28 @@
<?php
namespace Blaze\Directives;
use Blaze\Contracts\DirectiveContract;
class Article implements DirectiveContract
{
public function register()
{
// TODO: Implement register() method.
}
protected function getArticlesByCategoryId()
{
}
protected function getArticlesByTagId()
{}
protected function getArticleById()
{
}
}

View File

@@ -0,0 +1 @@
<?php