| Server IP : 54.36.91.62 / Your IP : 216.73.217.111 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/departement-amisdessenior-.fr/modules/mod_comprofileronline/fields/ |
Upload File : |
<?php
/**
* Community Builder (TM)
* @version $Id: $
* @package CommunityBuilder
* @copyright (C) 2004-2023 www.joomlapolis.com / Lightning MultiCom SA - and its licensors, all rights reserved
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU/GPL version 2
*/
use CB\Database\Table\FieldTable;
use CBLib\Language\CBTxt;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Form\FormHelper;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Version;
if ( ! ( defined( '_VALID_CB' ) || defined( '_JEXEC' ) ) ) { die( 'Direct Access to this location is not allowed.' ); }
FormHelper::loadFieldClass( 'list' );
if ( Version::MAJOR_VERSION < 4 ) {
class_alias( 'JFormFieldList', '\Joomla\CMS\Form\Field\ListField', false );
}
class JFormFieldcbfields extends ListField {
protected $type = 'cbfields';
protected function getOptions() {
global $_CB_database;
if ( ( ! file_exists( JPATH_SITE . '/libraries/CBLib/CBLib/Core/CBLib.php' ) ) || ( ! file_exists( JPATH_ADMINISTRATOR . '/components/com_comprofiler/plugin.foundation.php' ) ) ) {
return array();
}
/** @noinspection PhpIncludeInspection */
include_once( JPATH_ADMINISTRATOR . '/components/com_comprofiler/plugin.foundation.php' );
cbimport( 'cb.html' );
cbimport( 'language.front' );
$query = 'SELECT f.*'
. "\n FROM " . $_CB_database->NameQuote( '#__comprofiler_fields' ) . " AS f"
. "\n LEFT JOIN " . $_CB_database->NameQuote( '#__comprofiler_tabs' ) . " AS t"
. ' ON t.' . $_CB_database->NameQuote( 'tabid' ) . ' = f.' . $_CB_database->NameQuote( 'tabid' )
. "\n WHERE f." . $_CB_database->NameQuote( 'published' ) . " = 1"
. "\n AND f." . $_CB_database->NameQuote( 'name' ) . " != " . $_CB_database->Quote( 'NA' )
. "\n ORDER BY t." . $_CB_database->NameQuote( 'ordering' ) . ", f." . $_CB_database->NameQuote( 'ordering' );
$_CB_database->setQuery( $query );
$fields = $_CB_database->loadObjectList( null, '\CB\Database\Table\FieldTable', array( &$_CB_database ) );
$options = array();
$options[] = HTMLHelper::_( 'select.option', 'random', CBTxt::T( 'Random' ) );
/** @var FieldTable[] $fields */
if ( $fields ) foreach ( $fields as $field ) {
if ( count( $field->getTableColumns() ) ) {
$title = CBTxt::T( $field->title );
$options[] = HTMLHelper::_( 'select.option', $field->name, ( $title ? $title . ' (' . $field->name . ')' : $field->name ) );
}
}
return $options;
}
}