Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Determine VM context from Extension number #1

Open
lgaetz opened this issue Dec 27, 2013 · 0 comments
Open

Determine VM context from Extension number #1

lgaetz opened this issue Dec 27, 2013 · 0 comments

Comments

@lgaetz
Copy link
Owner

lgaetz commented Dec 27, 2013

Can use the snippet below to determine the voicemail context set for an extension

$extension = '103';
$extens = core_users_list();
$vmcontext = ext2vmcontext($extens,$extension);


// function ext2vmcontext accepts the array output from core_users_list() and an extension number
// then returns the voicemail context set for that extension
function ext2vmcontext($array, $ext)
{
   foreach($array as $key => $count)
   {
      if ( $count['0'] == $ext )
         return $count['2'];
   }
   return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant