Commit Graph

80 Commits

Author SHA1 Message Date
demonspork 15894f4e17 Fixed Issue with extension limits preventing Extension Search
Extension searches would fail if an extension limit was set. This is because the unset($parameters) that was used at the end of the query that counts the extensions is also unsetting the "search" parameter that was set previously. I moved the //get total extension count for domain query to happen before the search parameter is added to fix it.
2020-11-19 17:18:51 -06:00
FusionPBX e9584fe09c
Add permission_exists outbound_caller_id_name to hide column if user is does not have the permission. 2020-07-07 11:04:17 -06:00
Nate 6d451e311b Extensions - List: Fix Registered state and count when Show All enabled. 2020-04-13 11:39:13 -06:00
Nate 5b5effe58f Extensions - List: Update to use reworked modal. 2020-03-25 16:52:30 -06:00
Nate 3b9a3b5e68 Extensions: Use default cancel button icon. 2020-03-05 09:44:43 -07:00
Nate 029c7174b4 Multiple - Add IDs to common/default action buttons. 2020-03-05 00:05:45 -07:00
Nate e869d1ba38 Extensions - Edit: Remove deprecated javascript. 2020-03-04 17:56:06 -07:00
Nate 8a6ba1fda2 Extensions: Option to delete voicemail when deleting extensions. 2020-02-18 07:44:01 -07:00
Nate aa593c03fc List Views: Minor adjustments to code. 2019-11-30 14:18:00 -07:00
Nate bfb17507f1 List Views: Simplify action handling. 2019-11-30 11:12:41 -07:00
Nate 0e56d1b7e5 Extensions: List view updates. 2019-11-18 13:31:06 -07:00
Nate e85b12be57 Update extensions.php 2019-11-02 21:12:12 -06:00
chansizzle 2ad1e94563 Update extensions.php (#4682) 2019-09-27 15:52:14 -06:00
Nate abc4d01bac Extensions: Retain current list page through edit, (single) delete, and back operations. 2019-09-10 18:07:49 -06:00
Nate 8a6eecd20a Extensions: Fix paging. 2019-09-10 12:54:06 -06:00
Nate 86c32484ea Extensions: Add natural sorting for PostgreSQL (Upgrade > App Defaults to create required function). 2019-09-09 08:21:58 -06:00
FusionPBX d5ef375a35 Update extensions.php 2019-09-04 23:15:10 -06:00
FusionPBX 17b39b9e2c Update extensions.php 2019-08-16 11:25:32 -06:00
Nate 7bf2c1d19f Pin Numbers: Database class integration. 2019-08-12 05:26:58 -06:00
Nate 8516bc38ad Extensions: Database class integration. 2019-08-06 19:49:59 -06:00
FusionPBX 7d5cff4eeb Update extensions.php 2019-06-03 13:50:56 -06:00
FusionPBX 7c7af05b6c Update extensions.php 2018-12-04 22:06:50 -07:00
FusionPBX d1e677b450 Update extensions.php 2018-11-21 12:46:50 -07:00
FusionPBX 3527fd9f39 Update extensions.php 2018-09-28 11:06:32 -06:00
FusionPBX 07d951c577 Update extensions.php 2018-06-29 22:58:48 -06:00
FusionPBX 9b01433a1a Update extensions.php 2018-06-02 21:25:11 -06:00
FusionPBX 9e22daceaf Update extensions.php 2018-02-22 09:40:45 -07:00
FusionPBX e46283638b Update extensions.php 2017-12-09 13:12:27 -07:00
FusionPBX 9920be32a5 Update extensions.php 2017-12-09 13:08:09 -07:00
Alexey Melnichuk 45879e80ce Fix. Show registrations for extensions with number alias. (#2914) 2017-11-20 13:59:50 -07:00
FusionPBX 07fd7c2e6b Update extensions.php 2017-11-17 07:41:29 -07:00
FusionPBX f4f0ef5626 Update extensions.php 2017-08-28 02:21:59 -06:00
FusionPBX ee80056f07 Update extensions.php
Update the extensions header.
2016-08-04 20:05:56 -06:00
FusionPBX b7fafa2c50 Update extensions.php
Move extension registered before enabled and description which are always last.
2016-07-28 09:59:38 -06:00
FusionPBX 47e22e5f61 Update extensions.php
Change extension_show_registered to extension_registered.
2016-07-27 23:59:25 -06:00
Chris Black 1cca98951d Fix my PR for the device registered on extensions page. (#1772)
* Fix my PR for the device registered on extensions page.

* Change to registered
2016-07-27 23:03:59 -06:00
reliberate bf5f1223af Gateways: Fix paging and order by.
Devices/Users/Extensions: Visual adjustments.
2016-05-21 13:04:31 -06:00
markjcrane 9e20f0a570 Update the record count for extensions list. 2016-05-07 18:06:36 -06:00
markjcrane 9d0eac2111 On the extensions page use is_array($extensions) instead of $num_rows 2016-05-07 17:37:24 -06:00
markjcrane 2378ace5a8 Change the method to detect if the array exists for extensions. 2016-05-07 17:27:27 -06:00
FusionPBX 3e33a7c15c Merge pull request #1562 from moteus/display_long_extensions
Fix. Display long extensions (>9 digits)
2016-04-29 09:25:46 -06:00
Alexey Melnichuk a0c79a685a Fix. Display long extensions (>9 digits) 2016-04-28 14:37:58 +03:00
Harry G. Coin 1f9ad42543 include omitted column name, partial fix to support mariadb 10.1. 2016-04-25 20:44:30 -05:00
reliberate d73ea93a14 Voicemail: Show Add button even when no Voicemails exist.
Extensions: Integrate keyboard shortcuts (Ctrl+A to select all, Delete to delete checked).
2016-03-31 18:03:32 -06:00
Alexey Melnichuk 04a0349050 Fix. Display extension on MySQL.
Problem that
```SQL
select (select count(*) as num_rows ...)
```
is  not the same as
```SQL
select (select count(*) ...) as num_rows
```

I think problem may be on SQLite too.
2016-03-29 19:00:59 +03:00
markjcrane b7ee8d69c3 Fix the problem with non-numeric extension causing an error. Not certain we will keep this method but its an interesting solution. 2016-03-29 03:42:24 -06:00
reliberate 5974b686e9 Apps: Integrate ability to set paging via a Default/Domain/User Setting (domain > paging > numeric). 2016-03-28 23:02:11 -06:00
reliberate 5793de2851 Destinations/Extensions/Voicemails: Better sorting ability. 2016-03-28 15:21:05 -06:00
reliberate 39bfec7aa2 Extensions: Added bulk delete.
Voicemail: Added bulk delete.  On delete, remove recordings folder, and voicemail_options, _destinations, and _greetings database records.
2016-03-16 18:48:42 -06:00
reliberate 39a31432ba User Dashboard: Minor layout optimizations.
Follow Me: Added search and minimized paging controls.
Extensions: Added minimized paging controls.
2016-03-03 19:01:58 -07:00