Blame view

export/PHPRtfLite-1.3.1/docs/html/_sources/tutorials/introduction.txt 316 Bytes
f90e19c3   Andrea Petta   plugin update
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  .. introduction:
  
  ************
  Introduction
  ************
  
  Labber sülz
  
  Products can also be created:
  
  .. code-block:: php
  
      <?php
      $newProductName = "My Product";
      
      $product = new Product();
      $product->name = $newProductName;
      
      $entityManager->persist($product);
      $entityManager->flush();