You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
518B

  1. <?php
  2. namespace console\commands;
  3. use domain\Producer\Producer\ProducerModule;
  4. use yii\console\Controller;
  5. class ProducerDescriptionNl2brController extends Controller
  6. {
  7. // ./yii producer-description-nl2br/apply
  8. public function actionApply()
  9. {
  10. $producerModule = ProducerModule::getInstance();
  11. foreach($producerModule->getRepository()->findProducers() as $producer) {
  12. $producer->description = nl2br($producer->description);
  13. $producer->save();
  14. }
  15. }
  16. }
  17. ?>