সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
Google ট্যাগ ম্যানেজারের কার্যকারিতা বাড়ানোর জন্য, আপনি ফাংশন কল ভেরিয়েবল এবং ফাংশন কল ট্যাগ যোগ করতে পারেন। ফাংশন কল ভেরিয়েবল আপনাকে প্রাক-নিবন্ধিত ফাংশনগুলিতে কলের মাধ্যমে ফিরে আসা মানগুলি ক্যাপচার করতে দেয়। ফাংশন কল ট্যাগগুলি আপনাকে প্রাক-নিবন্ধিত ফাংশনগুলি সম্পাদন করতে দেয় (যেমন অতিরিক্ত পরিমাপ এবং পুনঃবিপণন সরঞ্জামগুলির জন্য হিটগুলি ট্রিগার করা যা বর্তমানে Google ট্যাগ ম্যানেজারে ট্যাগ টেমপ্লেটগুলির সাথে সমর্থিত নয়)৷
একটি কাস্টম ট্যাগ তৈরি করতে, একটি ক্লাস তৈরি করুন যা TAGCustomFunction প্রোটোকল প্রয়োগ করে:
@implementationMYCustomTag<TAGCustomFunction>-(NSObject*)executeWithParameters:(NSDictionary*)parameters{// Add custom tag implementation here.}@end
একটি কাস্টম ভেরিয়েবল তৈরি করতে, একটি ক্লাস তৈরি করুন যা TAGCustomFunction প্রোটোকল প্রয়োগ করে:
@implementationMYCustomVariable<TAGCustomFunction>-(NSObject*)executeWithParameters:(NSDictionary*)parameters{// Return the value of the custom variable.return@42;}@end
একবার আপনার ক্লাস TAGCustomFunction এর সাথে সেট আপ হয়ে গেলে, আপনার তৈরি করা ক্লাসের নামের সাথে ট্যাগ বা ভেরিয়েবল সেট আপ করতে ট্যাগ ম্যানেজারের ওয়েব ইন্টারফেস ব্যবহার করুন।
[[["সহজে বোঝা যায়","easyToUnderstand","thumb-up"],["আমার সমস্যার সমাধান হয়েছে","solvedMyProblem","thumb-up"],["অন্যান্য","otherUp","thumb-up"]],[["এতে আমার প্রয়োজনীয় তথ্য নেই","missingTheInformationINeed","thumb-down"],["খুব জটিল / অনেক ধাপ","tooComplicatedTooManySteps","thumb-down"],["পুরনো","outOfDate","thumb-down"],["অনুবাদ সংক্রান্ত সমস্যা","translationIssue","thumb-down"],["নমুনা / কোড সংক্রান্ত সমস্যা","samplesCodeIssue","thumb-down"],["অন্যান্য","otherDown","thumb-down"]],["2024-11-18 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["Function Call variables and tags extend Google Tag Manager's capabilities by enabling custom functions."],["Function Call variables capture values from pre-registered functions, while Function Call tags execute them."],["Custom tags and variables are created by implementing the `TAGCustomFunction` protocol in a class."],["These custom classes are then utilized within Tag Manager's interface to set up new tags or variables."]]],["Function Call variables and tags in Google Tag Manager enhance its capabilities by interacting with pre-registered functions. Both utilize a class implementing the `TAGCustomFunction` protocol, with the `executeWithParameters` method defining their behavior. For a tag, this method executes custom logic; for a variable, it returns a value. After implementing the protocol in the class, you can use the Tag Manager web interface to create tags or variables by referencing the class name.\n"]]