MemberMouse vous offre une large gamme de SmartTags™ you can use to create a dynamic experience for your members. There are SmartTags™ that display the current member’s name, email address, and other information. There are tags you can use to allow members to manage their subscriptions, others to change content based on the current member’s access rights, and a lot more!
This is all very helpful when you’re working within WordPress’ content editor, but what if you want to be able to do all of this within a custom PHP script?
C'est là que l'interface PHP entre en jeu.
NOTE: MemberMouse currently requires a minimum of PHP 7.4. We recommend the latest version of the PHP branch. Please see our Exigences en matière de système et d'hébergement pour obtenir les informations les plus récentes.
Exigences relatives à l'interface PHP
The PHP interface functions require access to MemberMouse libraries in order to work. When you use the PHP interface functions within a WordPress template, these libraries are automatically loaded. However, if you want to use them within a standalone PHP script, you’ll need to manually load the MemberMouse libraries by adding the following includes to the top of your file:
require_once("wp-load.php") ;
require_once("wp-content/plugins/membermouse/includes/mm-constants.php") ;
require_once("wp-content/plugins/membermouse/includes/init.php") ;
If your script is located in the root WordPress directory then you can use the includes exactly as they’re presented above. If your script is located in another directory then you need to update the file paths appropriately.
Translating SmartTags™ in PHP Functions
With MemberMouse’s PHP Interface you can utilize MemberMouse SmartTags™ right within a custom PHP script. You can use any WordPress plugin for executing PHP (i.e. PHP Exec) to use the PHP Interface functions right within the WordPress content editor. All SmartTags™ are supported through the PHP Interface with the exception of MM_Form… and MM_Error… SmartTags™.
When using SmartTags™ within the WordPress content editor the following syntax is used:
[MM_Member_Data name='email']
[MM_Member_Decision membershipId='2|3']...[/MM_Member_Decision].
SmartTags™ are transformed into their PHP interface equivalent by taking the SmartTag™ name, making it all lowercase, and adding parenthesis to make it a valid PHP function.
So for example, [ MM_Order_Data ] becomes mm_order_data ( ).
Les attributs sont transmis aux fonctions d'interface PHP sous la forme d'un tableau associatif.
Voici quelques exemples :
mm_member_data(array("name"=>"email"))
mm_member_decision(array("isMember"=>"true", "membershipId"=>"2|3"))
The PHP Interface function accepts all of the same attributes as the SmartTag™ itself. Refer to the SmartTag™ documentation for a list of attributes by SmartTag™.
Valeurs de retour
mm_..._data() renvoient une chaîne de caractères contenant les données demandées.
mm_..._link() renvoient une chaîne de caractères contenant une URL ou une fonction javascript qui doit être placée à l'intérieur d'un fichier <a> ou pour en faire un lien fonctionnel.
mm_..._decision() fonctions retour vrai ou faux en fonction des attributs transmis à la fonction et du contexte dans lequel elle est exécutée.
Exemples
To see examples of how each SmartTag™ can be used in PHP, télécharger l'exemple de script.

