This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:7CACC1CC2F6E8E8A471AE8C8F6282D0368B3AA28]
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:7CACC1CC2F6E8E8A471AE8C8F6282D0368B3AA28]
I hereby claim:
To claim this, I am signing this object:
I have made the User Provisioning to be based around Phones. Phones can have a Provision assigned to them. There is an ajax endpoint for it at [POST]/phone-provisioning/ajax/toggle-provision/{phone_id}/{provision_id}
This will respond with {success:true/false}
; ====================================== | |
; = ClearVox UC Asterisk Module Config = | |
; ====================================== | |
[modules] | |
; ----------- | |
; APPS | |
; ----------- | |
noload => app_adsiprog.so | |
noload => app_agent_pool.so | |
noload => app_alarmreceiver.so |
# | |
# | |
mtllib Millennium_Falcon.mtl | |
o MillenniumFalconBottom | |
v -36.893936 72.863998 357.389221 | |
v -36.816784 72.863998 429.544434 | |
v -46.681076 71.182709 436.585602 | |
v -47.134781 71.182709 344.156738 | |
v -46.511078 70.117912 264.955475 | |
v -107.793953 70.942482 274.368286 |
<?php | |
namespace Project\Planets; | |
class Planet | |
{ | |
protected $name; | |
/** | |
* @var Resource[] |
protected function map(SoundGroupModel $soundGroupModel) | |
{ | |
$soundGroupArray = $soundGroupModel->toArray(); | |
$soundGroup = $this->mapper->map($soundGroupArray); | |
$customFiles = $soundGroup->getCustomFiles(); | |
foreach ($soundGroupModel->files as $soundGroupFileModel) { | |
// Needed variables | |
$name = $soundGroupFileModel->name; |
<?php | |
namespace App\Setting; | |
use Illuminate\Contracts\Support\Arrayable; | |
class SettingRequest implements Arrayable | |
{ | |
protected $code; | |
/** | |
* register Som Scripts to the Dom | |
* @param $isAdmin | |
* @return callable | |
*/ | |
add_action("wp_enqueue_scripts", function() { | |
// Constantin CSS | |
wp_register_style( | |
"enquiss", |
<?php | |
// Just replace pronamic with an unique identifier. | |
// and replace video with a slugname for your function of the box. | |
add_action( 'add_meta_boxes', 'wp_pronamic_add_meta_boxes' ); | |
add_action( 'save_post', 'wp_pronamic_video_meta_box_save', 10, 2 ); | |
function wp_pronamic_add_meta_boxes() { | |
add_meta_box( 'pronamic_video_meta_box', __( 'Review Rating', 'wp_vision' ), 'wp_pronamic_video_meta_box_show', 'pronamic', 'normal' ); | |
} | |
function wp_pronamic_video_meta_box_show( WP_Post $post ) { |