5
सामग्री प्रकार प्रति प्रीप्रोसेस फ़ंक्शन
मेरे पास कुछ सामग्री प्रकार हैं, जिन्हें मुझे अलग-अलग तरीकों से प्रीप्रोसेस करने की आवश्यकता है। इसलिए template.phpमेरे विषय में fooवर्तमान में ऐसा दिखता है: function foo_preprocess_node(&$variables) { if ('news' ==$variables['type']) _preprocess_news($variables); if ('event'==$variables['type']) _preprocess_event($variables); if ('alert'==$variables['type']) _preprocess_alert($variables); ... } function _preprocess_news(&$variables) { ... } function _preprocess_event(&$variables) { ... } …