الفرق بين المراجعتين لصفحة: «Twig/format time»
< Twig
أسامه-دمراني (نقاش | مساهمات) 1.0: إضافة عنوان الصفحة | 2.0 محتوى الصفحة |
أسامه-دمراني (نقاش | مساهمات) طلا ملخص تعديل |
||
سطر 1: | سطر 1: | ||
<noinclude>{{DISPLAYTITLE: المرشح format_time في Twig}}</noinclude> | {{DISPLAYTITLE: المرشح format_time في Twig}}<noinclude>{{DISPLAYTITLE: المرشح format_time في Twig}}</noinclude> | ||
ال{{DISPLAYTITLE: المرشح format_time في Twig}}مرشح <code>format_time</code> يغير تنسيق الوقت، ويتصرف بنفس أسلوب المرشح [[Twig/format datetime|format_datetime]] لكن من غير الجزء الخاص بالتاريخ. | |||
المرشح format_time يغير تنسيق الوقت، ويتصرف بنفس أسلوب المرشح [[Twig/format datetime|format_datetime]] لكن من غير الجزء الخاص بالتاريخ. | لاحظ أن المرشح <code>format_time</code> جزء من <code>IntlExtension</code> وهذا لا يكون مثبتًا افتراضيًا، لذا ثبته أولًا:<syntaxhighlight lang="twig"> | ||
لاحظ أن المرشح <code>format_time</code> جزء من <code>IntlExtension</code> وهذا لا يكون مثبتًا افتراضيًا، لذا ثبته أولًا: | |||
<syntaxhighlight lang="twig"> | |||
$ composer require twig/intl-extra | $ composer require twig/intl-extra | ||
</syntaxhighlight> | </syntaxhighlight> |
مراجعة 07:07، 3 مايو 2021
المرشح format_time
يغير تنسيق الوقت، ويتصرف بنفس أسلوب المرشح format_datetime لكن من غير الجزء الخاص بالتاريخ.
لاحظ أن المرشح format_time
جزء من IntlExtension
وهذا لا يكون مثبتًا افتراضيًا، لذا ثبته أولًا:
$ composer require twig/intl-extra
ثم ثبت twig/extra-bundle
في حالة مشاريع Symfony:
$ composer require twig/extra-bundle
أما غير ذلك فأضف التوسيع صراحة إلى بيئة Twig:
use Twig\Extra\Intl\IntlExtension;
$twig = new \Twig\Environment(...);
$twig->addExtension(new IntlExtension());
الوسائط
locale
: الإعدادات المحلية.timeformat
: صيغة الوقت.pattern
: نمط التاريخ والوقت.timezone
: المنطقة الزمنية.calender
: التقويم (يكون ميلاديًا افتراضيًا).