Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
colintucker committed Dec 11, 2017
2 parents 45269c2 + ed0eb84 commit 6e46f03
Show file tree
Hide file tree
Showing 13 changed files with 104 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Components/BarNavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ class BarNavigation extends BaseComponent
*/
private static $icon = 'silverware/navigation: admin/client/dist/images/icons/BarNavigation.png';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_BarNavigation';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Components/BlockNavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ class BlockNavigation extends LinkHolder
*/
private static $icon = 'silverware/navigation: admin/client/dist/images/icons/BlockNavigation.png';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_BlockNavigation';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Components/ButtonNavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ class ButtonNavigation extends BaseComponent
*/
private static $icon = 'silverware/navigation: admin/client/dist/images/icons/ButtonNavigation.png';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_ButtonNavigation';

/**
* Defines the default child class for this object.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Components/CrumbNavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ class CrumbNavigation extends BaseComponent
*/
private static $icon = 'silverware/navigation: admin/client/dist/images/icons/CrumbNavigation.png';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_CrumbNavigation';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Components/IconNavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ class IconNavigation extends BaseComponent
*/
private static $icon = 'silverware/navigation: admin/client/dist/images/icons/IconNavigation.png';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_IconNavigation';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Components/InlineNavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ class InlineNavigation extends LinkHolder
*/
private static $icon = 'silverware/navigation: admin/client/dist/images/icons/InlineNavigation.png';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_InlineNavigation';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Components/LevelNavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ class LevelNavigation extends BaseComponent
*/
private static $icon = 'silverware/navigation: admin/client/dist/images/icons/LevelNavigation.png';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_LevelNavigation';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Items/LinksItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ class LinksItem extends BarItem
*/
private static $description = 'A bar item to show a series of links';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_Navigation_LinksItem';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Items/NavigationItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ class NavigationItem extends BarItem
*/
private static $description = 'A bar item which shows the main navigation';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_Navigation_NavigationItem';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Items/RowItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ class RowItem extends BarItem
*/
private static $description = 'A bar item to group together other items in a row';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_Navigation_RowItem';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Items/TextItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ class TextItem extends BarItem
*/
private static $description = 'A bar item to show a string of text';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_Navigation_TextItem';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Model/BarItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ class BarItem extends Component
*/
private static $icon = 'silverware/navigation: admin/client/dist/images/icons/BarItem.png';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_Navigation_BarItem';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down
8 changes: 8 additions & 0 deletions src/Model/LinkHolder.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ class LinkHolder extends BaseComponent
*/
private static $description = 'A component which holds a series of links';

/**
* Defines the table name to use for this object.
*
* @var string
* @config
*/
private static $table_name = 'SilverWare_Navigation_LinkHolder';

/**
* Defines an ancestor class to hide from the admin interface.
*
Expand Down

0 comments on commit 6e46f03

Please sign in to comment.