Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/friendsofredaxo/blogger
Simples Blog-Addon für REDAXO 5
https://github.com/friendsofredaxo/blogger
redaxo redaxo-addon redaxo5
Last synced: about 1 month ago
JSON representation
Simples Blog-Addon für REDAXO 5
- Host: GitHub
- URL: https://github.com/friendsofredaxo/blogger
- Owner: FriendsOfREDAXO
- License: mit
- Created: 2016-11-10T10:55:43.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-10-26T20:48:21.000Z (2 months ago)
- Last Synced: 2024-10-26T22:41:43.359Z (2 months ago)
- Topics: redaxo, redaxo-addon, redaxo5
- Language: PHP
- Homepage:
- Size: 164 KB
- Stars: 10
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Blogger - Redaxo 5.x Blog
## Usage
Create a new Blogger instance like this:
```php
$myBlogger = new Blogger();
```With this new blogger instance different data can be accessed.
For example you can get all Entries with a function or just a single one.
For now blogger only gives you access to the data it created, this means that you're responsible for your urls and how they are handled. See [examples](https://github.com/FriendsOfREDAXO/blogger/tree/main/examples).```php
// get all entries
$allEntries = $myBlogger->getEntries();// $allEntries looks like this
array(
0 => array(
"id" => 1,
"categoryId" => 1,
"categoryName" => "DefaultCategory",
"tags" => array(
0 => array(
"id" => 1,
"tag" => "DefaultTag"
),
1 => array(
"id" => 2,
"tag" => "ExtraTag"
)
),
"status" => 0,
"postedBy" => "admin",
"postedAt" => "2017-07-07 12:30:00",
"content" => array(
1 => array(
"clang" => 1,
"title" => "Die andere Welt",
"text" => "Von einer anderen Welt.
",
"preview" => "",
"gallery" => ""
),
2 => array(
"clang" => 2,
"title" => "The other World",
"text" => "From another World
",
"preview" => "",
"gallery" => ""
)
)
),
...
)// or give a limit to if you only want to show 10 entries per page
$pageEntries = $myBlogger->getEntries("0, 10");
$nextPageEntries = $myBlogger->getEntries("10, 10");// you can use getLastEntries() with the same use but the output is orderd
// with the latest entries coming first// similiar, this would look like $allEntries[0]
$singleEntry = $myBlogger->getEntry(1);
```If you need the tags and categories, e.g. so the user can select all entries from a specific category, you can get the data through these functions.
```php
$myBlogger->getCategories();
// returns array( array( 'id' => 1, 'name' => 'myCategory' ), ... )$myBlogger->getTags();
// returns array( array( 'id' => 1, 'tag' => 'myTag' ), ... )
```The same works for the year and/or month of the post date.
```php
$myBlogger->getMonths();
// returns array( array( 'year' => 2017, 'month' => 7 ), ... )
```You can use the `Blogger::getEntriesBy` function to query for specific entries with an associative array.
```php
$entriesFrom = $myBlogger->getEntriesBy(array(
'category' => 1,
'tags' => [1, 2, 4]
'year' => 2017,
'month' => 3,
'author' => 'admin',
'limit' => '0, 10',
'latest' => true, // default false
'includeOfflines' => true // default false
));// You don't have to use everything.
// If you call getEntriesBy without any parameters, you'll just get all entries.
```### Database Tables
`rex_blogger_entries` contains the meta-data for all entries
* rex_blogger_entries
* id
* category
* tags
* status
* postedBy
* postedAt`rex_blogger_content` contains the content for each entry in diffrent languages
* rex_blogger_content
* id
* pid
* clang
* title
* text
* preview
* gallerycategories every entry can have
* rex_blogger_categories
* id
* nametags every entry can have
* rex_blogger_tags
* id
* tag## Lizenz
MIT Lizenz, siehe [LICENSE.md](https://github.com/friendsofredaxo/rex_blogger/blob/main/LICENSE)
## Autor
**Friends Of REDAXO**
https://www.redaxo.org
https://github.com/FriendsOfREDAXOUmsetzung:
[AndyBitz](https://github.com/AndyBitz/)## Projekt-Lead
[Alexander Walther](https://github.com/alexplusde)