Skip to content

Commit

Permalink
Structure and headlines
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian committed Jun 13, 2016
1 parent d2106e6 commit 9032d6d
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ This is the documentation for [Pagekit](https://pagekit.com), a modular open sou
- Tutorials
1. [Extension](tutorials/extension.md)
2. [Theme](tutorials/theme.md)
4. [Widgets](tutorials/widgets.md)
5. [Dashboard Widgets](tutorials/dashboard-widgets.md)
6. [Translate Pagekit](tutorials/translation.md)
7. [Marketplace](tutorials/marketplace.md)
3. [Dashboard Widgets](tutorials/dashboard-widgets.md)
4. [Translate Pagekit](tutorials/translation.md)
5. [Marketplace](tutorials/marketplace.md)

- Developer Fundamentals
1. [File Structure](developer/file-structure.md)
Expand All @@ -40,6 +39,7 @@ This is the documentation for [Pagekit](https://pagekit.com), a modular open sou
8. [Theme](developer/theme.md)
8. [Views & Templating](developer/views-templating.md)
9. [Vue & Webpack](developer/vuejs-and-webpack.md)
4. [Widgets](developer/widgets.md)
10. [Database](developer/database.md)
11. [ORM](developer/orm.md)
12. [Translation](developer/translation.md)
Expand Down
6 changes: 3 additions & 3 deletions developer/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ Link to a route that renders your settings screen. Setting this property makes P
'settings' => '@hello/admin/settings',
```

## Register Widgets
A Widget is also a module. With the `widgets` property you can register all widget module definition files. Each of those files is expected to return a PHP array in the form of a valid module definition. Learn more about [Widgets](../tutorials/widgets.md).
## Register widgets
A widget is also a module. With the `widgets` property you can register all widget module definition files. Each of those files is expected to return a PHP array in the form of a valid module definition. Learn more about [widgets](../developer/widgets.md).

```php
'widgets' => [
Expand All @@ -303,7 +303,7 @@ A Widget is also a module. With the `widgets` property you can register all widg

## Widget options

If your module wants to add a configuration screen to the Widget editor (which is often the case when developing a theme), you can use the `widget` property to add default options to the widget object (a complete example for a widget configuration screen is in the [Theme tutorial](../tutorials/theme.md#adding-widget-options)).
If your module wants to add a configuration screen to the widget editor (which is often the case when developing a theme), you can use the `widget` property to add default options to the widget object (a complete example for a widget configuration screen is in the [Theme tutorial](../tutorials/theme.md#adding-widget-options)).

In the following example, a theme defines a `panel` property which is automatically added to every widget object that is rendered. By default, the property will have the empty string as its value.

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tutorials/extension.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# How to develop an extension
# How to develop a Pagekit extension

<p class="uk-article-lead">This tutorial follows all steps needed to setup and develop a full extension to manage Todo items in the admin area of Pagekit. You will learn about basic extension concepts, controllers, routing, view rendering and the Vue.js framework.</p>

Expand Down
4 changes: 2 additions & 2 deletions tutorials/marketplace.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Publish a Package at the Marketplace
# Publish a package on the Marketplace
<p class="uk-article-lead">An extension or theme in the Marketplace can be installed directly from the Pagekit admin interface.</p>

## Create an account at pagekit.com
## Create an account
Before you can upload a package for the first time, you have to create an account at [pagekit.com](https://pagekit.com).

Log in on [pagekit.com](https://pagekit.com) and navigate to the _Developer_ section. Hit the _Submit Package_ button and upload your package.
Expand Down
2 changes: 1 addition & 1 deletion tutorials/theme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# How to develop a theme
# How to develop a Pagekit theme

<p class="uk-article-lead">In this tutorial you will learn how to develop your own theme from our Hello Theme blueprint. You will find out about the theme structure and follow the essential steps to add new positions and options.</p>

Expand Down
2 changes: 1 addition & 1 deletion tutorials/translation.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Translating Pagekit
# Help translating Pagekit
<p class="uk-article-lead">We work with Transifex, a simple and easy platform where you can share language files and work together on localization.</p>

Feel free to join [Pagekit on Transifex](http://www.transifex.com/organization/pagekit). After a fast [sign up](http://www.transifex.com/signup/) you can help correct existing translations or add your own language.
Expand Down

0 comments on commit 9032d6d

Please sign in to comment.