Algunas cosas que permite desarrollar un Asterisk (1)

 

Ya con varios años siendo tanto usuarios como implementadores de soluciones en Asterisk, día a día lo encontramos cada vez mas impactante. Desde que descubrimos este fabuloso mundo, empezamos a hacer desarrollos a medida de las necesidades de nuestros clientes. Resulta que hemos empezado a hacer algunos desarrollos que ya se encuentran en producción que otro desarrollo en la central y en verdad es que han resultado de muy buena ayuda.

Una de las primeras cosas que se empezó a desarrollar es  la de tener control sobre las llamadas que efectuan los colaboradores de nuestes clientes, pues obviamente cuando tenian la anterior central telefónica, todo era una "tierra de nadie", cada usuario usaba las líneas como mejor le parecía y en verdad no se veía mucha productividad.

Una de las cosas principales que hemos implementado es la de usar la base de datos de clientes  que esta hecha en PostgreSQL y modificar un poco los campos de los teléfonos de los contactos, esto es de una gran ayuda para hacer una especie de CRM al revés, osea saber quienes son los clientes que nos llaman y obviamente poder tener un pequeño informe de cuales son las llamdas que ingresan.

 

Cipher Cisco

 

Partiendo de ahi, empezamos a hacer un poco de hacking en el Asterisk por medio del AGI , desarrollados en PHP que es lo que mas tenia a la mano por los mismos servidores Linux que se tienen (LAMP), y lo que se hizo fue que cada vez que llegara una llamada, inmediatamente con el CID levantado busque el número que está llamando, haga un query en la base de datos y agregue el nombre que le corresponda quedando algo así:

CIPHER SAC <014477600>

Que para estos casos, teléfono CISCO (como el de la foto) o cualquier otro  lo interpreta perfectamente como que es un nombre y la llamada. El truco es muy fácil, pues lo que se hace es hacer en el output (return) del script de que me mande

echo “EXEC SetCallerID \”$wnombre < $wtelefono>\”\n”;

Desde el PHP y con esto seteaba el formato que deseaba, para las variables globales del Asterisk. Resultó de mucha utilidad porque se empezó a detectar al personal que habian muchas llamadas que no tenian nada que ver con el negocio, llámese llamadas personales, amigos, enamoradas, amigos, gente preguntando cosas que no tienen nada que ver con la empresa.

PHP

 

Con esto se ganó la operación por partida doble que las líneas telefónicas de la empresa no estén ocupadas en asuntos triviales, y que el personal pierda menos tiempo en cosas que no le sirven o no es la funcionalidad del negocio para la empresa, y obviamente vaya en aumento su productividad, porque al ir bloqueando cosas que sirven para "perder el tiempo", el único camino que les podria quedar seria: TRABAJAR.

5.672MBMemory Usage98.42msRequest Duration
Joomla! Version5.2.3
PHP Version8.1.32
Identityguest
Response200
Templateshaper_helixultimate
Database
Server
mysql
Version
10.5.27-MariaDB
Collation
utf8_general_ci
Conn Collation
utf8mb4_general_ci
$_GET
[]
$_POST
[]
$_SESSION
array:1 [ "joomla" => "***redacted***" ]
$_COOKIE
[]
$_SERVER
array:52 [ "USER" => "apache" "HOME" => "/usr/share/httpd" "SCRIPT_NAME" => "/web/index.php" ...
session
array:3 [ "counter" => 1 "timer" => array:3 [ "start" => 1743903243 "last" => 1743903243...
registry
array:3 [ "data" => [] "initialized" => false "separator" => "." ]
user
array:21 [ "id" => 0 "name" => null "username" => null "email" => null "password" => "***r...
  • afterLoad (92.16KB) (1.13ms)
  • afterInitialise (1.35MB) (11.71ms)
  • afterRoute (288.34KB) (4.89ms)
  • beforeRenderComponent com_content (51.8KB) (1.17ms)
  • Before Access::preloadComponents (all components) (121.82KB) (439μs)
  • After Access::preloadComponents (all components) (132.4KB) (616μs)
  • Before Access::preloadPermissions (com_content) (2.76KB) (24μs)
  • After Access::preloadPermissions (com_content) (25KB) (405μs)
  • Before Access::getAssetRules (id:74 name:com_content.article.32) (6.8KB) (11μs)
  • After Access::getAssetRules (id:74 name:com_content.article.32) (8.47KB) (165μs)
  • afterRenderComponent com_content (784.6KB) (19.85ms)
  • afterDispatch (3.79KB) (178μs)
  • beforeRenderRawModule mod_menu (Main Menu) (812.03KB) (8.67ms)
  • afterRenderRawModule mod_menu (Main Menu) (1.38MB) (35.06ms)
  • beforeRenderModule mod_menu (Main Menu) (704B) (7μs)
  • afterRenderModule mod_menu (Main Menu) (49.91KB) (1.48ms)
  • afterRender (240.76KB) (12.39ms)
  • 1 x afterRenderRawModule mod_menu (Main Menu) (1.38MB) (35.63%)
    35.06ms
    1 x afterRenderComponent com_content (784.6KB) (20.16%)
    19.85ms
    1 x afterRender (240.76KB) (12.59%)
    12.39ms
    1 x afterInitialise (1.35MB) (11.89%)
    11.71ms
    1 x beforeRenderRawModule mod_menu (Main Menu) (812.03KB) (8.81%)
    8.67ms
    1 x afterRoute (288.34KB) (4.97%)
    4.89ms
    1 x afterRenderModule mod_menu (Main Menu) (49.91KB) (1.5%)
    1.48ms
    1 x beforeRenderComponent com_content (51.8KB) (1.19%)
    1.17ms
    1 x afterLoad (92.16KB) (1.15%)
    1.13ms
    1 x After Access::preloadComponents (all components) (132.4KB) (0.63%)
    616μs
    1 x Before Access::preloadComponents (all components) (121.82KB) (0.45%)
    439μs
    1 x After Access::preloadPermissions (com_content) (25KB) (0.41%)
    405μs
    1 x afterDispatch (3.79KB) (0.18%)
    178μs
    1 x After Access::getAssetRules (id:74 name:com_content.article.32) (8.47KB) (0.17%)
    165μs
    1 x Before Access::preloadPermissions (com_content) (2.76KB) (0.02%)
    24μs
    1 x Before Access::getAssetRules (id:74 name:com_content.article.32) (6.8KB) (0.01%)
    11μs
    1 x beforeRenderModule mod_menu (Main Menu) (704B) (0.01%)
    7μs
183 statements were executed, 160 of which were duplicates, 23 unique28.24ms6.45MB
  • SELECT @@SESSION.sql_mode;105μs1.57KB/libraries/vendor/joomla/database/src/Mysqli/MysqliDriver.php:308Copy
  • SELECT `data` FROM `cipher_session` WHERE `session_id` = ?106μs1.61KBParams/libraries/vendor/joomla/session/src/Handler/DatabaseHandler.php:250Copy
  • SELECT `session_id` FROM `cipher_session` WHERE `session_id` = :session_id LIMIT 1107μs1.61KBParams/libraries/src/Session/MetadataManager.php:187Copy
  • INSERT INTO `cipher_session` (`session_id`,`guest`,`time`,`userid`,`username`,`client_id`) VALUES (:session_id, :guest, :time, :user_id, :username, :client_id)200μs944BParams/libraries/src/Session/MetadataManager.php:260Copy
  • SELECT `extension_id` AS `id`,`element` AS `option`,`params`,`enabled` FROM `cipher_extensions` WHERE `type` = 'component' AND `state` = 0 AND `enabled` = 1658μs2.23KB/libraries/src/Component/ComponentHelper.php:399Copy
  • SELECT `id`,`rules` FROM `cipher_viewlevels`126μs944B/libraries/src/Access/Access.php:955Copy
  • SELECT `b`.`id` FROM `cipher_usergroups` AS `a` LEFT JOIN `cipher_usergroups` AS `b` ON `b`.`lft` <= `a`.`lft` AND `b`.`rgt` >= `a`.`rgt` WHERE `a`.`id` = :guest105μs1.63KBParams/libraries/src/Access/Access.php:868Copy
  • SELECT `folder` AS `type`,`element` AS `name`,`params` AS `params`,`extension_id` AS `id` FROM `cipher_extensions` WHERE `enabled` = 1 AND `type` = 'plugin' AND `state` IN (0,1) AND `access` IN (:preparedArray1) ORDER BY `ordering`2.11ms4.27KBParams/libraries/src/Plugin/PluginHelper.php:294Copy
  • SELECT `m`.`id`,`m`.`menutype`,`m`.`title`,`m`.`alias`,`m`.`note`,`m`.`link`,`m`.`type`,`m`.`level`,`m`.`language`,`m`.`browserNav`,`m`.`access`,`m`.`params`,`m`.`home`,`m`.`img`,`m`.`template_style_id`,`m`.`component_id`,`m`.`parent_id`,`m`.`path` AS `route`,`e`.`element` AS `component` FROM `cipher_menu` AS `m` LEFT JOIN `cipher_extensions` AS `e` ON `m`.`component_id` = `e`.`extension_id` WHERE ( (`m`.`published` = 1 AND `m`.`parent_id` > 0 AND `m`.`client_id` = 0) AND (`m`.`publish_up` IS NULL OR `m`.`publish_up` <= :currentDate1)) AND (`m`.`publish_down` IS NULL OR `m`.`publish_down` >= :currentDate2) ORDER BY `m`.`lft`614μs38.17KBParams/libraries/src/Menu/SiteMenu.php:166Copy
  • SELECT `c`.`id`,`c`.`asset_id`,`c`.`access`,`c`.`alias`,`c`.`checked_out`,`c`.`checked_out_time`,`c`.`created_time`,`c`.`created_user_id`,`c`.`description`,`c`.`extension`,`c`.`hits`,`c`.`language`,`c`.`level`,`c`.`lft`,`c`.`metadata`,`c`.`metadesc`,`c`.`metakey`,`c`.`modified_time`,`c`.`note`,`c`.`params`,`c`.`parent_id`,`c`.`path`,`c`.`published`,`c`.`rgt`,`c`.`title`,`c`.`modified_user_id`,`c`.`version`, CASE WHEN CHAR_LENGTH(`c`.`alias`) != 0 THEN CONCAT_WS(':', `c`.`id`, `c`.`alias`) ELSE `c`.`id` END as `slug` FROM `cipher_categories` AS `s` INNER JOIN `cipher_categories` AS `c` ON (`s`.`lft` <= `c`.`lft` AND `c`.`lft` < `s`.`rgt`) OR (`c`.`lft` < `s`.`lft` AND `s`.`rgt` < `c`.`rgt`) WHERE (`c`.`extension` = :extension OR `c`.`extension` = 'system') AND `c`.`published` = 1 AND `s`.`id` = :id ORDER BY `c`.`lft`358μs5.11KBParams/libraries/src/Categories/Categories.php:375Copy
  • SELECT `id`,`home`,`template`,`s`.`params`,`inheritable`,`parent` FROM `cipher_template_styles` AS `s` LEFT JOIN `cipher_extensions` AS `e` ON `e`.`element` = `s`.`template` AND `e`.`type` = 'template' AND `e`.`client_id` = `s`.`client_id` WHERE `s`.`client_id` = 0 AND `e`.`enabled` = 1255μs41.14KB/administrator/components/com_templates/src/Model/StyleModel.php:775Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'219μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_languages` WHERE `published` = 1 ORDER BY `ordering` ASC137μs2.23KB/libraries/src/Language/LanguageHelper.php:177Copy
  • SELECT `id`,`name`,`rules`,`parent_id` FROM `cipher_assets` WHERE `name` IN (:preparedArray1,:preparedArray2,:preparedArray3,:preparedArray4,:preparedArray5,:preparedArray6,:preparedArray7,:preparedArray8,:preparedArray9,:preparedArray10,:preparedArray11,:preparedArray12,:preparedArray13,:preparedArray14,:preparedArray15,:preparedArray16,:preparedArray17,:preparedArray18,:preparedArray19,:preparedArray20,:preparedArray21,:preparedArray22,:preparedArray23,:preparedArray24,:preparedArray25,:preparedArray26,:preparedArray27,:preparedArray28,:preparedArray29,:preparedArray30,:preparedArray31,:preparedArray32,:preparedArray33,:preparedArray34,:preparedArray35,:preparedArray36,:preparedArray37,:preparedArray38,:preparedArray39,:preparedArray40,:preparedArray41)270μs7.75KBParams/libraries/src/Access/Access.php:357Copy
  • SELECT `id`,`name`,`rules`,`parent_id` FROM `cipher_assets` WHERE `name` LIKE :asset OR `name` = :extension OR `parent_id` = 0196μs3.05KBParams/libraries/src/Access/Access.php:301Copy
  • SHOW FULL COLUMNS FROM `cipher_content`335μs2.39KB/libraries/vendor/joomla/database/src/Mysqli/MysqliDriver.php:587Copy
  • UPDATE `cipher_content` SET `hits` = (`hits` + 1) WHERE `id` = '32'216μs2.55KB/libraries/src/Table/Table.php:1348Copy
  • SELECT `a`.`id`,`a`.`asset_id`,`a`.`title`,`a`.`alias`,`a`.`introtext`,`a`.`fulltext`,`a`.`state`,`a`.`catid`,`a`.`created`,`a`.`created_by`,`a`.`created_by_alias`,`a`.`modified`,`a`.`modified_by`,`a`.`checked_out`,`a`.`checked_out_time`,`a`.`publish_up`,`a`.`publish_down`,`a`.`images`,`a`.`urls`,`a`.`attribs`,`a`.`version`,`a`.`ordering`,`a`.`metakey`,`a`.`metadesc`,`a`.`access`,`a`.`hits`,`a`.`metadata`,`a`.`featured`,`a`.`language`,`fp`.`featured_up`,`fp`.`featured_down`,`c`.`title` AS `category_title`,`c`.`alias` AS `category_alias`,`c`.`access` AS `category_access`,`c`.`language` AS `category_language`,`fp`.`ordering`,`u`.`name` AS `author`,`parent`.`title` AS `parent_title`,`parent`.`id` AS `parent_id`,`parent`.`path` AS `parent_route`,`parent`.`alias` AS `parent_alias`,`parent`.`language` AS `parent_language`,ROUND(`v`.`rating_sum` / `v`.`rating_count`, 1) AS `rating`,`v`.`rating_count` AS `rating_count` FROM `cipher_content` AS `a` INNER JOIN `cipher_categories` AS `c` ON `c`.`id` = `a`.`catid` LEFT JOIN `cipher_content_frontpage` AS `fp` ON `fp`.`content_id` = `a`.`id` LEFT JOIN `cipher_users` AS `u` ON `u`.`id` = `a`.`created_by` LEFT JOIN `cipher_categories` AS `parent` ON `parent`.`id` = `c`.`parent_id` LEFT JOIN `cipher_content_rating` AS `v` ON `a`.`id` = `v`.`content_id` WHERE ( (`a`.`id` = :pk AND `c`.`published` > 0) AND (`a`.`publish_up` IS NULL OR `a`.`publish_up` <= :publishUp)) AND (`a`.`publish_down` IS NULL OR `a`.`publish_down` >= :publishDown) AND `a`.`state` IN (:preparedArray1,:preparedArray2)283μs24.63KBParams/components/com_content/src/Model/ArticleModel.php:215Copy
  • SELECT `c`.`id`,`c`.`asset_id`,`c`.`access`,`c`.`alias`,`c`.`checked_out`,`c`.`checked_out_time`,`c`.`created_time`,`c`.`created_user_id`,`c`.`description`,`c`.`extension`,`c`.`hits`,`c`.`language`,`c`.`level`,`c`.`lft`,`c`.`metadata`,`c`.`metadesc`,`c`.`metakey`,`c`.`modified_time`,`c`.`note`,`c`.`params`,`c`.`parent_id`,`c`.`path`,`c`.`published`,`c`.`rgt`,`c`.`title`,`c`.`modified_user_id`,`c`.`version`, CASE WHEN CHAR_LENGTH(`c`.`alias`) != 0 THEN CONCAT_WS(':', `c`.`id`, `c`.`alias`) ELSE `c`.`id` END as `slug` FROM `cipher_categories` AS `s` INNER JOIN `cipher_categories` AS `c` ON (`s`.`lft` <= `c`.`lft` AND `c`.`lft` < `s`.`rgt`) OR (`c`.`lft` < `s`.`lft` AND `s`.`rgt` < `c`.`rgt`) WHERE (`c`.`extension` = :extension OR `c`.`extension` = 'system') AND `c`.`access` IN (:preparedArray1) AND `c`.`published` = 1 AND `s`.`id` = :id ORDER BY `c`.`lft`361μs5.14KBParams/libraries/src/Categories/Categories.php:375Copy
  • SELECT `m`.`tag_id`,`t`.* FROM `cipher_contentitem_tag_map` AS `m` INNER JOIN `cipher_tags` AS `t` ON `m`.`tag_id` = `t`.`id` WHERE `m`.`type_alias` = :contentType AND `m`.`content_item_id` = :id AND `t`.`published` = 1 AND `t`.`access` IN (:preparedArray1)280μs5.2KBParams/libraries/src/Helper/TagsHelper.php:388Copy
  • SELECT `c`.`id`,`c`.`asset_id`,`c`.`access`,`c`.`alias`,`c`.`checked_out`,`c`.`checked_out_time`,`c`.`created_time`,`c`.`created_user_id`,`c`.`description`,`c`.`extension`,`c`.`hits`,`c`.`language`,`c`.`level`,`c`.`lft`,`c`.`metadata`,`c`.`metadesc`,`c`.`metakey`,`c`.`modified_time`,`c`.`note`,`c`.`params`,`c`.`parent_id`,`c`.`path`,`c`.`published`,`c`.`rgt`,`c`.`title`,`c`.`modified_user_id`,`c`.`version`, CASE WHEN CHAR_LENGTH(`c`.`alias`) != 0 THEN CONCAT_WS(':', `c`.`id`, `c`.`alias`) ELSE `c`.`id` END as `slug` FROM `cipher_categories` AS `s` INNER JOIN `cipher_categories` AS `c` ON (`s`.`lft` <= `c`.`lft` AND `c`.`lft` < `s`.`rgt`) OR (`c`.`lft` < `s`.`lft` AND `s`.`rgt` < `c`.`rgt`) WHERE (`c`.`extension` = :extension OR `c`.`extension` = 'system') AND `c`.`access` IN (:preparedArray1) AND `c`.`published` = 1 AND `s`.`id` = :id ORDER BY `c`.`lft`303μs5.14KBParams/libraries/src/Categories/Categories.php:375Copy
  • SELECT DISTINCT a.id, a.title, a.name, a.checked_out, a.checked_out_time, a.note, a.state, a.access, a.created_time, a.created_user_id, a.ordering, a.language, a.fieldparams, a.params, a.type, a.default_value, a.context, a.group_id, a.label, a.description, a.required, a.only_use_in_subform,l.title AS language_title, l.image AS language_image,uc.name AS editor,ag.title AS access_level,ua.name AS author_name,g.title AS group_title, g.access as group_access, g.state AS group_state, g.note as group_note FROM cipher_fields AS a LEFT JOIN `cipher_languages` AS l ON l.lang_code = a.language LEFT JOIN cipher_users AS uc ON uc.id=a.checked_out LEFT JOIN cipher_viewlevels AS ag ON ag.id = a.access LEFT JOIN cipher_users AS ua ON ua.id = a.created_user_id LEFT JOIN cipher_fields_groups AS g ON g.id = a.group_id LEFT JOIN `cipher_fields_categories` AS fc ON fc.field_id = a.id WHERE ( (`a`.`context` = :context AND (`fc`.`category_id` IS NULL OR `fc`.`category_id` IN (:preparedArray1,:preparedArray2)) AND `a`.`access` IN (:preparedArray3)) AND (`a`.`group_id` = 0 OR `g`.`access` IN (:preparedArray4)) AND `a`.`state` = :state) AND (`a`.`group_id` = 0 OR `g`.`state` = :gstate) AND `a`.`only_use_in_subform` = :only_use_in_subform ORDER BY a.ordering ASC756μs5.31KBParams/libraries/src/MVC/Model/BaseDatabaseModel.php:164Copy
  • SELECT `c`.`id`,`c`.`asset_id`,`c`.`access`,`c`.`alias`,`c`.`checked_out`,`c`.`checked_out_time`,`c`.`created_time`,`c`.`created_user_id`,`c`.`description`,`c`.`extension`,`c`.`hits`,`c`.`language`,`c`.`level`,`c`.`lft`,`c`.`metadata`,`c`.`metadesc`,`c`.`metakey`,`c`.`modified_time`,`c`.`note`,`c`.`params`,`c`.`parent_id`,`c`.`path`,`c`.`published`,`c`.`rgt`,`c`.`title`,`c`.`modified_user_id`,`c`.`version`, CASE WHEN CHAR_LENGTH(`c`.`alias`) != 0 THEN CONCAT_WS(':', `c`.`id`, `c`.`alias`) ELSE `c`.`id` END as `slug` FROM `cipher_categories` AS `s` INNER JOIN `cipher_categories` AS `c` ON (`s`.`lft` <= `c`.`lft` AND `c`.`lft` < `s`.`rgt`) OR (`c`.`lft` < `s`.`lft` AND `s`.`rgt` < `c`.`rgt`) WHERE (`c`.`extension` = :extension OR `c`.`extension` = 'system') AND `c`.`access` IN (:preparedArray1) AND `c`.`published` = 1 AND `s`.`id` = :id ORDER BY `c`.`lft`348μs5.14KBParams/libraries/src/Categories/Categories.php:375Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'318μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'280μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'127μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'115μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'148μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'102μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'93μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'140μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'115μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'89μs52.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'102μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'118μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'87μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'150μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'89μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'89μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'101μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'117μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'105μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'87μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'118μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'87μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'87μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'117μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'93μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'117μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'186μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'113μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'94μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'113μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'162μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT `m`.`id`,`m`.`title`,`m`.`module`,`m`.`position`,`m`.`content`,`m`.`showtitle`,`m`.`params`,`mm`.`menuid` FROM `cipher_modules` AS `m` LEFT JOIN `cipher_modules_menu` AS `mm` ON `mm`.`moduleid` = `m`.`id` LEFT JOIN `cipher_extensions` AS `e` ON `e`.`element` = `m`.`module` AND `e`.`client_id` = `m`.`client_id` WHERE ( ( (`m`.`published` = 1 AND `e`.`enabled` = 1 AND `m`.`client_id` = :clientId AND `m`.`access` IN (:preparedArray1)) AND (`m`.`publish_up` IS NULL OR `m`.`publish_up` <= :publishUp)) AND (`m`.`publish_down` IS NULL OR `m`.`publish_down` >= :publishDown)) AND (`mm`.`menuid` = :itemId OR `mm`.`menuid` <= 0) ORDER BY `m`.`position`,`m`.`ordering`405μs2.22KBParams/libraries/src/Cache/Controller/CallbackController.php:120Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'107μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'114μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'155μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'116μs49.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'131μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'131μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'126μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'130μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'159μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'130μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'114μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'131μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'100μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'114μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'140μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'122μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'132μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'100μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'131μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'148μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'116μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'148μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'97μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'117μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'108μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'112μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'137μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'123μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'129μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'147μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'131μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'119μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'110μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'155μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'102μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'126μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'139μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'110μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'145μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'147μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'151μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'131μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'118μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'101μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'155μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'115μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'112μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'112μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'125μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'112μs57.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'108μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'137μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'193μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'117μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'87μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'113μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'89μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'100μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'113μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'113μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'111μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'130μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'113μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'113μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'114μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'112μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'110μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'137μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'98μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'99μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'86μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'153μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'163μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'103μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'119μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_schemaorg` WHERE `itemId` = :itemId AND `context` = :context272μs1.86KBParams/plugins/system/schemaorg/src/Extension/Schemaorg.php:403Copy
  • SELECT `a`.`id`,`a`.`asset_id`,`a`.`title`,`a`.`alias`,`a`.`introtext`,`a`.`fulltext`,`a`.`state`,`a`.`catid`,`a`.`created`,`a`.`created_by`,`a`.`created_by_alias`,`a`.`modified`,`a`.`modified_by`,`a`.`checked_out`,`a`.`checked_out_time`,`a`.`publish_up`,`a`.`publish_down`,`a`.`images`,`a`.`urls`,`a`.`attribs`,`a`.`version`,`a`.`ordering`,`a`.`metakey`,`a`.`metadesc`,`a`.`access`,`a`.`hits`,`a`.`metadata`,`a`.`featured`,`a`.`language`,`fp`.`featured_up`,`fp`.`featured_down`,`c`.`title` AS `category_title`,`c`.`alias` AS `category_alias`,`c`.`access` AS `category_access`,`c`.`language` AS `category_language`,`fp`.`ordering`,`u`.`name` AS `author`,`parent`.`title` AS `parent_title`,`parent`.`id` AS `parent_id`,`parent`.`path` AS `parent_route`,`parent`.`alias` AS `parent_alias`,`parent`.`language` AS `parent_language`,ROUND(`v`.`rating_sum` / `v`.`rating_count`, 1) AS `rating`,`v`.`rating_count` AS `rating_count` FROM `cipher_content` AS `a` INNER JOIN `cipher_categories` AS `c` ON `c`.`id` = `a`.`catid` LEFT JOIN `cipher_content_frontpage` AS `fp` ON `fp`.`content_id` = `a`.`id` LEFT JOIN `cipher_users` AS `u` ON `u`.`id` = `a`.`created_by` LEFT JOIN `cipher_categories` AS `parent` ON `parent`.`id` = `c`.`parent_id` LEFT JOIN `cipher_content_rating` AS `v` ON `a`.`id` = `v`.`content_id` WHERE ( (`a`.`id` = :pk AND `c`.`published` > 0) AND (`a`.`publish_up` IS NULL OR `a`.`publish_up` <= :publishUp)) AND (`a`.`publish_down` IS NULL OR `a`.`publish_down` >= :publishDown) AND `a`.`state` IN (:preparedArray1,:preparedArray2)345μs24.67KBParams/components/com_content/src/Model/ArticleModel.php:215Copy
  • SELECT `a`.`id`,`a`.`asset_id`,`a`.`title`,`a`.`alias`,`a`.`introtext`,`a`.`fulltext`,`a`.`state`,`a`.`catid`,`a`.`created`,`a`.`created_by`,`a`.`created_by_alias`,`a`.`modified`,`a`.`modified_by`,`a`.`checked_out`,`a`.`checked_out_time`,`a`.`publish_up`,`a`.`publish_down`,`a`.`images`,`a`.`urls`,`a`.`attribs`,`a`.`version`,`a`.`ordering`,`a`.`metakey`,`a`.`metadesc`,`a`.`access`,`a`.`hits`,`a`.`metadata`,`a`.`featured`,`a`.`language`,`fp`.`featured_up`,`fp`.`featured_down`,`c`.`title` AS `category_title`,`c`.`alias` AS `category_alias`,`c`.`access` AS `category_access`,`c`.`language` AS `category_language`,`fp`.`ordering`,`u`.`name` AS `author`,`parent`.`title` AS `parent_title`,`parent`.`id` AS `parent_id`,`parent`.`path` AS `parent_route`,`parent`.`alias` AS `parent_alias`,`parent`.`language` AS `parent_language`,ROUND(`v`.`rating_sum` / `v`.`rating_count`, 1) AS `rating`,`v`.`rating_count` AS `rating_count` FROM `cipher_content` AS `a` INNER JOIN `cipher_categories` AS `c` ON `c`.`id` = `a`.`catid` LEFT JOIN `cipher_content_frontpage` AS `fp` ON `fp`.`content_id` = `a`.`id` LEFT JOIN `cipher_users` AS `u` ON `u`.`id` = `a`.`created_by` LEFT JOIN `cipher_categories` AS `parent` ON `parent`.`id` = `c`.`parent_id` LEFT JOIN `cipher_content_rating` AS `v` ON `a`.`id` = `v`.`content_id` WHERE ( (`a`.`id` = :pk AND `c`.`published` > 0) AND (`a`.`publish_up` IS NULL OR `a`.`publish_up` <= :publishUp)) AND (`a`.`publish_down` IS NULL OR `a`.`publish_down` >= :publishDown) AND `a`.`state` IN (:preparedArray1,:preparedArray2)348μs24.67KBParams/components/com_content/src/Model/ArticleModel.php:215Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'267μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'96μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'100μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'93μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'87μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT SUM(CASE WHEN `a`.`next_execution` <= :now THEN 1 ELSE 0 END) AS due_count,SUM(CASE WHEN `a`.`locked` IS NULL THEN 0 ELSE 1 END) AS locked_count FROM `cipher_scheduler_tasks` AS `a` WHERE `a`.`state` = 1168μs1.68KBParams/administrator/components/com_scheduler/src/Model/TasksModel.php:465Copy
  • SELECT * FROM `cipher_template_styles` WHERE `client_id` = 0 AND `id` = '20'109μs41.22KB/plugins/system/helixultimate/src/Platform/Helper.php:54Copy
  • SELECT `session_id` FROM `cipher_session` WHERE `session_id` = ?196μs1.63KBParams/libraries/vendor/joomla/session/src/Handler/DatabaseHandler.php:277Copy
  • UPDATE `cipher_session` SET `data` = ? , `time` = ? WHERE `session_id` = ?191μs912BParams/libraries/vendor/joomla/session/src/Handler/DatabaseHandler.php:301Copy