Commit Graph

448 Commits

Author SHA1 Message Date
Nate 5232c2bf0a Email Logs: List view updates, search, bulk resend, download, delete. 2019-11-10 01:40:29 -07:00
Nate 0f6ece6850 Destinations: List view updates. 2019-11-06 11:29:11 -07:00
Nate 1677b81466 Active Calls: Update refresh/pause button. 2019-10-30 01:05:43 -06:00
Nate fd4cb8577f Active Calls: List view updates, bulk call hangup. Button Class: Add onmouseover/out support. 2019-10-29 23:11:19 -06:00
Nate 6a8fc50e53 Button class updates, logic updates to other files. 2019-10-23 21:19:37 -06:00
Nate 0e607606ca Update Button class. 2019-10-22 01:41:16 -06:00
Nate 7f7c3694be Add a little documentation to the Button class. 2019-10-21 10:23:58 -06:00
Nate ce9ec169e6 CSS: Define responsive breakpoints, add to Access Controls, Bridges, Call Block, Buttons class. 2019-10-19 20:29:44 -06:00
Nate 238c689630 Update button.php 2019-10-19 10:08:16 -06:00
FusionPBX a6eb416982
Update cache.php 2019-10-15 13:54:55 -06:00
chansizzle 11b6972065 Update menu.php (#4779) 2019-10-14 19:51:36 -07:00
FusionPBX 6ae49c65b5
Update menu.php 2019-10-13 15:44:21 -06:00
FusionPBX 7e0cf61404
Update menu.php 2019-10-12 15:37:22 -06:00
Nate 7929f2e0b7 Bridges: Misc updates, integrate Button class. 2019-10-12 01:12:59 -06:00
FusionPBX 42c15a2f2e
Update destinations.php 2019-10-05 17:33:28 -06:00
FusionPBX 8964ce1662
Update event_socket.php 2019-09-24 18:14:43 -06:00
chansizzle 5d2099a80b Update text.php (#4654) 2019-09-24 16:40:50 -06:00
chansizzle d24a4e8e82 Update event_socket.php (#4652)
removes potential "Warning: fsockopen(): unable to connect to 127.0.0.1:8021 (Connection refused)"
2019-09-24 16:40:31 -06:00
chansizzle d93f3a3653 Update ringbacks.php (#4643) 2019-09-24 12:12:15 -06:00
FusionPBX 4071522c5f
Update token.php 2019-09-16 18:23:15 -06:00
FusionPBX dbe9b22f55
Create token.php 2019-09-16 08:18:16 -06:00
Nate c7d5c2a7cf Users: Prevent duplicate usernames. 2019-09-10 19:23:14 -06:00
FusionPBX 7f735837dd
Update schema.php 2019-09-10 17:50:41 -06:00
FusionPBX b77ab0d936
Update destinations.php 2019-09-10 13:50:42 -06:00
Nate f22d5574c7 Misc Classes: Database class integration. 2019-09-04 06:44:50 -06:00
Nate 31649b5580 Menu Class: Database class integration. 2019-09-03 09:59:37 -06:00
Nate fabda61963 Misc Classes: Database class integration. 2019-09-02 15:57:18 -06:00
FusionPBX 25c42fb82c
Update database.php 2019-08-20 13:05:27 -06:00
FusionPBX 6e936e1777
Update database.php 2019-08-20 12:40:51 -06:00
FusionPBX 9a80b97f77
Update destinations.php 2019-08-13 12:44:38 -06:00
FusionPBX b12b7f65de
Update destinations.php 2019-08-13 12:41:55 -06:00
FusionPBX 54396d3fe9
Update database.php 2019-08-03 16:16:30 -06:00
FusionPBX 5a58133df8
Update cache.php 2019-07-30 00:11:50 -06:00
FusionPBX d0f91703f9
Update groups.php 2019-07-28 16:09:17 -06:00
FusionPBX c741010570
Update groups.php 2019-07-28 15:34:21 -06:00
Nate 646873287d Make singular() method public in database class. 2019-07-27 21:03:16 -06:00
FusionPBX 3e92c7ce2b
Update schema.php 2019-07-27 16:53:42 -06:00
FusionPBX 8ea053e3e0
Update schema.php 2019-07-27 16:34:20 -06:00
FusionPBX b25791c090
Update schema.php 2019-07-27 09:12:38 -06:00
Nate 6ee98f351d Adjust singular() method in database class to support 'addresses'. 2019-07-27 09:02:47 -06:00
FusionPBX 8202e05d71
Update groups.php 2019-07-25 23:37:48 -06:00
Nate fca4691ac6 Database class integration. Modify database class singular() method to support table names ending in 'ses', such as v_databases. 2019-07-09 20:06:17 -06:00
Nate 9b57165ed3 Fix typo in select() method switch statement. 2019-07-01 13:26:26 -06:00
Nate 058dec41b9 Database Class Support for "...ies" Table Names (#4321)
Currently, the permission checks within the class try to singularize the table name, then check for permissions based on the result.  This PR modifies the private singular() function to support table names that end in "...ies", where an _add or _edit permission likely uses a 'y' instead.  An example would be where inserting records into v_event_categories, the class should probably look for an "event_category_add" permission, instead of "event_categorie_add".  Likewise for update queries.  

This proposed change isn't foolproof, obviously. In the case of inserting or updating records in a table named v_pies, it would fail to suffice.  You're welcome to integrate a better solution, if one exists.
2019-06-30 15:11:15 -06:00
jpattWPC 7937f72ed3 Add support for PostgreSQL TLS (#4262)
This commit adds support for PostgreSQL TLS communication. This requires /etc/fusionpbx/config.php to have two parameters added:

$db_secure = true;
$db_cert_authority = "/path/to/ca.crt";
2019-06-05 21:10:58 -06:00
FusionPBX 1edbef23dd
Update message.php 2019-05-30 01:55:07 -06:00
FusionPBX ab1bc930d0 Revert "[4.5] Fix the ALTER TABLE (#4097)"
This reverts commit 8822528227.
2019-05-30 00:56:51 -06:00
FusionPBX 641aa60469
Update database.php 2019-05-27 19:56:32 -06:00
FusionPBX a56a62d00d
White space cleanup on the text class. 2019-05-25 23:40:51 -06:00
Luis Daniel Lucio Quiroz 8822528227 [4.5] Fix the ALTER TABLE (#4097)
* Fix the ALTER TABLE

when $apps[$x]['db'][$y]['fields'][$z]['name'] is an array, you dont try to get the ['text'] index therefore fields such as v_xml_cdr.xml_uuid, v_destinations.destination_type and v_destinations.destination_number wont be created when upgrading.

This patch fixes it

* Update schema.php
2019-05-08 14:02:20 -06:00