diff --git a/docs/guide-ar/start-workflow.md b/docs/guide-ar/start-workflow.md index d706844755..6bdd9f11e4 100644 --- a/docs/guide-ar/start-workflow.md +++ b/docs/guide-ar/start-workflow.md @@ -106,11 +106,10 @@ basic/ application base path
  • يقوم التطبيق بمعالجة ال requested route بمساعدة من ال request application component.
  • يقوم التطبيق على إنشاء instance من ال controller للتحكم بال request.
  • يقوم ال controller على إنشاء action instance مع مجموعة من الفلاتر(المرشحات) الخاصة بهذا ال action.
  • +
  • في حالة فشل أي فلتر، يتم إلغاء الإجراء.
  • +
  • في حال نجاح جميع الفلاتر ، يتم تنفيذ الإجراء.
  • +
  • يقوم ال action بجلب بعض البيانات الخاصة بال models, وفي الغالب ستكون من قاعدة البيانات إن أمكن ذلك.
  • +
  • سيقوم ال action بجلب ال view ليقوم بتقديم البيانات التي تم جلبها لل view.
  • +
  • عملية الجلب السابقة ستقوم على إرجاع النتائج الى response application component
  • +
  • بعد ذلك سيقوم ال response component بإرسال النتيجة النهائية الى المتصفح الخاص بالمستخدم.
  • - -6. If any filter fails, the action is cancelled. -7. If all filters pass, the action is executed. -8. The action loads some data models, possibly from a database. -9. The action renders a view, providing it with the data models. -10. The rendered result is returned to the [response](runtime-responses.md) application component. -11. The response component sends the rendered result to the user's browser.