%PDF- %PDF-
| Direktori : /home/bitrix/www/bitrix/modules/sender/lib/integration/main/triggers/ |
| Current File : /home/bitrix/www/bitrix/modules/sender/lib/integration/main/triggers/userdontauth.php |
<?
namespace Bitrix\Sender\Integration\Main\Triggers;
use Bitrix\Main\Localization\Loc;
use Bitrix\Main\UserTable;
use Bitrix\Main\Type\DateTime;
use Bitrix\Sender\Trigger\TriggerConnectorClosed;
Loc::loadMessages(__FILE__);
class UserDontAuth extends TriggerConnectorClosed
{
public function getName()
{
return Loc::getMessage('sender_trigger_user_dontauth_name');
}
public function getCode()
{
return "user_dontauth";
}
/** @return bool */
public static function canBeTarget()
{
return false;
}
/** @return bool */
public static function canRunForOldData()
{
return true;
}
public function filter()
{
$daysDontAuth = $this->getFieldValue('DAYS_DONT_AUTH');
if(!is_numeric($daysDontAuth))
$daysDontAuth = 90;
$dateFrom = new DateTime;
$dateTo = new DateTime;
$dateFrom->setTime(0, 0, 0)->add('-' . $daysDontAuth . ' days');
$dateTo->setTime(0, 0, 0)->add('1 days')->add('-' . $daysDontAuth . ' days');
if($this->isRunForOldData())
{
$filter = array(
'!LAST_LOGIN' => null,
'<LAST_LOGIN' => $dateTo,
);
}
else
{
$filter = array(
'>LAST_LOGIN' => $dateFrom,
'<LAST_LOGIN' => $dateTo,
);
}
$filter['=ACTIVE'] = true;
$userListDb = UserTable::getList(array(
'select' => array('EMAIL', 'ID', 'NAME'),
'filter' => $filter,
'order' => array('ID' => 'ASC')
));
if($userListDb->getSelectedRowsCount() > 0)
{
$userListDb->addFetchDataModifier(array($this, 'getFetchDataModifier'));
$this->recipient = $userListDb;
return true;
}
else
return false;
}
public function getRecipient()
{
return $this->recipient;
}
public function getForm()
{
$daysDontAuth = ' <input size=3 type="text" name="'.$this->getFieldName('DAYS_DONT_AUTH').'" value="'.htmlspecialcharsbx($this->getFieldValue('DAYS_DONT_AUTH', 90)).'"> ';
return '
<table>
<tr>
<td>'.Loc::getMessage('sender_trigger_user_dontauth_days').'</td>
<td>'.$daysDontAuth.'</td>
</tr>
</table>
';
}
public function getFetchDataModifier($fields)
{
if(isset($fields['ID']))
{
$fields['USER_ID'] = $fields['ID'];
unset($fields['ID']);
}
return $fields;
}
}