Beispiel #1
0
 /**
  * Load data from a yaml fixtures file.
  * The output of dumpData can be fed to loadData
  *
  * @param string $yamlPath Path to your yaml data fixtures
  * @param string $append Whether or not to append the data
  * @return void
  */
 public static function loadData($yamlPath, $append = false, $charset = 'UTF-8')
 {
     $data = new Doctrine_Data();
     return $data->importData($yamlPath, 'yml', array(), $append, $charset);
 }
Beispiel #2
0
 /**
  * Load data from a yaml fixtures file.
  * The output of dumpData can be fed to loadData
  *
  * @param string $yamlPath Path to your yaml data fixtures
  * @param string $append Whether or not to append the data
  * @return void
  */
 public static function loadData($yamlPath, $append = false)
 {
     $data = new Doctrine_Data();
     return $data->importData($yamlPath, 'yml', array(), $append);
 }
 /**
  * Load data from a yaml fixtures file.
  * The output of dumpData can be fed to loadData
  *
  * @param string $yamlPath Path to your yaml data fixtures
  * @param string $append Whether or not to append the data
  * @return void
  */
 public static function loadData($yamlPath, $append = false)
 {
     $data = new Doctrine_Data();
     if (!$append) {
         $data->purge();
     }
     return $data->importData($yamlPath, 'yml');
 }