Module Recettes : on avance encore...
This commit is contained in:
20
local/modules/Recettes/Model/Recipe.php
Normal file
20
local/modules/Recettes/Model/Recipe.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Recettes\Model;
|
||||
|
||||
use Recettes\Model\Base\Recipe as BaseRecipe;
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'recipe' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
*/
|
||||
class Recipe extends BaseRecipe
|
||||
{
|
||||
|
||||
}
|
||||
20
local/modules/Recettes/Model/RecipeProducts.php
Normal file
20
local/modules/Recettes/Model/RecipeProducts.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Recettes\Model;
|
||||
|
||||
use Recettes\Model\Base\RecipeProducts as BaseRecipeProducts;
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'recipe_products' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
*/
|
||||
class RecipeProducts extends BaseRecipeProducts
|
||||
{
|
||||
|
||||
}
|
||||
20
local/modules/Recettes/Model/RecipeProductsQuery.php
Normal file
20
local/modules/Recettes/Model/RecipeProductsQuery.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Recettes\Model;
|
||||
|
||||
use Recettes\Model\Base\RecipeProductsQuery as BaseRecipeProductsQuery;
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'recipe_products' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
*/
|
||||
class RecipeProductsQuery extends BaseRecipeProductsQuery
|
||||
{
|
||||
|
||||
}
|
||||
20
local/modules/Recettes/Model/RecipeQuery.php
Normal file
20
local/modules/Recettes/Model/RecipeQuery.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Recettes\Model;
|
||||
|
||||
use Recettes\Model\Base\RecipeQuery as BaseRecipeQuery;
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'recipe' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
*/
|
||||
class RecipeQuery extends BaseRecipeQuery
|
||||
{
|
||||
|
||||
}
|
||||
20
local/modules/Recettes/Model/RecipeSteps.php
Normal file
20
local/modules/Recettes/Model/RecipeSteps.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Recettes\Model;
|
||||
|
||||
use Recettes\Model\Base\RecipeSteps as BaseRecipeSteps;
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'recipe_steps' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
*/
|
||||
class RecipeSteps extends BaseRecipeSteps
|
||||
{
|
||||
|
||||
}
|
||||
20
local/modules/Recettes/Model/RecipeStepsQuery.php
Normal file
20
local/modules/Recettes/Model/RecipeStepsQuery.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Recettes\Model;
|
||||
|
||||
use Recettes\Model\Base\RecipeStepsQuery as BaseRecipeStepsQuery;
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'recipe_steps' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
*/
|
||||
class RecipeStepsQuery extends BaseRecipeStepsQuery
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user