Entities
Tiêu đề
No changesPermalink
No changesNội dung
Old | New | ||
---|---|---|---|
1 | # Entities (Data Object | 1 | # Entities (Data Object) |
2 | 2 | ||
3 | Entities are specific sets of data that can be | 3 | Entities are specific sets of data that can be controlled or manipulated through the use of an entity controller. The most typical entity is an extraction from the database that through the controller can be edited in a way that resembles "object relational mappers (ORM)". |
4 | 4 | ||
5 | ``` | 5 | ``` |
6 | $product = new ent_product($id); | 6 | $product = new ent_product($id); |
7 | $product->name['en'] = 'Rubber Duck'; | 7 | $product->name['en'] = 'Rubber Duck'; |
8 | $product->save(); | 8 | $product->save(); |
9 | ``` | 9 | ``` |
10 | |||
11 | ## Entity Collections | ||
12 | |||
13 | See a specific entity collection for specific examples how to access and control an entity object: | ||
14 | |||
15 | [Attributes](attributes), [Categories](categories), [Countries](countries), [Currencies](currencies), [Customers](customers), [Delivery Statuses](delivery_statuses), [Geo Zones](geo_zones), [Languages](languages), [Manufacturers](manufacturers), [Modules](modules), [Orders](orders), [Order Statuses](order_statuses), [Pages](pages), [Products](products), [Quantity Units](quantity_units), [Slides](slides), [Sold Out Statuses](sold_out_statuses), [Suppliers](suppliers), [Tax Classes](tax_classes), [Tax Rates](tax_rates), [Translations](translations), [Users/Administrators](administrators). | ||
16 | |||
17 | ## See Also | ||
18 | |||
19 | * [How To Create an Entity](how_to_create_an_entity) |
Edited by tim on 12 thg 2 2024 at 21:26