fusionate
bc34789bdc
Permission [Class] - Updates for PHP 8.1
2023-05-16 18:54:27 +00:00
fusionate
f7951324ea
Domains [Class] - Updates for PHP 8.1
2023-05-16 18:42:32 +00:00
markjcrane
3cf0334686
Check if the sounds directory exists
2023-05-16 00:36:27 -06:00
markjcrane
74b3ce154c
Update file.php minor code improvements
2023-05-15 23:17:37 -06:00
markjcrane
78bb6ec80c
Fix PHP 8.1 ringback errors
2023-05-15 22:53:00 -06:00
FusionPBX
64c159931c
Update database.php strlen replace with isset
...
Used isset instead of empty because empty treats a numeric value of 0 as empty.
2023-05-13 22:13:40 -06:00
FusionPBX
5755ae3f48
Update schema.php for PHP 8.1
2023-05-13 17:31:27 -06:00
FusionPBX
7a8b2b7d79
Update database.php prevent more php 8.1 warnings.
2023-05-13 12:35:17 -06:00
fusionate
196125952b
Message [Class]: Updates for PHP 8.1
2023-05-13 04:52:43 +00:00
FusionPBX
ff2c52eda8
Update domains.php
2023-05-12 20:32:44 -06:00
FusionPBX
44a46d491b
Use !empty in the if statement
2023-05-12 20:24:39 -06:00
FusionPBX
a2bb8e5f90
Limit subquery to one result
...
This prevent a cardinality error.
2023-05-12 16:22:50 -06:00
FusionPBX
b86cd20e8e
Use isset instead of is_uuid
2023-05-10 22:01:12 -06:00
frytimo
872e676f59
Fix missing php tags ( #6687 )
...
* fix missing php tags
* fix missing php tags
2023-05-10 18:19:57 -06:00
fusionate
e7b72de33c
Modal [Class]: Updates for PHP 8.1
2023-05-10 22:59:12 +00:00
fusionate
6d4463a5b7
Auto Loader [Class]: Updates for PHP 8.1
2023-05-10 22:39:48 +00:00
fusionate
4de76b44f2
Auto Loader [Class]: Updates for PHP 8.1
2023-05-10 22:37:47 +00:00
fusionate
8021a71647
Menu [Class]: Updates for PHP 8.1
2023-05-10 22:17:19 +00:00
fusionate
43961ec6f2
Message [Class]: Update for PHP 8.1
2023-05-10 22:02:13 +00:00
fusionate
bac9c83f33
Modal [Class]: Update for PHP 8.1
2023-05-10 21:58:51 +00:00
fusionate
46ff8cb278
Message [Class]: Update for PHP 8.1
2023-05-10 21:58:37 +00:00
FusionPBX
c57fa0fc39
Update for PHP 8.1
2023-05-09 18:39:24 -06:00
fusionate
5f2a3fde90
Button [Class]: Update for PHP 8.1
2023-05-09 22:52:04 +00:00
FusionPBX
b732c0afe9
[Bug] value of 0 treated as empty
...
When empty is used its treating 0 as an empty value and then the value is set to null. Will work on the changes further to prevent this problem.
2023-05-09 11:14:41 -06:00
FusionPBX
bc0c2ea588
$db variable needed by schema class
2023-05-09 08:39:42 -06:00
FusionPBX
89af27e94e
Update button.php
2023-05-08 23:03:00 -06:00
FusionPBX
9e4e8558e5
Remove debug
2023-05-08 22:30:39 -06:00
FusionPBX
edb12399ce
Add not empty debug
2023-05-08 17:21:52 -06:00
frytimo
fef8165be2
Frytimo pr patches for php8.1 ( #6630 )
...
* Passing null to parameter #2 ($string) of type string is deprecated
* Passing null to parameter #1 ($string) of type string is deprecated
* php 8.1 fixes
* php 8.1 fixes - replace strlen($var) > 0 with !empty($var)
* php 8.1 fixes - replace ${var} with {$var}
* php 8.1 fixes - replace ${var} with {$var}
* php 8.1 fixes - replace ${var} with {$var}
* php 8.1 fixes - replace ${var} with {$var}
* php 8.1 fixes - strlower with null
* php 8.1 fixes - strreplace with null
* php 8.1 fixes - passing null to base64_decode
* php 8.1 fixes - check for false and check for null on $this->dir
* php 8.1 fixes - remove assignment of $db variable to modules object
* php 8.1 fixes - avoid sending null to substr
* php 8.1 fixes - change ${var} to {$var}
* php 8.1 fixes - check for null before preg_replace
* php 8.1 fixes - remove setting db variable on domains object
* php 8.1 fixes - set empty string if $row['domain_setting_subcategory'] is null
* php 8.1 fixes - set empty string if $_REQUEST['show'] is not available
* php 8.1 fixes
* php 8.1 fixes - correct $_POST checking syntax
* php 8.1 fixes - correct $_POST variables
* php 8.1 fixes
* Use brackets consistently
* Update user_setting_edit.php
* Change to not empty
* Update device.php
* Update text.php
---------
Co-authored-by: Tim Fry <tim@voipstratus.com>
Co-authored-by: FusionPBX <markjcrane@gmail.com>
2023-05-05 10:46:37 -06:00
frytimo
37646c0893
Frytimo pr remove unused variables and fix clobbering ( #6656 )
...
* config->exists returns true or false but no action taken and variable
is unused
* remove unused variable db_type
* remove unused variable db_name
* remove unused variable db_username
* remove unused variable db_password
* remove unused variable db_secure
* remove unused variable db_cert_authority
* remove unused variable db_host
* remove unused variable db_path
* remove unused variable db_port
* remove unused variable db. The upgrade method never uses the db variable
and instead uses a new database connection each time.
* remove uninitialized parameters variable
* domain_count never used
* variable context is never used in the method or any app_defaults
* variable $row is clobbered by inner foreach loop
* variable domain_name is never used in method scope
* variable domain_array seems to be uninitialized in this scope so set an
empty string value so function lower_case is not receiving null.
2023-05-03 14:41:39 -06:00
frytimo
69bd42af05
remove unneeded destruct methods as GC has higher performance ( #6631 )
...
Co-authored-by: Tim Fry <tim@voipstratus.com>
2023-04-27 20:18:53 -06:00
FusionPBX
019ca725d8
Remove the seed for srand it is done automatically
2023-04-26 13:40:05 -06:00
FusionPBX
1b025e0aa2
Update class name FixedBitNotation to base2n
2023-04-23 02:31:44 -06:00
FusionPBX
1058c1bc87
Add google_authenticator PHP class
...
This class is licensed under Apache version 2.0
2023-04-23 01:11:52 -06:00
FusionPBX
869a1e1350
Create base2n.php
...
Add an MIT binary to text PHP class
2023-04-23 01:05:46 -06:00
fusionate
18225f82f2
Email Class: Fix typo that effects embedded base64 image attachments.
2023-04-20 01:33:22 +00:00
fusionate
19e58af546
Email Queue Attachments - Add CID and Mime Type fields.
2023-04-12 20:06:41 +00:00
FusionPBX
b6012976fb
Allow an empty ringback value
2023-04-07 12:36:20 -06:00
agree
ca36d10121
[security] prevent xml injection and executing switch api cmds ( #6594 )
2023-03-29 23:24:04 -06:00
frytimo
5e23824940
contacts app_defaults breaks PDO db ( #6585 )
2023-03-24 09:18:23 -06:00
FusionPBX
051cb01fdc
Use the subcategory when refreshing the session
...
Beset to be specific when using unset to clear values in the session
2023-03-23 21:40:50 -06:00
frytimo
8e86fe6243
Remove '&' on new ( #6559 )
...
Remove '&' on static function new.
2023-02-21 09:39:15 -07:00
FusionPBX
97dbe7b31a
Save the email response ( #6558 )
...
* Save the email response
* use the response variable from the email class
* Rename email_debug to email_response
* Update app_languages.php
* Show the email response
* Save the email response
2023-02-17 12:47:11 -07:00
FusionPBX
52308e2f15
Set new_json from the array
...
Fixes the new_json value that is added to the database transactions table.
2022-12-29 23:55:11 -07:00
FusionPBX
f714ef6798
Fix problems with the app_uuid and domain_uuid
...
app_uuid was null, and domain_uuid getting the wrong uuid.
2022-12-22 13:04:24 -07:00
demonspork
5ccd29f20f
Add : colon to menu item links to fix external links ( #6508 )
2022-12-15 18:29:46 -07:00
FusionPBX
a83982ea1b
Set where and order_by to public
2022-12-14 09:58:27 -07:00
FusionPBX
d3ee256286
Remove these as they break PHP 7.0
...
Doesn't just break PHP 5.6 it also breaks PHP 7.0
2022-11-01 15:52:56 -06:00
FusionPBX
7485757458
Change the timeout to 20 seconds
2022-10-21 11:43:53 -06:00
FusionPBX
4afc040efa
Add SMTP Timeout and SMTPKeepAlive
2022-10-21 11:43:14 -06:00
FusionPBX
88b43cfa14
If no handle return false
...
Splitting up the condition and return false for each condition works in all tests.
2022-10-20 16:18:55 -06:00
frytimo
2bdf0d382e
add isset($_REQUEST['debug']) before testing value for true ( #6486 )
...
Co-authored-by: Tim Fry <tim@voipstratus.com>
2022-10-19 11:49:31 -06:00
FusionPBX
87ccce1867
Fix the sub data insert.
2022-10-18 13:04:16 -06:00
FusionPBX
0a25c48b5d
event socket make fp public
2022-10-13 12:52:52 -06:00
FusionPBX
58d0a1ad8c
Make sure resource exists before using feof
...
This code changes prevents this error.
Warning: feof() expects parameter 1 to be resource, bool given
2022-10-13 11:26:53 -06:00
FusionPBX
0a47fc22b3
Get the DOCUMENT_ROOT and PROJECT_PATH
2022-10-11 17:10:39 -06:00
FusionPBX
b373e3c7fe
Needed to get DOCUMENT_ROOT and PROJECT_PATH
2022-10-11 15:53:18 -06:00
FusionPBX
878e5a10eb
Update database method connect to use config.conf
2022-10-10 19:43:07 -06:00
markjcrane
d50bcb476a
Replace root.php
2022-10-10 16:35:14 -06:00
FusionPBX
4d8496f4ad
Fix the event socket connected method
...
It was not detecting the connection to event socket correctly.
This change resolve the high cpu usage for event guard.
2022-10-04 12:36:27 -06:00
FusionPBX
aeec91fae8
Fix insert on for child data
...
Add a few try catch,
Add ; to the end of a few SQL queries
2022-09-30 12:46:44 -06:00
FusionPBX
a355dda5b7
Fix a copy error.
...
Fixed the copy issue when the data includes insert_user, insert_update, update_user and update_date.
2022-09-20 13:56:54 -06:00
FusionPBX
e29877e958
Move unset parameters outside of the debug
...
Unset of the parameters is required or can have parameters that interfere with other queries.
2022-09-19 09:30:20 -06:00
FusionPBX
4400618830
Sub array data use the child table name.
...
In Destination edit it was using the dialplan table name instead of child dialplan details table.
2022-09-18 04:47:17 -06:00
FusionPBX
50b66f8bea
If the domain_uuid is null the data is global.
...
This error broken dialplan edit when saving a global dialplan.
2022-09-18 03:08:18 -06:00
FusionPBX
d5bd5957a4
Minor edit add a few spaces.
2022-09-18 02:59:58 -06:00
FusionPBX
7c2017bd03
On insert and update add the user and date
2022-09-18 02:57:43 -06:00
FusionPBX
2ff62f638b
Add a few minor changes for code consistency.
2022-09-18 02:13:33 -06:00
frytimo
ba3b60b07b
Move database methods to static and document database class ( #6474 )
...
* Add new static method to created newly connected database object
* Document database class and clean up and document some of the methods.
This removes the methods that should not be in each instance and places
them in the single instance class as to occupy less resources and be
able to create database objects more efficiently.
* More docs & removed the ability to set any value within the object.
Co-authored-by: Tim Fry <tim@voipstratus.com>
2022-09-17 15:44:21 -06:00
FusionPBX
c9a661de6f
Optional to send syslog message for the cache delete and flush
2022-09-10 11:40:59 -06:00
FusionPBX
a43388bace
Increase the timeout to 30000 microseconds.
...
30,000 Microseconds = 0.03 Seconds. Longer timeout reduces the CPU. If the timeout is too long then the Status -> SIP STATUS page will take longer to load.
2022-08-27 16:45:07 -06:00
frytimo
09dbdfb79f
Removed usleep command ( #6468 )
...
* Removed usleep command
* Update event_socket.php
2022-08-26 16:53:25 -06:00
FusionPBX
b8f1eb7f10
Add function to check if we are connected to event soscket
2022-08-26 11:48:47 -06:00
frytimo
6bb6ae6b2b
Fix PHP warning for PDO::setAttribute() requires 2 parameters ( #6464 )
...
Co-authored-by: Tim Fry <tim@voipstratus.com>
2022-08-24 14:09:33 -06:00
FusionPBX
ea9b9ce621
Update additional occurances of PDO::PGSQL_ATTR_DISABLE_PREPARES
2022-08-18 17:53:33 -06:00
FusionPBX
2783cbd251
Update database.php
2022-08-18 17:39:51 -06:00
FusionPBX
98b19d1f22
Only add PDO::PGSQL_ATTR_DISABLE_PREPARES for versions of PHP that support it.
2022-08-18 17:37:43 -06:00
FusionPBX
8431d419ca
Reduce round trips to the database server.
...
Add PDO attribute: PDO::PGSQL_ATTR_DISABLE_PREPARES
https://prototype.php.net/manual/en/ref.pdo-pgsql.php
2022-08-08 16:58:52 -06:00
FusionPBX
7a71f0bf0a
Less CPU used to listen to event socket.
2022-07-31 10:15:42 -06:00
FusionPBX
084e36d0a0
Sanitize the menu link by restricting it to specific characters.
2022-07-08 18:38:13 -06:00
FusionPBX
6780949019
Remove LOG_LOCAL0 from openlog it caused the output to the console.
2022-07-08 14:46:21 -06:00
FusionPBX
767937260d
Limit this to run only with the web server.
2022-07-08 14:21:29 -06:00
FusionPBX
1199269347
When the cache is deleted log details to the syslog server.
2022-06-01 22:28:12 -06:00
FusionPBX
ad3a4825a1
Use a log prefix that makes more sense.
2022-06-01 18:57:33 -06:00
FusionPBX
60e484e8f5
Default settings overridden by domain SMTP settings
...
Fixed a regressions where the domain SMTP settings were ignored.
2022-05-05 19:41:38 -06:00
FusionPBX
c6a36cdf45
Fix the email attachments that are being sent through the email queue.
2022-04-19 00:48:04 -06:00
FusionPBX
72b9d4383e
Do a better job extracting information for the form and recipients.
2022-04-17 15:37:17 -06:00
FusionPBX
1585a42256
Add parse method to the email class.
2022-04-16 22:57:03 -06:00
FusionPBX
f25fc53c62
Add a new email class.
2022-04-15 17:58:40 -06:00
FusionPBX
fe099e4dfb
Update event_socket.php
2022-02-14 14:08:46 -07:00
FusionPBX
2e62e0316b
Set this value to 20.
...
Improves page load times for pages using event socket.
2022-02-14 11:55:10 -07:00
markjcrane
fcc9d6186c
Fix the syntax
2022-01-30 13:24:54 -07:00
markjcrane
eda3ddfd28
Use if is_array to prevent a warning
2022-01-30 13:20:51 -07:00
markjcrane
8372fa61f8
change the switch phrases to switch languages
2022-01-30 13:08:49 -07:00
FusionPBX
63ac177ebe
Fixes an error 'Strict Standards: Only variables should be passed by reference'
...
Would see this on some systems when saving call forward
2022-01-24 15:33:34 -07:00
FusionPBX
a432996055
Add missing part of the array.
2022-01-09 06:41:25 -07:00
FusionPBX
2c096c9e01
Only load default settings that are not in the database.
2022-01-08 16:22:03 -07:00
AlexC
4e7972aa4d
Update menu.php ( #6164 )
2021-11-30 15:39:15 -07:00
AlexC
70b876f5da
Add user header and domain icon to menu.php ( #6160 )
2021-11-30 08:35:40 -07:00
FusionPBX
7c6ed79d6c
usleep 1 million is 1 second
2021-11-26 21:30:39 -07:00
FusionPBX
91f2721925
Create auto_loader.php
2021-11-26 13:11:20 -07:00
FusionPBX
356b50531b
Fix the class cache set method.
2021-10-26 00:30:30 -06:00
FusionPBX
f9f730024c
Create the $fp handle
2021-10-14 00:41:56 -06:00
FusionPBX
408b13238e
Use include instead of require_once.
2021-09-13 11:52:12 -06:00
FusionPBX
dc8c2f1df6
Update domains class to use the database class.
2021-09-12 15:29:28 -06:00
FusionPBX
0d37d34c94
Delete users.php
2021-09-04 08:48:11 -06:00
FusionPBX
08c1fdc1d9
Update cache.php
...
A few minor changes.
2021-09-03 22:35:33 -06:00
FusionPBX
841a6751db
Use fusionpbx/resources/classes/groups.php instead of fusionpbx/core/resources/classes/groups.php
2021-08-26 16:34:59 -06:00
FusionPBX
57121b627b
Delete fax.php
...
This php class should be in app/fax/resources/classes directory.
2021-08-20 11:23:43 -06:00
FusionPBX
8f6d12fa7d
Add table_exists method to the database class.
2021-08-10 07:54:08 -06:00
fusionate
3d81016695
Domains Class: Update settings() method to support setting array order, when present.
2020-12-28 16:28:01 -07:00
FusionPBX
2eb83e45b8
Add new transaction save option to the database save method.
2020-12-10 19:52:03 -07:00
FusionPBX
7cfe473eb8
Provide defaults arguments for backwards compatiblity.
2020-12-02 07:47:56 -07:00
FusionPBX
f307fc62a5
Add default language, dialect and voice.
2020-12-01 12:15:00 -07:00
fusionate
96ac8c8334
Upgrade > Schema: Update schema class to use casting for numeric changes.
2020-11-25 15:11:45 -07:00
fusionate
95362f621e
Button Class: Support additional class(es).
2020-11-12 18:27:11 -07:00
FusionPBX
5fa52feefe
Merge pull request #5557 from greenbea/patch-16
...
Fix cache delete for global dialplans
2020-11-05 16:02:30 -07:00
Greenbea
6770d15b3c
Fix cache delete for global dialplans
2020-11-05 11:29:41 -05:00
FusionPBX
64434862b8
Update schema.php
...
Prevent a plugin from breaking parts of the project.
2020-11-04 10:00:31 -07:00
Nate
5c7f97ac8a
Domains: Retain session domain_name and domain_uuid on add and delete.
2020-11-02 16:00:02 -07:00
FusionPBX
c8e51bd89e
Update database.php
...
Only use the $_SESSION['domain_uuid'] if it is set. It's not set when using from the command line.
2020-10-21 15:17:38 -06:00
FusionPBX
69541f560b
Update schema.php
...
Deprecate global upgrade_data_types variable and replace with a $this->data_types
2020-10-21 14:28:15 -06:00
FusionPBX
9f7ca538a3
Update schema.php
...
Minor changes. Remove extra line feeds and add a semi-colon.
2020-10-21 11:32:46 -06:00
FusionPBX
f567c12672
Update domains.php
2020-08-14 00:37:16 -06:00
FusionPBX
ec65ab905d
Fix the database copy method.
2020-07-24 10:15:30 -06:00
Mark J Crane
1b38c9541d
Make the relations method public
2020-07-17 21:43:34 -06:00
FusionPBX
4514947223
Disable this until it has been improved and tested more.
2020-07-10 12:55:58 -06:00
FusionPBX
7a720b84a9
Disable the delete for now.
2020-07-10 12:36:11 -06:00
FusionPBX
5b5696456f
Update the database class toggle, copy an delete methods.
2020-07-09 02:57:28 -06:00
FusionPBX
1d2956cbfb
Update schema.php
2020-07-05 14:37:08 -06:00
FusionPBX
3eb2257745
Add indentation to improve the html output.
2020-06-24 19:14:33 -06:00
Nate
d05429ad4e
Theme: Header Bar updates.
2020-05-27 23:02:13 -06:00
Nate
6f33204316
Theme: Side Menu updates.
2020-05-27 21:24:07 -06:00
Nate
e44bd933b0
Theme: Side Menu updates.
2020-05-25 19:31:55 -06:00
Nate
313d0205b7
Theme: Side Menu updates.
2020-05-25 19:15:45 -06:00
Nate
4a986730eb
Theme: Side Menu updates.
2020-05-25 18:38:52 -06:00
Nate
8a586b5997
Theme: Side Menu updates.
2020-05-25 13:17:01 -06:00
Nate
5e1130cd04
Theme: Side Menu updates.
2020-05-25 12:24:03 -06:00
Nate
a1bb8c5307
Theme: Side Menu updates.
2020-05-25 12:19:10 -06:00
Nate
a4481ed9ab
Theme: Side Menu updates.
2020-05-25 11:53:44 -06:00
Nate
ba0eceb88b
Theme: Side Menu updates.
2020-05-23 19:18:16 -06:00
Nate
6f829ea6cf
Theme: Side Menu updates.
2020-05-23 18:57:17 -06:00
Nate
f18e2423ed
Theme: Side Menu updates.
2020-05-23 14:00:49 -06:00
Nate
f5bfc2199a
Theme: Side Menu default state controls.
2020-05-20 21:24:19 -06:00
chansizzle
17309eefff
Update menu.php ( #5278 )
...
fix Notice: Undefined variable: menu_sub_icon in /var/www/fusionpbx/resources/classes/menu.php on line 1034
2020-05-15 16:24:23 -06:00
FusionPBX
5166308dd2
Update menu.php
2020-05-05 23:02:29 -06:00
FusionPBX
1b5a14333e
Update menu.php
2020-05-05 22:47:18 -06:00
FusionPBX
d29ea55bcf
Update database.php
2020-04-24 17:36:14 -06:00
FusionPBX
368d7a6987
Update database.php
2020-04-24 17:14:41 -06:00
Nate
76592ab7cb
Token: Adjust class to allow token to be validated multiple times.
2020-03-30 11:15:09 -06:00
Nate
1ed699a850
Tokens: Multiple token support.
2020-03-28 21:40:33 -06:00
Nate
c431c86382
Template CSS, Vertical Menu: Minor adjustments.
2020-03-26 16:54:06 -06:00
Nate
c1e5b7f00e
Modal: Adjustment to class.
2020-03-26 08:32:35 -06:00
Nate
97eec1da04
Template, Core Apps: Update to new modal.
2020-03-25 16:48:12 -06:00
Nate
0df02b95dd
Template: Convert to Smarty syntax.
2020-03-17 20:31:29 -06:00
agree
51a6b56dae
Update domains.php ( #5092 )
...
* Update domains.php
2020-03-11 20:04:41 -06:00
Nate
a93c172ea8
Modal (Class): Add closing php tag.
2020-03-05 10:57:20 -06:00
Nate
36f1856c04
Modal (Class): Use default cancel button icon.
2020-03-05 09:55:10 -07:00
FusionPBX
dc1b1f5717
Update database.php
2020-03-03 19:44:57 -07:00
FusionPBX
884fee7275
Update menu.php
2020-03-02 23:47:17 -07:00
FusionPBX
e211d7ae3a
Update menu.php
2020-03-02 22:29:29 -07:00
agree
7ac144fe05
Added ringback silence capability ( #5162 )
...
* Update format_ringback.lua
* Update ringbacks.php
2020-02-27 15:42:07 -07:00
Nate
1586c48517
Menu: Add explicit temporary permissions in delete() method.
2020-02-17 18:19:40 -07:00
Nate
b9a207c51d
Domains Class: Use unique variable name for array id in delete() method.
2020-02-17 17:54:36 -07:00
Nate
1b95cbf38c
Domains: Supress warnings when deleting missing xml files in delete() method. Fix recordings directory session variable index.
2020-02-17 08:51:21 -07:00
Nate
18b26a9938
Menu Manager: List view and button updates, bulk menu item delete and toggle protected, etc.
2020-02-10 20:46:08 -07:00
FusionPBX
f41e989c7f
Update database.php
2020-02-08 15:53:32 -07:00
markjcrane
b740f9f229
Move destinations class to a more proper location
2020-02-07 18:02:42 +00:00
FusionPBX
a87d15dece
Update destinations.php
2020-02-07 10:59:05 -07:00
FusionPBX
d7ac761b4e
Update destinations.php
2020-01-29 23:45:55 -07:00
Nate
70e4acf668
Template/Theme updates to support new modal class.
2020-01-23 21:22:27 -07:00
FusionPBX
31eaa4e8f9
Update destinations.php
2020-01-21 13:14:03 -07:00
root
e9f4d5113f
Added destination select permissions
2020-01-21 11:43:19 -05:00
FusionPBX
4d2d2453db
Update text.php
2020-01-08 18:28:05 -07:00
Nate
1ce0b4f7c6
Button Class: Further clarification in code comment.
2020-01-08 10:36:37 -07:00
Nate
e0a5252a87
Button Class: Apply margin* styles only to anchor tag (when present).
2020-01-08 10:34:26 -07:00
chansizzle
e299031c17
Update switch_settings.php ( #4994 )
2019-12-30 18:35:45 -07:00
Nate
c72d7e61be
Misc: Language and text class adjustments.
2019-12-19 07:28:27 -07:00
FusionPBX
9a41858dd5
Update menu.php
2019-12-18 23:24:22 -07:00
FusionPBX
843e3d3c01
Update database.php
2019-12-16 12:39:54 -07:00
Nate
2e21be8cd4
MOH: List view updates.
2019-12-16 12:00:33 -07:00
FusionPBX
eb28a261bc
Update domains.php
2019-12-16 11:17:25 -07:00
FusionPBX
9f70128428
Update domains.php
2019-12-16 09:37:57 -07:00
Nate
d157b5ee9f
SIP Status: List view updates.
2019-12-04 13:49:02 -07:00
Nate
f186d1ee9f
Schema Class: Fix Data Type check to work properly.
2019-12-02 14:51:02 -07:00
Nate
585183f12b
Destinations: Update class delete method.
2019-11-30 11:34:54 -07:00
FusionPBX
f55ec9653f
Update menu.php
2019-11-23 15:34:48 -07:00
FusionPBX
d7af2c794d
Update database.php
2019-11-23 15:30:29 -07:00
FusionPBX
71d0872945
Update database.php
2019-11-22 23:34:03 -07:00
FusionPBX
08079a9fb8
Update database.php
2019-11-20 10:14:01 -07:00
FusionPBX
4ec796c9f3
Update cache.php
2019-11-18 18:01:10 -07:00
Nate
82a07205b6
Email Logs: List view updates, search, bulk resend, download, delete.
2019-11-10 01:40:29 -07:00
Nate
d92b491600
Destinations: List view updates.
2019-11-06 11:29:11 -07:00
Nate
7b1356310b
Active Calls: Update refresh/pause button.
2019-10-30 01:05:43 -06:00
Nate
f57fa290d3
Active Calls: List view updates, bulk call hangup. Button Class: Add onmouseover/out support.
2019-10-29 23:11:19 -06:00
Nate
ea536d2f6e
Button class updates, logic updates to other files.
2019-10-23 21:19:37 -06:00
Nate
32f9a483a5
Update Button class.
2019-10-22 01:41:16 -06:00
Nate
30bd7f8ff8
Add a little documentation to the Button class.
2019-10-21 10:23:58 -06:00
Nate
a413f35f70
CSS: Define responsive breakpoints, add to Access Controls, Bridges, Call Block, Buttons class.
2019-10-19 20:29:44 -06:00
Nate
c2a9dcf66c
Update button.php
2019-10-19 10:08:16 -06:00
FusionPBX
92b776ac1d
Update cache.php
2019-10-15 13:54:55 -06:00
chansizzle
eedc7ac4b7
Update menu.php ( #4779 )
2019-10-14 19:51:36 -07:00
FusionPBX
81caa972d9
Update menu.php
2019-10-13 15:44:21 -06:00
FusionPBX
80d95fe0c2
Update menu.php
2019-10-12 15:37:22 -06:00
Nate
2678eb0bb1
Bridges: Misc updates, integrate Button class.
2019-10-12 01:12:59 -06:00
FusionPBX
b82b67aeef
Update destinations.php
2019-10-05 17:33:28 -06:00
FusionPBX
7c3675107d
Update event_socket.php
2019-09-24 18:14:43 -06:00
chansizzle
ad1c5205d4
Update text.php ( #4654 )
2019-09-24 16:40:50 -06:00
chansizzle
16e08250bf
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
347b38db4e
Update ringbacks.php ( #4643 )
2019-09-24 12:12:15 -06:00
FusionPBX
7ed95878e5
Update token.php
2019-09-16 18:23:15 -06:00
FusionPBX
977a1af64e
Create token.php
2019-09-16 08:18:16 -06:00
Nate
911a43219e
Users: Prevent duplicate usernames.
2019-09-10 19:23:14 -06:00
FusionPBX
19e8305a8e
Update schema.php
2019-09-10 17:50:41 -06:00
FusionPBX
c37f2958e5
Update destinations.php
2019-09-10 13:50:42 -06:00
Nate
37b5713c4b
Misc Classes: Database class integration.
2019-09-04 06:44:50 -06:00
Nate
07cb911e70
Menu Class: Database class integration.
2019-09-03 09:59:37 -06:00
Nate
836fb87136
Misc Classes: Database class integration.
2019-09-02 15:57:18 -06:00
FusionPBX
b9bba7edce
Update database.php
2019-08-20 13:05:27 -06:00
FusionPBX
a4f1854452
Update database.php
2019-08-20 12:40:51 -06:00
FusionPBX
d07ef4711a
Update destinations.php
2019-08-13 12:44:38 -06:00
FusionPBX
ba8cb5b0a3
Update destinations.php
2019-08-13 12:41:55 -06:00
FusionPBX
d5ebe489bb
Update database.php
2019-08-03 16:16:30 -06:00
FusionPBX
6202f6ab79
Update cache.php
2019-07-30 00:11:50 -06:00
FusionPBX
ccfce8ee1f
Update groups.php
2019-07-28 16:09:17 -06:00
FusionPBX
65d74aa7f8
Update groups.php
2019-07-28 15:34:21 -06:00
Nate
b07150a01d
Make singular() method public in database class.
2019-07-27 21:03:16 -06:00
FusionPBX
25a4220c4f
Update schema.php
2019-07-27 16:53:42 -06:00
FusionPBX
a80547d1d9
Update schema.php
2019-07-27 16:34:20 -06:00
FusionPBX
75909d85b6
Update schema.php
2019-07-27 09:12:38 -06:00
Nate
e6c1d232df
Adjust singular() method in database class to support 'addresses'.
2019-07-27 09:02:47 -06:00
FusionPBX
9c230f66e7
Update groups.php
2019-07-25 23:37:48 -06:00
Nate
77b85a3f9c
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
32b04431f7
Fix typo in select() method switch statement.
2019-07-01 13:26:26 -06:00
Nate
a591c87776
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
4ae27f13b6
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
58537ce365
Update message.php
2019-05-30 01:55:07 -06:00
FusionPBX
ed92a99130
Revert "[4.5] Fix the ALTER TABLE ( #4097 )"
...
This reverts commit 8822528227 .
2019-05-30 00:56:51 -06:00
FusionPBX
c34ff1d4c6
Update database.php
2019-05-27 19:56:32 -06:00
FusionPBX
157db18dc7
White space cleanup on the text class.
2019-05-25 23:40:51 -06:00
Luis Daniel Lucio Quiroz
d39190913d
[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
FusionPBX
cd5dd78c25
Update destinations.php
2019-05-05 19:34:56 -06:00
FusionPBX
9796cabe28
Update database.php
2019-05-05 19:30:05 -06:00
FusionPBX
0ee574151b
Create captcha.php
2019-04-24 19:43:09 -06:00
FusionPBX
57a62cf6b6
Update database.php
2019-04-23 09:28:49 -06:00
FusionPBX
76f52e2686
Update database.php
2019-04-09 10:49:51 -06:00
Nate
b31b82bd66
Schema Class: Update compatibility with timestamptz field types.
2019-04-02 09:53:57 -06:00
FusionPBX
7112aed941
Delete orm.php
2019-03-25 23:28:46 -06:00
FusionPBX
50c6bd254f
Update database.php
2019-03-25 09:32:00 -06:00
FusionPBX
b4cf441521
Update database.php
2019-03-23 17:27:58 -06:00