The question is: how to pass an array of identifiers [ids] of marked records in section "Contacts", through the mass update in EntryPoints php file?
<?php
namespace Espo\Custom\EntryPoints;
class myEP extends \Espo\Core\EntryPoints\Base
{
public static $authRequired = false;
public function run()
{}
}
which function and where should I write in my code that used to get an array of identifiers marked records?
If possible, give an example of a piece of code. Thank you!
<?php
namespace Espo\Custom\EntryPoints;
class myEP extends \Espo\Core\EntryPoints\Base
{
public static $authRequired = false;
public function run()
{}
}
which function and where should I write in my code that used to get an array of identifiers marked records?
If possible, give an example of a piece of code. Thank you!
Comment