Changeset 1706540
- Timestamp:
- 08/01/2017 08:58:52 PM (9 years ago)
- Location:
- wp-vbx-lite/trunk
- Files:
-
- 4 edited
-
applets/dial.php (modified) (1 diff)
-
includes/WP_VBX_Applet.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
wp-vbx.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-vbx-lite/trunk/applets/dial.php
r1620997 r1706540 107 107 } 108 108 109 $dial_stack = array_unique($dial_stack); 109 $dial_stack = apply_filters('wp-vbx-dial-numbers', array_unique($dial_stack), $this); 110 $opts = apply_filters('wp-vbx-dial-twiml-arguments', array('action'=>$this->action), $this); 110 111 111 $dial = $this->twiml->Dial( array('action'=>$this->action));112 $dial = $this->twiml->Dial($opts); 112 113 foreach($dial_stack as $n) { 113 114 $dial->Number($n); -
wp-vbx-lite/trunk/includes/WP_VBX_Applet.php
r1620997 r1706540 299 299 */ 300 300 final public function value($field) { 301 $value = isset($this->instance[$field]) ? $this->instance[$field] : '';301 $value = apply_filters('wp-vbx-applet-value', isset($this->instance[$field]) ? $this->instance[$field] : '', $field); 302 302 return $value; 303 303 } … … 399 399 */ 400 400 final public function request($key) { 401 if (isset($this->request[$key])) return $this->request[$key];401 if (isset($this->request[$key])) return apply_filters('wp-vbx-applet-request', $this->request[$key], $key); 402 402 return false; 403 403 } -
wp-vbx-lite/trunk/readme.txt
r1625012 r1706540 54 54 == Changelog == 55 55 56 === Version 1.2.1 === 57 Added more action and filter hooks. 58 56 59 === Version 1.2 === 57 60 Updated notices for number admin screen. Added more videos to Get Started page. -
wp-vbx-lite/trunk/wp-vbx.php
r1625012 r1706540 5 5 Plugin URI: https://roblesterjr.com/wp-vbx 6 6 Description: Wordpress VBX - Powered by Twilio. Provides an internet based phone system managed right from your wordpress site. 7 Version: 1.2 7 Version: 1.2.1 8 8 Author: Robert Lester 9 9 Author URI: https://roblesterjr.com
Note: See TracChangeset
for help on using the changeset viewer.