first commit

This commit is contained in:
2024-10-28 22:14:22 +01:00
commit b65352c452
40581 changed files with 5712079 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
<?php
/**
* Since 2013 Ovidiu Cimpean.
*
* Ovidiu Cimpean - Newsletter Pro © All rights reserved.
*
* DISCLAIMER
*
* Do not edit, modify or copy this file.
* If you wish to customize it, contact us at addons4prestashop@gmail.com.
*
* @author Ovidiu Cimpean <addons4prestashop@gmail.com>
* @copyright Since 2013 Ovidiu Cimpean
* @license Do not edit, modify or copy this file
*
* @version Release: 4
*/
class NewsletterProTemplateVariableGender
{
/**
* Setup the user variables.
*
* The class name should be like the filename without slashes and with camelcase words
* Example:
* my_variable_name.php the class will be NewsletterProTemplateVariableMyVariableName
*
* Example:
* $user->my_name = 'John Smith';
*
* The variable available in the template will be {my_name}
*
* The help files will are placed in the folder newsletterpro/views/templates/admin/variables_help/
*
* @param object $user
*/
public function __construct(&$user)
{
$user->gender = '';
if ('customer' == $user->user_type) {
$customer = new Customer($user->id);
if (Validate::isLoadedObject($customer)) {
if (isset($customer->id_gender) && $customer->id_gender > 0) {
$gender = new Gender($customer->id_gender);
if (Validate::isLoadedObject($gender)) {
if (isset($gender->name[$user->id_lang])) {
$user->gender = $gender->name[$user->id_lang];
}
}
}
}
}
}
}