-
Updated
Nov 25, 2020 - CSS
blog-platform
Here are 201 public repositories matching this topic...
-
Updated
Dec 4, 2020 - TypeScript
-
Updated
Apr 4, 2020 - PHP
-
Updated
Jun 22, 2017 - JavaScript
-
Updated
Oct 22, 2017 - Ruby
-
Updated
Apr 17, 2020 - Swift
-
Updated
Sep 7, 2018 - Go
-
Updated
Dec 8, 2020 - C#
-
Updated
Oct 10, 2020 - PHP
-
Updated
Feb 25, 2020 - Java
-
Updated
Mar 13, 2020 - JavaScript
-
Updated
Mar 26, 2016 - PHP
-
Updated
Oct 6, 2020 - PHP
-
Updated
Sep 18, 2020 - PHP
-
Updated
Sep 17, 2019 - Python
-
Updated
Sep 16, 2018 - JavaScript
-
Updated
May 3, 2019 - JavaScript
-
Updated
Apr 3, 2019 - C#
Suggest images based on the text info of the blog: name, description, tags.
A process could be similar to how Trello suggests a background for your board.
-
Updated
Dec 17, 2016 - HCL
-
Updated
Sep 20, 2018 - C#
-
Updated
Jun 29, 2020 - Rust
-
Updated
Jun 6, 2020 - JavaScript
-
Updated
Jan 17, 2018 - Python
Improve this page
Add a description, image, and links to the blog-platform topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the blog-platform topic, visit your repo's landing page and select "manage topics."
In tests/phpunit/TableTest.php create a new test_extend_recursive()
$table = Table::extend_recursive($table1, $table2);
If table1 is
[
'name'=>'table',
'title'=>'Table1',
'commands'=>['add','edit']
]
And table2 is
[
'name'=>'table',
'extends'=>'package/table/table.php',
'title'=>'Table2',
'commands'=>['delete']
]
Then final table should be
[
'name'=>'table'