first commit

This commit is contained in:
2025-07-22 15:41:16 +02:00
commit 2a40a54622
81 changed files with 5614 additions and 0 deletions

13
administrator/access.xml Normal file
View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<access component="com_circolari">
<section name="component">
<action name="core.admin" title="JACTION_ADMIN" description="JACTION_ADMIN" />
<action name="core.manage" title="JACTION_MANAGE" description="JACTION_MANAGE" />
<action name="core.create" title="JACTION_CREATE" description="JACTION_CREATE" />
<action name="core.delete" title="JACTION_DELETE" description="JACTION_DELETE" />
<action name="core.edit" title="JACTION_EDIT" description="JACTION_EDIT" />
<action name="core.edit.state" title="JACTION_EDITSTATE" description="JACTION_EDITSTATE" />
<action name="core.edit.own" title="JACTION_EDITOWN" description="JACTION_EDITOWN" />
</section>
</access>

View File

@ -0,0 +1,18 @@
.icon-48-circolares {
background-image: url(../images/l_circolares.png);
padding-left:60px!important;
}
.icon-48-circolare {
background-image: url(../images/l_circolares.png);
padding-left:60px!important;
}
.color-box-circolares {
float: left; width: 15px; height: 15px; margin-right: 5px; border: 1px solid rgba(0, 0, 0, .2);}
.other-filters{
padding: 0 14px;
}

View File

@ -0,0 +1 @@
<html><body></body></html>

View File

@ -0,0 +1 @@
<html><body></body></html>

View File

@ -0,0 +1 @@
<html><body></body></html>

View File

@ -0,0 +1,44 @@
<?php
namespace Pcrt\Component\Circolari;
\defined('_JEXEC') or die;
use Joomla\CMS\Extension\Service\Provider\ServiceProviderInterface;
use Joomla\CMS\MVC\Factory\MvcFactoryInterface;
use Joomla\CMS\Dispatcher\ComponentDispatcherFactoryInterface;
use Joomla\CMS\Extension\ComponentInterface;
use Joomla\CMS\Extension\ExtensionServiceInterface;
use Joomla\CMS\Dispatcher\ComponentDispatcher;
use Psr\Container\ContainerInterface;
use Joomla\CMS\Extension\BootableExtensionInterface;
use Joomla\CMS\Extension\LazyServiceableTrait;
use Joomla\CMS\HTML\Registry;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Uri\Uri;
use Joomla\CMS\Factory;
use Joomla\CMS\Router\Router;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Router\SiteRouter;
use Joomla\CMS\Extension\Service\Provider\BootableServiceProviderInterface;
final class Provider implements ServiceProviderInterface
{
public function register(ContainerInterface \$container): void
{
\$container->get(ComponentDispatcherFactoryInterface::class)
->createDispatcher('com_circolari')
->registerView('circolares', \Pcrt\Component\Circolari\Administrator\View\Circolares\HtmlView::class)
->registerView('firmetipi', \Pcrt\Component\Circolari\Administrator\View\Firmetipi\HtmlView::class);
}
}

115
administrator/config.xml Normal file
View File

@ -0,0 +1,115 @@
<?xml version="1.0" encoding="utf-8"?>
<config>
<fieldset label="COM_CIRCOLARI" name="circolari">
</fieldset>
<fieldset name="permissions" description="JCONFIG_PERMISSIONS_DESC" label="JCONFIG_PERMISSIONS_LABEL">
<field name="rules" type="rules" component="com_circolari" class="inputbox" filter="rules" validate="rules" label="JCONFIG_PERMISSIONS_LABEL" section="component" />
</fieldset>
<fieldset name="component">
<field
name="save_history"
type="radio"
default="0"
label="JGLOBAL_SAVE_HISTORY_OPTIONS_LABEL"
description="JGLOBAL_SAVE_HISTORY_OPTIONS_DESC"
layout="joomla.form.field.radio.switcher"
>
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
<field name="history_limit" type="text" filter="integer" label="JGLOBAL_HISTORY_LIMIT_OPTIONS_LABEL" description="JGLOBAL_HISTORY_LIMIT_OPTIONS_DESC" default="5"/>
<field
name="sef_ids"
type="radio"
layout="joomla.form.field.radio.switcher"
default="0"
label="JGLOBAL_SEF_NOIDS_LABEL"
description="JGLOBAL_SEF_NOIDS_DESC"
filter="integer"
>
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
</fieldset>
</config>
<!--
########################################################################################
The following are a list of all the different types of fields you can add to this file
They are here for copy pasting - neat eh?
########################################################################################
https://docs.joomla.org/Standard_form_field_types
<field name="mycalendar" type="calendar" default="5-10-2008" label="Select a date" description="" format="%d-%m-%Y" />
https://docs.joomla.org/Standard_form_field_types
<field name="mycategory" type="category" label="Select a category" description="" section="3" />
https://docs.joomla.org/Standard_form_field_types
<field name="myeditor" type="editors" default="none" label="Select an editor" />
https://docs.joomla.org/Standard_form_field_types
<field name="myfile" type="filelist" default="" label="Select a file" description="" directory="administrator" filter="" exclude="" stripext="" />
https://docs.joomla.org/Standard_form_field_types
<field name="myfolder" type="folderlist" default="" label="Select a folder" directory="administrator" filter="" exclude="" stripext="" />
https://docs.joomla.org/Standard_form_field_types
<field name="myhelpsite" type="helpsites" default="" label="Select a help site" description="" />
https://docs.joomla.org/Standard_form_field_types
<field name="mysecretvariable" type="hidden" default="" />
https://docs.joomla.org/Standard_form_field_types
<field name="myimage" type="imagelist" default="" label="Select an image" description="" directory="" exclude="" stripext="" />
https://docs.joomla.org/Standard_form_field_types
<field name="mylanguage" type="languages" client="site" default="en-GB" label="Select a language" description="" />
https://docs.joomla.org/Standard_form_field_types
<field name="mylistvalue" type="list" default="" label="Select an option" description="">
<option value="0">Option 1</option>
<option value="1">Option 2</option>
</field>
https://docs.joomla.org/Standard_form_field_types
<field name="mymenu" type="menu" default="mainmenu" label="Select a menu" description="Select a menu" />
https://docs.joomla.org/Standard_form_field_types
<field name="mymenuitem" type="menuitem" default="45" label="Select a menu item" description="Select a menu item" />
https://docs.joomla.org/Standard_form_field_types
<field name="mypassword" type="password" default="secret" label="Enter a password" description="" size="5" />
https://docs.joomla.org/Standard_form_field_types
<field name="myradiovalue" type="radio" default="0" label="Select an option" description="">
<option value="0">1</option>
<option value="1">2</option>
</field>
https://docs.joomla.org/Standard_form_field_types
<field type="spacer" default="&lt;b&gt;Advanced parameters&lt;/b&gt;" />
https://docs.joomla.org/Standard_form_field_types
<field name="myfield" type="sql" default="10" label="Select an article" query="SELECT id, title FROM #__content" key_field=”id” value_field=”title” />
https://docs.joomla.org/Standard_form_field_types
<field name="mytextvalue" type="text" default="Some text" label="Enter some text" description="" size="10" />
https://docs.joomla.org/Standard_form_field_types
<field name="mytextarea" type="textarea" default="default" label="Enter some text" description="" rows="10" cols="5" />
https://docs.joomla.org/Standard_form_field_types
<field name="mytimezone" type="timezones" default="-10" label="Select a timezone" description="" />
https://docs.joomla.org/Standard_form_field_types
<field name="myusergroups" type="usergroup" default="" label="Select a user group" description="" />
-->

View File

@ -0,0 +1,30 @@
<?xml version='1.0' encoding='UTF-8'?>
<form addfieldprefix="Pcrt\Component\Circolari\Administrator\Field">
<fieldset>
<field name="id" type="text" readonly="true" class="readonly" default="0" description="JGLOBAL_FIELD_ID_DESC"/>
<field name="state" default="1" type="list" label="JSTATUS" description="JFIELD_PUBLISHED_DESC" class="inputbox" size="1">
<option value="1">JPUBLISHED</option>
<option value="0">JUNPUBLISHED</option>
<option value="2">JARCHIVED</option>
<option value="-2">JTRASHED</option>
</field>
<field name="ordering"/>
<field name="checked_out" type="hidden" filter="unset"/>
<field name="checked_out_time" type="hidden" filter="unset"/>
<field name="created_by" type="createdby" default="0" label="JGLOBAL_FIELD_CREATED_BY_LABEL" description="JGLOBAL_FIELD_CREATED_BY_DESC" hidden="true" hint="COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CREATED_BY"/>
<field name="modified_by" type="modifiedby" default="0" label="JGLOBAL_FIELD_MODIFIED_BY_LABEL" description="JGLOBAL_FIELD_MODIFIED_BY_DESC" hidden="true" hint="COM_CIRCOLARI_FORM_LBL_CIRCOLARE_MODIFIED_BY"/>
<field name="title" filter="safehtml" type="text" label="JGLOBAL_TITLE" description="JFIELD_TITLE_DESC" hint="COM_CIRCOLARI_FORM_LBL_CIRCOLARE_TITLE"/>
<field name="description" filter="safehtml" type="textarea" label="COM_CIRCOLARI_FORM_LBL_CIRCOLARE_DESCRIPTION" description="COM_CIRCOLARI_FORM_DESC_CIRCOLARE_DESCRIPTION" hint="COM_CIRCOLARI_FORM_LBL_CIRCOLARE_DESCRIPTION"/>
<field name="attachment" filter="safehtml" type="text" label="COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ATTACHMENT" description="COM_CIRCOLARI_FORM_DESC_CIRCOLARE_ATTACHMENT" hint="COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ATTACHMENT"/>
<field name="image" filter="safehtml" type="text" label="COM_CIRCOLARI_FORM_LBL_CIRCOLARE_IMAGE" description="COM_CIRCOLARI_FORM_DESC_CIRCOLARE_IMAGE" hint="COM_CIRCOLARI_FORM_LBL_CIRCOLARE_IMAGE"/>
<field name="version_note" type="text" label="JGLOBAL_FIELD_VERSION_NOTE_LABEL" description="JGLOBAL_FIELD_VERSION_NOTE_DESC" class="inputbox" size="45" labelclass="control-label"/>
</fieldset>
<fields name="params">
<fieldset name="firma_fields" label="Firma">
<field name="firma_obbligatoria" type="radio" label="Firma Obbligatoria" default="0">
<option value="1"></option>
<option value="0">No</option>
</field>
<field name="scadenza" type="calendar" label="Data Scadenza Firma" format="%Y-%m-%d"/>
</fieldset>
</fields><fieldset name="basic" label="COM_CIRCOLARI_FIELDSET_BASIC"><field name="tipologia_firma" type="sql" label="Tipologia Firma" query="SELECT id AS value, nome AS text FROM #__circolari_firmetipi WHERE state = 1 ORDER BY nome" key_field="value" value_field="text" class="form-select" required="false" description="Seleziona la tipologia di firma richiesta per questa circolare."/></fieldset></form>

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<form>
<fields name="filter">
<field name="search" type="text" description="COM_CIRCOLARI_SEARCH_FILTER_SUBMIT"
label="COM_USERS_FILTER_SEARCH_DESC"
class="js-stools-search-string" />
<field name="state"
type="status"
label="COM_CIRCOLARI_FILTER_STATE"
description="COM_CIRCOLARI_FILTER_STATE_DESC"
onchange="this.form.submit();"
>
<option value="">JOPTION_SELECT_PUBLISHED</option>
</field>
</fields>
<fields name="list">
<field name="fullordering"
type="list"
label="COM_CIRCOLARI_LIST_FULL_ORDERING"
description="COM_CIRCOLARI_LIST_FULL_ORDERING_DESC"
onchange="this.form.submit();"
default="a.id DESC"
>
<option value="">JGLOBAL_SORT_BY</option>
<option value="a.id ASC">COM_CIRCOLARI_ID_ASC</option><option value="a.id DESC">COM_CIRCOLARI_ID_DESC</option><option value="a.state ASC">COM_CIRCOLARI_STATE_ASC</option><option value="a.state DESC">COM_CIRCOLARI_STATE_DESC</option><option value="a.ordering ASC">COM_CIRCOLARI_ORDERING_ASC</option><option value="a.ordering DESC">COM_CIRCOLARI_ORDERING_DESC</option>
</field>
<field name="limit"
type="limitbox"
label="COM_CIRCOLARI_LIST_LIMIT"
description="COM_CIRCOLARI_LIST_LIMIT_DESC"
class="input-mini"
default="25"
onchange="this.form.submit();"
/>
</fields>
</form>

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<form>
<fields name="filter">
<field name="search" type="text" description="COM_HIGHLIGHTS_SEARCH_FILTER_SUBMIT"
label="COM_USERS_FILTER_SEARCH_DESC"
class="js-stools-search-string" />
<field name="state"
type="status"
label="COM_HIGHLIGHTS_FILTER_STATE"
description="COM_HIGHLIGHTS_FILTER_STATE_DESC"
onchange="this.form.submit();">
<option value="">JOPTION_SELECT_PUBLISHED</option>
</field>
</fields>
<fields name="list">
<field name="fullordering"
type="list"
label="COM_HIGHLIGHTS_LIST_FULL_ORDERING"
description="COM_HIGHLIGHTS_LIST_FULL_ORDERING_DESC"
onchange="this.form.submit();"
default="a.id DESC"
>
<option value="">JGLOBAL_SORT_BY</option>
<option value="a.id ASC">COM_HIGHLIGHTS_ID_ASC</option><option value="a.id DESC">COM_HIGHLIGHTS_ID_DESC</option><option value="a.state ASC">COM_HIGHLIGHTS_STATE_ASC</option><option value="a.state DESC">COM_HIGHLIGHTS_STATE_DESC</option><option value="a.ordering ASC">COM_HIGHLIGHTS_ORDERING_ASC</option><option value="a.ordering DESC">COM_HIGHLIGHTS_ORDERING_DESC</option><option value="a.nome ASC">COM_HIGHLIGHTS_NOME_ASC</option><option value="a.nome DESC">COM_HIGHLIGHTS_NOME_DESC</option><option value="a.lingua ASC">COM_HIGHLIGHTS_LINGUA_ASC</option><option value="a.lingua DESC">COM_HIGHLIGHTS_LINGUA_DESC</option>
</field>
<field name="limit"
type="limitbox"
label="COM_HIGHLIGHTS_LIST_LIMIT"
description="COM_HIGHLIGHTS_LIST_LIMIT_DESC"
class="input-mini"
default="25"
onchange="this.form.submit();"
/>
</fields>
</form>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<form addfieldprefix="Pcrt\Component\Highlights\Administrator\Field">
<fieldset>
<field name="id" type="text" readonly="true" class="readonly" default="0" description="JGLOBAL_FIELD_ID_DESC"/>
<field name="state" default="1" type="list" label="JSTATUS" description="JFIELD_PUBLISHED_DESC" class="inputbox" size="1">
<option value="1">JPUBLISHED</option>
<option value="0">JUNPUBLISHED</option>
<option value="2">JARCHIVED</option>
<option value="-2">JTRASHED</option>
</field>
<field name="ordering"/>
<field name="checked_out" type="hidden" filter="unset"/>
<field name="checked_out_time" type="hidden" filter="unset"/>
<field name="created_by" type="createdby" default="0" label="JGLOBAL_FIELD_CREATED_BY_LABEL" description="JGLOBAL_FIELD_CREATED_BY_DESC" hidden="true" hint="COM_HIGHLIGHTS_FORM_LBL_ETICHETTA_CREATED_BY"/>
<field name="modified_by" type="modifiedby" default="0" label="JGLOBAL_FIELD_MODIFIED_BY_LABEL" description="JGLOBAL_FIELD_MODIFIED_BY_DESC" hidden="true" hint="COM_HIGHLIGHTS_FORM_LBL_ETICHETTA_MODIFIED_BY"/>
<field name="nome" filter="safehtml" type="text" label="COM_HIGHLIGHTS_FORM_LBL_ETICHETTA_NOME" description="COM_HIGHLIGHTS_FORM_DESC_ETICHETTA_NOME" hint="COM_HIGHLIGHTS_FORM_LBL_ETICHETTA_NOME"/>
<field name="lingua" type="contentlanguage" label="COM_HIGHLIGHTS_FORM_LBL_ETICHETTA_LINGUA" description="COM_HIGHLIGHTS_FORM_DESC_ETICHETTA_LINGUA" hint="COM_HIGHLIGHTS_FORM_LBL_ETICHETTA_LINGUA">
<option value="*">JALL</option>
</field>
<field name="version_note" type="text" label="JGLOBAL_FIELD_VERSION_NOTE_LABEL" description="JGLOBAL_FIELD_VERSION_NOTE_DESC" class="inputbox" size="45" labelclass="control-label"/>
</fieldset>
</form>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<form>
<fieldset name="basic">
<field name="nome" type="text" label="Nome" required="true" />
<field name="descrizione" type="textarea" label="Descrizione" />
</fieldset>
</form>

View File

@ -0,0 +1,43 @@
COM_CIRCOLARI = "Circolari"
COM_CIRCOLARI_ITEM_SAVED_SUCCESSFULLY = "Item saved successfully"
COM_CIRCOLARI_ITEM_DELETED_SUCCESSFULLY = "Item deleted successfully"
COM_CIRCOLARI_ITEM_DELETED_UNSUCCESSFULLY = "Could not delete item"
COM_CIRCOLARI_ITEM_DOESNT_EXIST = "Item does not exist"
COM_CIRCOLARI_ITEM_NOT_LOADED = "Could not load the item"
COM_CIRCOLARI_VIEW_FILE = "[View File]"
COM_CIRCOLARI_ADD_ITEM = "Add"
COM_CIRCOLARI_EDIT_ITEM = "Edit"
COM_CIRCOLARI_DELETE_ITEM = "Delete"
COM_CIRCOLARI_DELETE_MESSAGE = "Are you sure that you want delete this item?"
COM_CIRCOLARI_DELETE_CONFIRM = "You're about to delete the item <strong>#%s</strong>. Are you sure?"
COM_CIRCOLARI_PUBLISH_ITEM = "Publish"
COM_CIRCOLARI_UNPUBLISH_ITEM = "Unpublish"
COM_CIRCOLARI_NO_ITEMS = "There are no items in the list"
COM_CIRCOLARI_SEARCH_TOOLS = "Search Tools"
COM_CIRCOLARI_SEARCH_TOOLS_DESC = ""
COM_CIRCOLARI_SEARCH_FILTER_SUBMIT = "Search"
COM_CIRCOLARI_SEARCH_FILTER_CLEAR = "Clear"
COM_CIRCOLARI_SEARCH_FILTER_DATE_FORMAT = "Dates should be in this format: \"YYYY-MM-DD\". Some filter fields have been ignored."
COM_CIRCOLARI_ERROR_MESSAGE_NOT_AUTHORISED = "You don't have permission to access this. Please contact a website administrator if this is incorrect."
COM_CIRCOLARI_ADD_ITEM_TITLE = "Add"
COM_CIRCOLARI_EDIT_ITEM_TITLE = "Edit %s"
COM_CIRCOLARI_ACTION_PERMISSIONS_LABEL = "Permissions"
COM_CIRCOLARI_VALIDATION_FORM_FAILED = "Invalid form"
COM_CIRCOLARI_CHECKEDIN_SUCCESSFULLY = "Item successfully checked in"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ID="ID"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_STATE="State"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ORDERING="Order"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CHECKED_OUT="N/A"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CHECKED_OUT_TIME="N/A"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CREATED_BY="Created by"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_MODIFIED_BY="Modified by"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_TITLE="Title"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_DESCRIPTION="Description"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ATTACHMENT="Attachment"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_IMAGE="Image"

View File

@ -0,0 +1,4 @@
COM_CIRCOLARI = "Circolari"
COM_CIRCOLARI_XML_DESCRIPTION = ""
COM_CIRCOLARI_TITLE_CIRCOLARES="Circolari"

View File

@ -0,0 +1,43 @@
COM_CIRCOLARI = "Circolari"
COM_CIRCOLARI_ITEM_SAVED_SUCCESSFULLY = "Item saved successfully"
COM_CIRCOLARI_ITEM_DELETED_SUCCESSFULLY = "Item deleted successfully"
COM_CIRCOLARI_ITEM_DELETED_UNSUCCESSFULLY = "Could not delete item"
COM_CIRCOLARI_ITEM_DOESNT_EXIST = "Item does not exist"
COM_CIRCOLARI_ITEM_NOT_LOADED = "Could not load the item"
COM_CIRCOLARI_VIEW_FILE = "[View File]"
COM_CIRCOLARI_ADD_ITEM = "Add"
COM_CIRCOLARI_EDIT_ITEM = "Edit"
COM_CIRCOLARI_DELETE_ITEM = "Delete"
COM_CIRCOLARI_DELETE_MESSAGE = "Are you sure that you want delete this item?"
COM_CIRCOLARI_DELETE_CONFIRM = "You're about to delete the item <strong>#%s</strong>. Are you sure?"
COM_CIRCOLARI_PUBLISH_ITEM = "Publish"
COM_CIRCOLARI_UNPUBLISH_ITEM = "Unpublish"
COM_CIRCOLARI_NO_ITEMS = "There are no items in the list"
COM_CIRCOLARI_SEARCH_TOOLS = "Search Tools"
COM_CIRCOLARI_SEARCH_TOOLS_DESC = ""
COM_CIRCOLARI_SEARCH_FILTER_SUBMIT = "Search"
COM_CIRCOLARI_SEARCH_FILTER_CLEAR = "Clear"
COM_CIRCOLARI_SEARCH_FILTER_DATE_FORMAT = "Dates should be in this format: \"YYYY-MM-DD\". Some filter fields have been ignored."
COM_CIRCOLARI_ERROR_MESSAGE_NOT_AUTHORISED = "You don't have permission to access this. Please contact a website administrator if this is incorrect."
COM_CIRCOLARI_ADD_ITEM_TITLE = "Add"
COM_CIRCOLARI_EDIT_ITEM_TITLE = "Edit %s"
COM_CIRCOLARI_ACTION_PERMISSIONS_LABEL = "Permissions"
COM_CIRCOLARI_VALIDATION_FORM_FAILED = "Invalid form"
COM_CIRCOLARI_CHECKEDIN_SUCCESSFULLY = "Item successfully checked in"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ID="ID"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_STATE="State"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ORDERING="Order"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CHECKED_OUT="N/A"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CHECKED_OUT_TIME="N/A"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CREATED_BY="Created by"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_MODIFIED_BY="Modified by"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_TITLE="Title"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_DESCRIPTION="Description"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ATTACHMENT="Attachment"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_IMAGE="Image"

View File

@ -0,0 +1,4 @@
COM_CIRCOLARI = "Circolari"
COM_CIRCOLARI_XML_DESCRIPTION = ""
COM_CIRCOLARI_TITLE_CIRCOLARES="Circolari"

View File

@ -0,0 +1,101 @@
<?xml version="1.0"?>
<menu
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:joomla.org"
xsi:schemaLocation="urn:joomla.org menu.xsd"
>
<menuitem
title="COM_CONTENT_MENUS"
type="heading"
icon="file-alt"
class="class:file-alt"
>
<menuitem
title="COM_CONTENT_MENUS_ARTICLE_MANAGER"
type="component"
element="com_content"
link="index.php?option=com_content&amp;view=articles"
quicktask="index.php?option=com_content&amp;task=article.add"
quicktask-title="COM_CONTENT_MENUS_NEW_ARTICLE"
/>
<menuitem
title="COM_CONTENT_MENUS_CATEGORY_MANAGER"
type="component"
element="com_categories"
link="index.php?option=com_categories&amp;view=categories&amp;extension=com_content"
quicktask="index.php?option=com_categories&amp;extension=com_content&amp;task=category.add"
quicktask-title="COM_CONTENT_MENUS_NEW_CATEGORY"
/>
<menuitem
title="COM_CONTENT_MENUS_FEATURED"
type="component"
element="com_content"
link="index.php?option=com_content&amp;view=featured"
class="class:featured"
/>
</menuitem>
<menuitem
title="COM_CONTENT_MENUS_MANAGE"
type="heading"
icon="cog"
class="class:file-alt"
>
<menuitem
title="COM_CONTENT_MENUS_WORKFLOW"
type="component"
element="com_workflow"
link="index.php?option=com_workflow&amp;view=workflows&amp;extension=com_content.article"
/>
<menuitem
title="MOD_MENU_FIELDS"
type="component"
element="com_fields"
link="index.php?option=com_fields&amp;view=fields&amp;context=com_content.article"
/>
<menuitem
title="MOD_MENU_FIELDS_GROUP"
type="component"
element="com_fields"
link="index.php?option=com_fields&amp;view=groups&amp;context=com_content.article"
/>
</menuitem>
<menuitem
title="COM_CONTENT_MENUS_MISC"
type="heading"
icon="cubes"
class="class:file-alt"
dashboard="content"
>
<menuitem
title="MOD_MENU_MEDIA_MANAGER"
type="component"
element="com_media"
link="index.php?option=com_media"
class="class:image"
/>
<menuitem
title="MOD_MENU_EXTENSIONS_MODULE_MANAGER_SITE"
type="component"
element="com_modules"
link="index.php?option=com_modules&amp;view=modules&amp;client_id=0"
quicktask="index.php?option=com_modules&amp;view=select&amp;client_id=0"
quicktask-title="COM_CONTENT_MENUS_NEW_SITE_MODULE"
/>
<menuitem
title="MOD_MENU_EXTENSIONS_MODULE_MANAGER_ADMINISTRATOR"
type="component"
element="com_modules"
link="index.php?option=com_modules&amp;view=modules&amp;client_id=1"
quicktask="index.php?option=com_modules&amp;view=select&amp;client_id=1"
quicktask-title="COM_CONTENT_MENUS_NEW_ADMIN_MODULE"
/>
</menuitem>
</menu>

View File

@ -0,0 +1,66 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\CMS\Categories\CategoryFactoryInterface;
use Joomla\CMS\Component\Router\RouterFactoryInterface;
use Joomla\CMS\Dispatcher\ComponentDispatcherFactoryInterface;
use Joomla\CMS\Extension\ComponentInterface;
use Joomla\CMS\Extension\Service\Provider\CategoryFactory;
use Joomla\CMS\Extension\Service\Provider\ComponentDispatcherFactory;
use Joomla\CMS\Extension\Service\Provider\MVCFactory;
use Joomla\CMS\Extension\Service\Provider\RouterFactory;
use Joomla\CMS\HTML\Registry;
use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
use Pcrt\Component\Circolari\Administrator\Extension\CircolariComponent;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
/**
* The Circolari service provider.
*
* @since 1.0.0
*/
return new class implements ServiceProviderInterface
{
/**
* Registers the service provider with a DI container.
*
* @param Container $container The DI container.
*
* @return void
*
* @since 1.0.0
*/
public function register(Container $container)
{
$container->registerServiceProvider(new CategoryFactory('\\Pcrt\\Component\\Circolari'));
$container->registerServiceProvider(new MVCFactory('\\Pcrt\\Component\\Circolari'));
$container->registerServiceProvider(new ComponentDispatcherFactory('\\Pcrt\\Component\\Circolari'));
$container->registerServiceProvider(new RouterFactory('\\Pcrt\\Component\\Circolari'));
$container->set(
ComponentInterface::class,
function (Container $container)
{
$component = new CircolariComponent($container->get(ComponentDispatcherFactoryInterface::class));
$component->setRegistry($container->get(Registry::class));
$component->setMVCFactory($container->get(MVCFactoryInterface::class));
$component->setCategoryFactory($container->get(CategoryFactoryInterface::class));
$component->setRouterFactory($container->get(RouterFactoryInterface::class));
return $component;
}
);
}
};

View File

@ -0,0 +1 @@
<html><body></body></html>

View File

@ -0,0 +1,48 @@
CREATE TABLE IF NOT EXISTS `#__circolari` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`state` TINYINT(1) NULL DEFAULT 1,
`ordering` INT(11) NULL DEFAULT 0,
`checked_out` INT(11) UNSIGNED,
`checked_out_time` DATETIME NULL DEFAULT NULL ,
`created_by` INT(11) NULL DEFAULT 0,
`modified_by` INT(11) NULL DEFAULT 0,
`title` VARCHAR(255) NULL DEFAULT "",
`description` TEXT NULL ,
`attachment` VARCHAR(255) NULL DEFAULT "",
`image` VARCHAR(255) NULL DEFAULT "",
PRIMARY KEY (`id`)
,KEY `idx_state` (`state`)
,KEY `idx_checked_out` (`checked_out`)
,KEY `idx_created_by` (`created_by`)
,KEY `idx_modified_by` (`modified_by`)
) DEFAULT COLLATE=utf8mb4_unicode_ci;
-- Aggiunta campi extra alla tabella circolari
ALTER TABLE `#__circolari`
ADD COLUMN `tipologia_firma` ENUM('presa_visione','aderisco','non_aderisco','non_in_servizio') DEFAULT 'presa_visione',
ADD COLUMN `firma_obbligatoria` TINYINT(1) DEFAULT 0,
ADD COLUMN `scadenza` DATE DEFAULT NULL;
-- Creazione tabella firme se non esiste
CREATE TABLE IF NOT EXISTS `#__circolari_firme` (
`id` INT NOT NULL AUTO_INCREMENT,
`circolare_id` INT NOT NULL,
`user_id` INT NOT NULL,
`firma` ENUM('presa_visione','aderisco','non_aderisco','non_in_servizio') NOT NULL,
`data_firma` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `firma_unica` (`circolare_id`, `user_id`)
);
-- Tabella delle tipologie di firma (per gestione dinamica)
CREATE TABLE IF NOT EXISTS `#__circolari_firmetipi` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`nome` VARCHAR(100) NOT NULL,
`descrizione` TEXT DEFAULT NULL,
`state` TINYINT(1) DEFAULT 1,
PRIMARY KEY (`id`)
);

View File

@ -0,0 +1 @@
DROP TABLE IF EXISTS `#__circolari`;

View File

@ -0,0 +1 @@
/* Only premium users are allowed to update a component */

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<schema>
<!-- Metadata -->
<meta>
<!-- Supported driver types -->
<drivers>
<driver>mysql</driver>
<driver>mysqli</driver>
<driver>pdomysql</driver>
</drivers>
</meta>
<sql>
</sql>
</schema>

View File

@ -0,0 +1,24 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Controller;
\defined('_JEXEC') or die;
use Joomla\CMS\MVC\Controller\FormController;
/**
* Circolare controller class.
*
* @since 1.0.0
*/
class CircolareController extends FormController
{
protected $view_list = 'circolares';
}

View File

@ -0,0 +1,116 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Controller;
\defined('_JEXEC') or die;
use Joomla\CMS\Application\SiteApplication;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Multilanguage;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Uri\Uri;
use Joomla\Utilities\ArrayHelper;
/**
* Circolares list controller class.
*
* @since 1.0.0
*/
class CircolaresController extends AdminController
{
/**
* Method to clone existing Circolares
*
* @return void
*
* @throws Exception
*/
public function duplicate()
{
// Check for request forgeries
$this->checkToken();
// Get id(s)
$pks = $this->input->post->get('cid', array(), 'array');
try
{
if (empty($pks))
{
throw new \Exception(Text::_('COM_CIRCOLARI_NO_ELEMENT_SELECTED'));
}
ArrayHelper::toInteger($pks);
$model = $this->getModel();
$model->duplicate($pks);
$this->setMessage(Text::_('COM_CIRCOLARI_ITEMS_SUCCESS_DUPLICATED'));
}
catch (\Exception $e)
{
Factory::getApplication()->enqueueMessage($e->getMessage(), 'warning');
}
$this->setRedirect('index.php?option=com_circolari&view=circolares');
}
/**
* Proxy for getModel.
*
* @param string $name Optional. Model name
* @param string $prefix Optional. Class prefix
* @param array $config Optional. Configuration array for model
*
* @return object The Model
*
* @since 1.0.0
*/
public function getModel($name = 'Circolare', $prefix = 'Administrator', $config = array())
{
return parent::getModel($name, $prefix, array('ignore_request' => true));
}
/**
* Method to save the submitted ordering values for records via AJAX.
*
* @return void
*
* @since 1.0.0
*
* @throws Exception
*/
public function saveOrderAjax()
{
// Get the input
$pks = $this->input->post->get('cid', array(), 'array');
$order = $this->input->post->get('order', array(), 'array');
// Sanitize the input
ArrayHelper::toInteger($pks);
ArrayHelper::toInteger($order);
// Get the model
$model = $this->getModel();
// Save the ordering
$return = $model->saveorder($pks, $order);
if ($return)
{
echo "1";
}
// Close the application
Factory::getApplication()->close();
}
}

View File

@ -0,0 +1,48 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Controller;
\defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\Controller\BaseController;
use Joomla\CMS\Router\Route;
/**
* Circolari master display controller.
*
* @since 1.0.0
*/
class DisplayController extends BaseController
{
/**
* The default view.
*
* @var string
* @since 1.0.0
*/
protected $default_view = 'circolari';
/**
* Method to display a view.
*
* @param boolean $cachable If true, the view output will be cached
* @param array $urlparams An array of safe URL parameters and their variable types, for valid values see {@link InputFilter::clean()}.
*
* @return BaseController|boolean This object to support chaining.
*
* @since 1.0.0
*/
public function display($cachable = false, $urlparams = array())
{
return parent::display();
}
}

View File

@ -0,0 +1,24 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Eddy Prosperi <eddy.prosperi@protocollicreativi.it>
* @copyright 2024 Eddy Prosperi
* @license GNU General Public License versione 2 o successiva; vedi LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Controller;
\defined('_JEXEC') or die;
use Joomla\CMS\MVC\Controller\FormController;
/**
* Etichetta Firmatipo controller class.
*
* @since 1.0.0
*/
class FirmatipoController extends FormController
{
protected $view_list = 'firmetipi';
}

View File

@ -0,0 +1,116 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Eddy Prosperi <eddy.prosperi@protocollicreativi.it>
* @copyright 2024 Eddy Prosperi
* @license GNU General Public License versione 2 o successiva; vedi LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Controller;
\defined('_JEXEC') or die;
use Joomla\CMS\Application\SiteApplication;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Multilanguage;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Uri\Uri;
use Joomla\Utilities\ArrayHelper;
/**
* Etichette list Firmetipi controller class.
*
* @since 1.0.0
*/
class FirmetipiController extends AdminController
{
/**
* Method to clone existing Etichette
*
* @return void
*
* @throws Exception
*/
public function duplicate()
{
// Check for request forgeries
$this->checkToken();
// Get id(s)
$pks = $this->input->post->get('cid', array(), 'array');
try
{
if (empty($pks))
{
throw new \Exception(Text::_('COM_HIGHLIGHTS_NO_ELEMENT_SELECTED'));
}
ArrayHelper::toInteger($pks);
$model = $this->getModel();
$model->duplicate($pks);
$this->setMessage(Text::_('COM_HIGHLIGHTS_ITEMS_SUCCESS_DUPLICATED'));
}
catch (\Exception $e)
{
Factory::getApplication()->enqueueMessage($e->getMessage(), 'warning');
}
$this->setRedirect('index.php?option=com_circolari&view=firmetipi');
}
/**
* Proxy for getModel.
*
* @param string $name Optional. Model name
* @param string $prefix Optional. Class prefix
* @param array $config Optional. Configuration array for model
*
* @return object The Model
*
* @since 1.0.0
*/
public function getModel($name = 'FirmaTipo', $prefix = 'Administrator', $config = array())
{
return parent::getModel($name, $prefix, array('ignore_request' => true));
}
/**
* Method to save the submitted ordering values for records via AJAX.
*
* @return void
*
* @since 1.0.0
*
* @throws Exception
*/
public function saveOrderAjax()
{
// Get the input
$pks = $this->input->post->get('cid', array(), 'array');
$order = $this->input->post->get('order', array(), 'array');
// Sanitize the input
ArrayHelper::toInteger($pks);
ArrayHelper::toInteger($order);
// Get the model
$model = $this->getModel();
// Save the ordering
$return = $model->saveorder($pks, $order);
if ($return)
{
echo "1";
}
// Close the application
Factory::getApplication()->close();
}
}

View File

@ -0,0 +1,77 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Extension;
defined('JPATH_PLATFORM') or die;
use Pcrt\Component\Circolari\Administrator\Service\Html\CIRCOLARI;
use Joomla\CMS\Application\SiteApplication;
use Joomla\CMS\Association\AssociationServiceInterface;
use Joomla\CMS\Association\AssociationServiceTrait;
use Joomla\CMS\Categories\CategoryServiceTrait;
use Joomla\CMS\Component\Router\RouterServiceInterface;
use Joomla\CMS\Component\Router\RouterServiceTrait;
use Joomla\CMS\Extension\BootableExtensionInterface;
use Joomla\CMS\Extension\MVCComponent;
use Joomla\CMS\HTML\HTMLRegistryAwareTrait;
use Joomla\CMS\Tag\TagServiceTrait;
use Psr\Container\ContainerInterface;
use Joomla\CMS\Categories\CategoryServiceInterface;
/**
* Component class for Circolari
*
* @since 1.0.0
*/
class CircolariComponent extends MVCComponent implements RouterServiceInterface, BootableExtensionInterface, CategoryServiceInterface
{
use AssociationServiceTrait;
use RouterServiceTrait;
use HTMLRegistryAwareTrait;
use CategoryServiceTrait, TagServiceTrait {
CategoryServiceTrait::getTableNameForSection insteadof TagServiceTrait;
CategoryServiceTrait::getStateColumnForSection insteadof TagServiceTrait;
}
/** @inheritdoc */
public function boot(ContainerInterface $container)
{
$db = $container->get('DatabaseDriver');
$this->getRegistry()->register('circolari', new CIRCOLARI($db));
}
/**
* Returns the table for the count items functions for the given section.
*
* @param string The section
*
* * @return string|null
*
* @since 4.0.0
*/
protected function getTableNameForSection(?string $section = null)
{
}
/**
* Adds Count Items for Category Manager.
*
* @param \stdClass[] $items The category objects
* @param string $section The section
*
* @return void
*
* @since 4.0.0
*/
public function countItems(array $items, string $section)
{
}
}

View File

@ -0,0 +1,67 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Form\FormField;
use \Joomla\CMS\User\UserFactoryInterface;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class CreatedbyField extends FormField
{
/**
* The form field type.
*
* @var tring
* @since 1.0.0
*/
protected $type = 'createdby';
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function getInput()
{
// Initialize variables.
$html = array();
// Load user
$user_id = $this->value;
if ($user_id)
{
$container = \Joomla\CMS\Factory::getContainer();
$userFactory = $container->get(UserFactoryInterface::class);
$user = $userFactory->loadUserById($user_id);
}
else
{
$user = Factory::getApplication()->getIdentity();
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $user->id . '" />';
}
if (!$this->hidden)
{
$html[] = "<div>" . $user->name . " (" . $user->username . ")</div>";
}
return implode($html);
}
}

View File

@ -0,0 +1,297 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\HTML\HTMLHelper;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Form\Field\ListField;
/**
* Supports a value from an external table
*
* @since 1.0.0
*/
#[\AllowDynamicProperties]
class ForeignKeyField extends ListField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'foreignkey';
protected $layout = 'joomla.form.field.list-fancy-select';
/**
* The translate.
*
* @var boolean
* @since 1.0.0
*/
protected $translate = true;
protected $header = false;
private $input_type;
private $table;
private $key_field;
private $value_field;
private $option_key_field;
private $option_value_field;
private $condition;
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function processQuery()
{
// Type of input the field shows
$this->input_type = $this->getAttribute('input_type');
// Database Table
$this->table = $this->getAttribute('table');
// The field that the field will save on the database
$this->key_field = (string) $this->getAttribute('key_field');
// The column that the field shows in the input
$this->value_field = (string) $this->getAttribute('value_field');
// The option field that the field will save on the database
$this->option_key_field = (string) $this->getAttribute('option_key_field');
// The option value that the field shows in the input
$this->option_value_field = (string) $this->getAttribute('option_value_field');
// Flag to identify if the fk_value is multiple
$this->value_multiple = (int) $this->getAttribute('value_multiple', 0);
$this->required = (string) $this->getAttribute('required', 0);
// Flag to identify if the fk_value hides the trashed items
$this->hideTrashed = (int) $this->getAttribute('hide_trashed', 0);
// Flag to identify if the fk_value hides the unpublished items
$this->hideUnpublished = (int) $this->getAttribute('hide_unpublished', 0);
// Flag to identify if the fk_value hides the published items
$this->hidePublished = (int) $this->getAttribute('hide_published', 0);
// Flag to identify if the fk_value hides the archived items
$this->hideArchived = (int) $this->getAttribute('hide_archived', 0);
// Flag to identify if the fk has default order
$this->fk_ordering = (string) $this->getAttribute('fk_ordering');
// The where SQL for foreignkey
$this->condition = (string) $this->getAttribute('condition');
// Flag for translate options
$this->translate = (bool) $this->getAttribute('translate');
// Initialize variables.
$html = '';
$fk_value = '';
// Load all the field options
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->getQuery(true);
// Support for multiple fields on fk_values
if ($this->value_multiple == 1)
{
// Get the fields for multiple value
$this->value_fields = (string) $this->getAttribute('value_field_multiple');
$this->value_fields = explode(',', $this->value_fields);
$this->separator = (string) $this->getAttribute('separator');
$fk_value = ' CONCAT(';
foreach ($this->value_fields as $field)
{
$fk_value .= $db->quoteName($field) . ', \'' . $this->separator . '\', ';
}
$fk_value = substr($fk_value, 0, -(strlen($this->separator) + 6));
$fk_value .= ') AS ' . $db->quoteName($this->value_field);
}
else
{
$fk_value = $db->quoteName($this->value_field);
}
$query
->select(
array(
$db->quoteName($this->key_field),
$fk_value
)
)
->from($this->table);
if ($this->hideTrashed)
{
$query->where($db->quoteName('state') . ' != -2');
}
if ($this->hideUnpublished)
{
$query->where($db->quoteName('state') . ' != 0');
}
if ($this->hidePublished)
{
$query->where($db->quoteName('state') . ' != 1');
}
if ($this->hideArchived)
{
$query->where($db->quoteName('state') . ' != 2');
}
if ($this->fk_ordering)
{
$query->order($this->fk_ordering);
}
if($this->condition)
{
$query->where($this->condition);
}
return $query;
}
/**
* Method to get the field input for a foreignkey field.
*
* @return string The field input.
*
* @since 1.0.0
*/
protected function getInput()
{
$data = $this->getLayoutData();
if (!\is_array($this->value) && !empty($this->value))
{
if (\is_object($this->value))
{
$this->value = get_object_vars($this->value);
}
// String in format 2,5,4
if (\is_string($this->value))
{
$this->value = explode(',', $this->value);
}
// Integer is given
if (\is_int($this->value))
{
$this->value = array($this->value);
}
$data['value'] = $this->value;
}
$data['options'] = $this->getOptions();
return $this->getRenderer($this->layout)->render($data);
}
/**
* Method to get the field options.
*
* @return array The field option objects.
*
* @since 1.0.0
*/
protected function getOptions()
{
$options = array();
$db = Factory::getContainer()->get('DatabaseDriver');
try
{
$db->setQuery($this->processQuery());
$results = $db->loadObjectList();
}
catch (ExecutionFailureException $e)
{
Factory::getApplication()->enqueueMessage(Text::_('JERROR_AN_ERROR_HAS_OCCURRED'), 'error');
}
// Add header.
if (!empty($this->header))
{
$options[] = (object) ["value" => '', "text" => Text::_($this->header)];
}
if(!empty($this->option_value_field) || !empty($this->option_key_field))
{
$options[] = (object) ["value" => $this->option_key_field, "text" => Text::_($this->option_value_field)];
}
// Build the field options.
if (!empty($results))
{
foreach ($results as $item)
{
$options[] = (object) [
"value" => $item->{$this->key_field},
"text" => $this->translate == true ? Text::_($item->{$this->value_field}) : $item->{$this->value_field}
];
}
}
// Merge any additional options in the XML definition.
$options = array_merge(parent::getOptions(), $options);
return $options;
}
/**
* Wrapper method for getting attributes from the form element
*
* @param string $attr_name Attribute name
* @param mixed $default Optional value to return if attribute not found
*
* @return mixed The value of the attribute if it exists, null otherwise
*/
public function getAttribute($attr_name, $default = null)
{
if (!empty($this->element[$attr_name]))
{
return $this->element[$attr_name];
}
else
{
return $default;
}
}
}

View File

@ -0,0 +1,52 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Form\FormField;
use \Joomla\CMS\Factory;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class ModifiedbyField extends \Joomla\CMS\Form\FormField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'modifiedby';
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function getInput()
{
// Initialize variables.
$html = array();
$user = Factory::getApplication()->getIdentity();
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $user->id . '" />';
if (!$this->hidden)
{
$html[] = "<div>" . $user->name . " (" . $user->username . ")</div>";
}
return implode($html);
}
}

View File

@ -0,0 +1,83 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Field;
defined('JPATH_BASE') or die;
use Joomla\CMS\Helper\UserGroupsHelper;
use \Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class NestedparentField extends ListField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'nestedparent';
/**
* Method to get the field options.
*
* @return array The field option objects.
*
* @since 1.0.0
*/
protected function getOptions()
{
$options = array();
$table = $this->getAttribute('table');
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->getQuery(true)
->select('DISTINCT(a.id) AS value, a.title AS text, a.level, a.lft')
->from($table . ' AS a');
// Prevent parenting to children of this item.
if ($id = $this->form->getValue('id'))
{
$query->join('LEFT', $db->quoteName($table) . ' AS p ON p.id = ' . (int) $id)
->where('NOT(a.lft >= p.lft AND a.rgt <= p.rgt)');
}
$query->order('a.lft ASC');
// Get the options.
$db->setQuery($query);
try
{
$options = $db->loadObjectList();
}
catch (\RuntimeException $e)
{
throw new \Exception($e->getMessage(), 500);
}
// Pad the option text with spaces using depth level as a multiplier.
for ($i = 0, $n = count($options); $i < $n; $i++)
{
$options[$i]->text = str_repeat('- ', $options[$i]->level) . $options[$i]->text;
}
// Merge any additional options in the XML definition.
$options = array_merge(parent::getOptions(), $options);
return $options;
}
}

View File

@ -0,0 +1,69 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Form\FormField;
use \Joomla\CMS\Date\Date;
use Joomla\CMS\HTML\HTMLHelper;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class TimecreatedField extends FormField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'timecreated';
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function getInput()
{
// Initialize variables.
$html = array();
$time_created = $this->value;
// If time is empty or invalid, use current time in UTC for saving
if (empty($time_created) || $time_created === '0000-00-00 00:00:00' || !strtotime($time_created)) {
$now = Factory::getDate(); // UTC
$time_created = $now->toSql(true);
}
// Store raw UTC date in hidden input
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . htmlspecialchars($time_created, ENT_QUOTES, 'UTF-8') . '" />';
$hidden = (boolean) $this->element['hidden'];
if ($hidden == null || !$hidden)
{
$pretty_date = HTMLHelper::_('date', $time_created, Text::_('DATE_FORMAT_LC2'), true);
$html[] = "<div>" . $pretty_date . "</div>";
}
return implode($html);
}
}

View File

@ -0,0 +1,69 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Form\FormField;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Date\Date;
use Joomla\CMS\HTML\HTMLHelper;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class TimeupdatedField extends FormField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'timeupdated';
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function getInput()
{
// Initialize variables.
$html = array();
$old_time_updated = $this->value;
$hidden = (boolean) $this->element['hidden'];
if ($hidden == null || !$hidden)
{
if (!strtotime($old_time_updated))
{
$html[] = '-';
}
else
{
$pretty_date = HTMLHelper::_('date', $old_time_updated, Text::_('DATE_FORMAT_LC2'), true);
$html[] = "<div>" . $pretty_date . "</div>";
}
}
$time_updated = Factory::getDate('now', Factory::getConfig()->get('offset'))->toSql(true);
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $time_updated . '" />';
return implode($html);
}
}

View File

@ -0,0 +1 @@
<html><body></body></html>

View File

@ -0,0 +1,77 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Helper;
// No direct access
defined('_JEXEC') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Object\CMSObject;
/**
* Circolari helper.
*
* @since 1.0.0
*/
class CircolariHelper
{
/**
* Gets the files attached to an item
*
* @param int $pk The item's id
*
* @param string $table The table's name
*
* @param string $field The field's name
*
* @return array The files
*/
public static function getFiles($pk, $table, $field)
{
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->getQuery(true);
$query
->select($field)
->from($table)
->where('id = ' . (int) $pk);
$db->setQuery($query);
return explode(',', $db->loadResult());
}
/**
* Gets a list of the actions that can be performed.
*
* @return CMSObject
*
* @since 1.0.0
*/
public static function getActions()
{
$user = Factory::getApplication()->getIdentity();
$result = new CMSObject;
$assetName = 'com_circolari';
$actions = array(
'core.admin', 'core.manage', 'core.create', 'core.edit', 'core.edit.own', 'core.edit.state', 'core.delete'
);
foreach ($actions as $action)
{
$result->set($action, $user->authorise($action, $assetName));
}
return $result;
}
}

View File

@ -0,0 +1,277 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Model;
// No direct access.
defined('_JEXEC') or die;
use \Joomla\CMS\Table\Table;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Plugin\PluginHelper;
use \Joomla\CMS\MVC\Model\AdminModel;
use \Joomla\CMS\Helper\TagsHelper;
use \Joomla\CMS\Filter\OutputFilter;
use \Joomla\CMS\Event\Model;
use Joomla\CMS\Event\AbstractEvent;
/**
* Circolare model.
*
* @since 1.0.0
*/
class CircolareModel extends AdminModel
{
/**
* @var string The prefix to use with controller messages.
*
* @since 1.0.0
*/
protected $text_prefix = 'COM_CIRCOLARI';
/**
* @var string Alias to manage history control
*
* @since 1.0.0
*/
public $typeAlias = 'com_circolari.circolare';
/**
* @var null Item data
*
* @since 1.0.0
*/
protected $item = null;
/**
* Returns a reference to the a Table object, always creating it.
*
* @param string $type The table type to instantiate
* @param string $prefix A prefix for the table class name. Optional.
* @param array $config Configuration array for model. Optional.
*
* @return Table A database object
*
* @since 1.0.0
*/
public function getTable($type = 'Circolare', $prefix = 'Administrator', $config = array())
{
return parent::getTable($type, $prefix, $config);
}
/**
* Method to get the record form.
*
* @param array $data An optional array of data for the form to interogate.
* @param boolean $loadData True if the form is to load its own data (default case), false if not.
*
* @return \JForm|boolean A \JForm object on success, false on failure
*
* @since 1.0.0
*/
public function getForm($data = array(), $loadData = true)
{
// Initialise variables.
$app = Factory::getApplication();
// Get the form.
$form = $this->loadForm(
'com_circolari.circolare',
'circolare',
array(
'control' => 'jform',
'load_data' => $loadData
)
);
if (empty($form))
{
return false;
}
return $form;
}
/**
* Method to get the data that should be injected in the form.
*
* @return mixed The data for the form.
*
* @since 1.0.0
*/
protected function loadFormData()
{
// Check the session for previously entered form data.
$data = Factory::getApplication()->getUserState('com_circolari.edit.circolare.data', array());
if (empty($data))
{
if ($this->item === null)
{
$this->item = $this->getItem();
}
$data = $this->item;
}
return $data;
}
/**
* Method to get a single record.
*
* @param integer $pk The id of the primary key.
*
* @return mixed Object on success, false on failure.
*
* @since 1.0.0
*/
public function getItem($pk = null)
{
if ($item = parent::getItem($pk))
{
if (isset($item->params))
{
$item->params = json_encode($item->params);
}
// Do any procesing on fields here if needed
}
return $item;
}
/**
* Method to duplicate an Circolare
*
* @param array &$pks An array of primary key IDs.
*
* @return boolean True if successful.
*
* @throws Exception
*/
public function duplicate(&$pks)
{
$app = Factory::getApplication();
$user = $app->getIdentity();
$dispatcher = $this->getDispatcher();
// Access checks.
if (!$user->authorise('core.create', 'com_circolari'))
{
throw new \Exception(Text::_('JERROR_CORE_CREATE_NOT_PERMITTED'));
}
$context = $this->option . '.' . $this->name;
// Include the plugins for the save events.
PluginHelper::importPlugin($this->events_map['save']);
$table = $this->getTable();
foreach ($pks as $pk)
{
if ($table->load($pk, true))
{
// Reset the id to create a new record.
$table->id = 0;
if (!$table->check())
{
throw new \Exception($table->getError());
}
// Create the before save event.
$beforeSaveEvent = AbstractEvent::create(
$this->event_before_save,
[
'context' => $context,
'subject' => $table,
'isNew' => true,
'data' => $table,
]
);
// Trigger the before save event.
$dispatchResult = Factory::getApplication()->getDispatcher()->dispatch($this->event_before_save, $beforeSaveEvent);
// Check if dispatch result is an array and handle accordingly
$result = isset($dispatchResult['result']) ? $dispatchResult['result'] : [];
// Proceed with your logic
if (in_array(false, $result, true) || !$table->store()) {
throw new \Exception($table->getError());
}
// Trigger the after save event.
Factory::getApplication()->getDispatcher()->dispatch(
$this->event_after_save,
AbstractEvent::create(
$this->event_after_save,
[
'context' => $context,
'subject' => $table,
'isNew' => true,
'data' => $table,
]
)
);
}
else
{
throw new \Exception($table->getError());
}
}
// Clean cache
$this->cleanCache();
return true;
}
/**
* Prepare and sanitise the table prior to saving.
*
* @param Table $table Table Object
*
* @return void
*
* @since 1.0.0
*/
protected function prepareTable($table)
{
jimport('joomla.filter.output');
if (empty($table->id))
{
// Set ordering to the last item if not set
if (@$table->ordering === '')
{
$db = $this->getDbo();
$db->setQuery('SELECT MAX(ordering) FROM #__circolari');
$max = $db->loadResult();
$table->ordering = $max + 1;
}
}
}
}

View File

@ -0,0 +1,208 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Model;
// No direct access.
defined('_JEXEC') or die;
use \Joomla\CMS\MVC\Model\ListModel;
use \Joomla\Component\Fields\Administrator\Helper\FieldsHelper;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Helper\TagsHelper;
use \Joomla\Database\ParameterType;
use \Joomla\Utilities\ArrayHelper;
use Pcrt\Component\Circolari\Administrator\Helper\CircolariHelper;
/**
* Methods supporting a list of Circolares records.
*
* @since 1.0.0
*/
class CircolaresModel extends ListModel
{
/**
* Constructor.
*
* @param array $config An optional associative array of configuration settings.
*
* @see JController
* @since 1.6
*/
public function __construct($config = array())
{
if (empty($config['filter_fields']))
{
$config['filter_fields'] = array(
'id', 'a.id',
'state', 'a.state',
'ordering', 'a.ordering',
'created_by', 'a.created_by',
'modified_by', 'a.modified_by',
'title', 'a.title',
'description', 'a.description',
'attachment', 'a.attachment',
'image', 'a.image',
);
}
parent::__construct($config);
}
/**
* Method to auto-populate the model state.
*
* Note. Calling getState in this method will result in recursion.
*
* @param string $ordering Elements order
* @param string $direction Order direction
*
* @return void
*
* @throws Exception
*/
protected function populateState($ordering = null, $direction = null)
{
// List state information.
parent::populateState('id', 'ASC');
$context = $this->getUserStateFromRequest($this->context.'.filter.search', 'filter_search');
$this->setState('filter.search', $context);
// Split context into component and optional section
if (!empty($context))
{
$parts = FieldsHelper::extract($context);
if ($parts)
{
$this->setState('filter.component', $parts[0]);
$this->setState('filter.section', $parts[1]);
}
}
}
/**
* Method to get a store id based on model configuration state.
*
* This is necessary because the model is used by the component and
* different modules that might need different sets of data or different
* ordering requirements.
*
* @param string $id A prefix for the store id.
*
* @return string A store id.
*
* @since 1.0.0
*/
protected function getStoreId($id = '')
{
// Compile the store id.
$id .= ':' . $this->getState('filter.search');
$id .= ':' . $this->getState('filter.state');
return parent::getStoreId($id);
}
/**
* Build an SQL query to load the list data.
*
* @return DatabaseQuery
*
* @since 1.0.0
*/
protected function getListQuery()
{
// Create a new query object.
$db = $this->getDbo();
$query = $db->getQuery(true);
// Select the required fields from the table.
$query->select(
$this->getState(
'list.select', 'DISTINCT a.*'
)
);
$query->from('`#__circolari` AS a');
// Join over the users for the checked out user
$query->select("uc.name AS uEditor");
$query->join("LEFT", "#__users AS uc ON uc.id=a.checked_out");
// Join over the user field 'created_by'
$query->select('`created_by`.name AS `created_by`');
$query->join('LEFT', '#__users AS `created_by` ON `created_by`.id = a.`created_by`');
// Join over the user field 'modified_by'
$query->select('`modified_by`.name AS `modified_by`');
$query->join('LEFT', '#__users AS `modified_by` ON `modified_by`.id = a.`modified_by`');
// Filter by published state
$published = $this->getState('filter.state');
if (is_numeric($published))
{
$query->where('a.state = ' . (int) $published);
}
elseif (empty($published))
{
$query->where('(a.state IN (0, 1))');
}
// Filter by search in title
$search = $this->getState('filter.search');
if (!empty($search))
{
if (stripos($search, 'id:') === 0)
{
$query->where('a.id = ' . (int) substr($search, 3));
}
else
{
$search = $db->Quote('%' . $db->escape($search, true) . '%');
}
}
// Add the list ordering clause.
$orderCol = $this->state->get('list.ordering', 'id');
$orderDirn = $this->state->get('list.direction', 'ASC');
if ($orderCol && $orderDirn)
{
$query->order($db->escape($orderCol . ' ' . $orderDirn));
}
return $query;
}
/**
* Get an array of data items
*
* @return mixed Array of data items on success, false on failure.
*/
public function getItems()
{
$items = parent::getItems();
return $items;
}
}

View File

@ -0,0 +1,277 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Eddy Prosperi <eddy.prosperi@protocollicreativi.it>
* @copyright 2024 Eddy Prosperi
* @license GNU General Public License versione 2 o successiva; vedi LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Model;
// No direct access.
defined('_JEXEC') or die;
use \Joomla\CMS\Table\Table;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Plugin\PluginHelper;
use \Joomla\CMS\MVC\Model\AdminModel;
use \Joomla\CMS\Helper\TagsHelper;
use \Joomla\CMS\Filter\OutputFilter;
use \Joomla\CMS\Event\Model;
use Joomla\CMS\Event\AbstractEvent;
/**
* Etichetta model.
*
* @since 1.0.0
*/
class FirmatipoModel extends AdminModel
{
/**
* @var string The prefix to use with controller messages.
*
* @since 1.0.0
*/
protected $text_prefix = 'COM_CIRCOLARI';
/**
* @var string Alias to manage history control
*
* @since 1.0.0
*/
public $typeAlias = 'com_circolari.firmaTipo';
/**
* @var null Item data
*
* @since 1.0.0
*/
protected $item = null;
/**
* Returns a reference to the a Table object, always creating it.
*
* @param string $type The table type to instantiate
* @param string $prefix A prefix for the table class FirmatipoModel. Optional.
* @param array $config Configuration array for model. Optional.
*
* @return Table A database object
*
* @since 1.0.0
*/
public function getTable($type = 'Firmatipo', $prefix = 'Administrator', $config = array())
{
return parent::getTable($type, $prefix, $config);
}
/**
* Method to get the record form.
*
* @param array $data An optional array of data for the form to interogate.
* @param boolean $loadData True if the form is to load its own data (default case), false if not.
*
* @return \JForm|boolean A \JForm object on success, false on failure
*
* @since 1.0.0
*/
public function getForm($data = array(), $loadData = true)
{
// Initialise variables.
$app = Factory::getApplication();
// Get the form.
$form = $this->loadForm(
'com_circolari.firmaTipo',
'firmaTipo',
array(
'control' => 'jform',
'load_data' => $loadData
)
);
if (empty($form))
{
return false;
}
return $form;
}
/**
* Method to get the data that should be injected in the form.
*
* @return mixed The data for the form.
*
* @since 1.0.0
*/
protected function loadFormData()
{
// Check the session for previously entered form data.
$data = Factory::getApplication()->getUserState('com_circolari.edit.firmatipo.data', array());
if (empty($data))
{
if ($this->item === null)
{
$this->item = $this->getItem();
}
$data = $this->item;
}
return $data;
}
/**
* Method to get a single record.
*
* @param integer $pk The id of the primary key.
*
* @return mixed Object on success, false on failure.
*
* @since 1.0.0
*/
public function getItem($pk = null)
{
if ($item = parent::getItem($pk))
{
if (isset($item->params))
{
$item->params = json_encode($item->params);
}
// Do any procesing on fields here if needed
}
return $item;
}
/**
* Method to duplicate an Etichetta
*
* @param array &$pks An array of primary key IDs.
*
* @return boolean True if successful.
*
* @throws Exception
*/
public function duplicate(&$pks)
{
$app = Factory::getApplication();
$user = $app->getIdentity();
$dispatcher = $this->getDispatcher();
// Access checks.
if (!$user->authorise('core.create', 'com_circolari'))
{
throw new \Exception(Text::_('JERROR_CORE_CREATE_NOT_PERMITTED'));
}
$context = $this->option . '.' . $this->name;
// Include the plugins for the save events.
PluginHelper::importPlugin($this->events_map['save']);
$table = $this->getTable();
foreach ($pks as $pk)
{
if ($table->load($pk, true))
{
// Reset the id to create a new record.
$table->id = 0;
if (!$table->check())
{
throw new \Exception($table->getError());
}
// Create the before save event.
$beforeSaveEvent = AbstractEvent::create(
$this->event_before_save,
[
'context' => $context,
'subject' => $table,
'isNew' => true,
'data' => $table,
]
);
// Trigger the before save event.
$dispatchResult = Factory::getApplication()->getDispatcher()->dispatch($this->event_before_save, $beforeSaveEvent);
// Check if dispatch result is an array and handle accordingly
$result = isset($dispatchResult['result']) ? $dispatchResult['result'] : [];
// Proceed with your logic
if (in_array(false, $result, true) || !$table->store()) {
throw new \Exception($table->getError());
}
// Trigger the after save event.
Factory::getApplication()->getDispatcher()->dispatch(
$this->event_after_save,
AbstractEvent::create(
$this->event_after_save,
[
'context' => $context,
'subject' => $table,
'isNew' => true,
'data' => $table,
]
)
);
}
else
{
throw new \Exception($table->getError());
}
}
// Clean cache
$this->cleanCache();
return true;
}
/**
* Prepare and sanitise the table prior to saving.
*
* @param Table $table Table Object
*
* @return void
*
* @since 1.0.0
*/
protected function prepareTable($table)
{
jimport('joomla.filter.output');
if (empty($table->id))
{
// Set ordering to the last item if not set
if (@$table->ordering === '')
{
$db = $this->getDbo();
$db->setQuery('SELECT MAX(ordering) FROM #__circolari_firmetipi');
$max = $db->loadResult();
$table->ordering = $max + 1;
}
}
}
}

View File

@ -0,0 +1,195 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Eddy Prosperi <eddy.prosperi@protocollicreativi.it>
* @copyright 2024 Eddy Prosperi
* @license GNU General Public License versione 2 o successiva; vedi LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Model;
// No direct access.
defined('_JEXEC') or die;
use \Joomla\CMS\MVC\Model\ListModel;
use \Joomla\Component\Fields\Administrator\Helper\FieldsHelper;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Helper\TagsHelper;
use \Joomla\Database\ParameterType;
use \Joomla\Utilities\ArrayHelper;
/**
* Methods supporting a list of Etichette records.
*
* @since 1.0.0
*/
class FirmetipiModel extends ListModel
{
/**
* Constructor.
*
* @param array $config An optional associative array of configuration settings.
*
* @see JController
* @since 1.6
*/
public function __construct($config = array())
{
if (empty($config['filter_fields']))
{
$config['filter_fields'] = array(
'id', 'a.id',
'state', 'a.state',
'ordering', 'a.ordering',
'created_by', 'a.created_by',
'modified_by', 'a.modified_by',
'nome', 'a.nome',
'lingua', 'a.lingua',
);
}
parent::__construct($config);
}
/**
* Method to auto-populate the model state.
*
* Note. Calling getState in this method will result in recursion.
*
* @param string $ordering Elements order
* @param string $direction Order direction
*
* @return void
*
* @throws Exception
*/
protected function populateState($ordering = null, $direction = null)
{
// List state information.
parent::populateState("a.id", "ASC");
$context = $this->getUserStateFromRequest($this->context.'.filter.search', 'filter_search');
$this->setState('filter.search', $context);
// Split context into component and optional section
if (!empty($context))
{
$parts = FieldsHelper::extract($context);
if ($parts)
{
$this->setState('filter.component', $parts[0]);
$this->setState('filter.section', $parts[1]);
}
}
}
/**
* Method to get a store id based on model configuration state.
*
* This is necessary because the model is used by the component and
* different modules that might need different sets of data or different
* ordering requirements.
*
* @param string $id A prefix for the store id.
*
* @return string A store id.
*
* @since 1.0.0
*/
protected function getStoreId($id = '')
{
// Compile the store id.
$id .= ':' . $this->getState('filter.search');
$id .= ':' . $this->getState('filter.state');
return parent::getStoreId($id);
}
/**
* Build an SQL query to load the list data.
*
* @return DatabaseQuery
*
* @since 1.0.0
*/
protected function getListQuery()
{
// Create a new query object.
$db = $this->getDbo();
$query = $db->getQuery(true);
// Select the required fields from the table.
$query->select(
$this->getState(
'list.select', 'DISTINCT a.*'
)
);
$query->from('`#__circolari_firmetipi` AS a');
// Filter by published state
$published = $this->getState('filter.state');
if (is_numeric($published))
{
$query->where('a.state = ' . (int) $published);
}
elseif (empty($published))
{
$query->where('(a.state IN (0, 1))');
}
// Filter by search in title
$search = $this->getState('filter.search');
if (!empty($search))
{
if (stripos($search, 'id:') === 0)
{
$query->where('a.id = ' . (int) substr($search, 3));
}
else
{
$search = $db->Quote('%' . $db->escape($search, true) . '%');
}
}
// Add the list ordering clause.
$orderCol = $this->state->get('list.ordering', "a.id");
$orderDirn = $this->state->get('list.direction', "ASC");
if ($orderCol && $orderDirn)
{
$query->order($db->escape($orderCol . ' ' . $orderDirn));
}
return $query;
}
/**
* Get an array of data items
*
* @return mixed Array of data items on success, false on failure.
*/
public function getItems()
{
$items = parent::getItems();
return $items;
}
}

View File

@ -0,0 +1,53 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Service\Html;
// No direct access
defined('_JEXEC') or die;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\Model\DatabaseAwareTrait;
use Joomla\Database\DatabaseDriver;
/**
* Circolari HTML Helper.
*
* @since 1.0.0
*/
class CIRCOLARI
{
use DatabaseAwareTrait;
/**
* Public constructor.
*
* @param DatabaseDriver $db The Joomla DB driver object for the site's database.
*/
public function __construct(DatabaseDriver $db)
{
$this->setDbo($db);
}
public function toggle($value = 0, $view='', $field='', $i='')
{
$states = array(
0 => array('icon-unpublish', Text::_('Toggle'), ''),
1 => array('icon-publish', Text::_('Toggle'), '')
);
$state = ArrayHelper::getValue($states, (int) $value, $states[0]);
$text = '<span aria-hidden="true" class="' . $state[0] . '"></span>';
$html = '<a href="javascript:void(0);" class="tbody-icon ' . $state[2] . '"';
$html .= 'onclick="return Joomla.toggleField(\'cb'.$i.'\',\'' . $view . '.toggle\',\'' . $field . '\')" title="' . Text::_($state[1]) . '">' . $text . '</a>';
return $html;
}
}

View File

@ -0,0 +1,279 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Table;
// No direct access
defined('_JEXEC') or die;
use \Joomla\Utilities\ArrayHelper;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Access\Access;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Table\Table as Table;
use \Joomla\CMS\Versioning\VersionableTableInterface;
use Joomla\CMS\Tag\TaggableTableInterface;
use Joomla\CMS\Tag\TaggableTableTrait;
use \Joomla\Database\DatabaseDriver;
use \Joomla\CMS\Filter\OutputFilter;
use \Joomla\CMS\Filesystem\File;
use \Joomla\Registry\Registry;
use \Pcrt\Component\Circolari\Administrator\Helper\CircolariHelper;
use \Joomla\CMS\Helper\ContentHelper;
/**
* Circolare table
*
* @since 1.0.0
*/
class CircolareTable extends Table implements VersionableTableInterface, TaggableTableInterface
{
use TaggableTableTrait;
/**
* Indicates that columns fully support the NULL value in the database
*
* @var boolean
* @since 4.0.0
*/
protected $_supportNullValue = true;
/**
* Constructor
*
* @param JDatabase &$db A database connector object
*/
public function __construct(DatabaseDriver $db)
{
$this->typeAlias = 'com_circolari.circolare';
parent::__construct('#__circolari', 'id', $db);
$this->setColumnAlias('published', 'state');
}
/**
* Get the type alias for the history table
*
* @return string The alias as described above
*
* @since 1.0.0
*/
public function getTypeAlias()
{
return $this->typeAlias;
}
/**
* Overloaded bind function to pre-process the params.
*
* @param array $array Named array
* @param mixed $ignore Optional array or list of parameters to ignore
*
* @return boolean True on success.
*
* @see Table:bind
* @since 1.0.0
* @throws \InvalidArgumentException
*/
public function bind($array, $ignore = '')
{
$date = Factory::getDate();
$task = Factory::getApplication()->input->get('task');
$user = Factory::getApplication()->getIdentity();
$input = Factory::getApplication()->input;
$task = $input->getString('task', '');
if ($array['id'] == 0 && empty($array['created_by']))
{
$array['created_by'] = Factory::getUser()->id;
}
if ($array['id'] == 0 && empty($array['modified_by']))
{
$array['modified_by'] = Factory::getUser()->id;
}
if ($task == 'apply' || $task == 'save')
{
$array['modified_by'] = Factory::getUser()->id;
}
if (isset($array['params']) && is_array($array['params']))
{
$registry = new Registry;
$registry->loadArray($array['params']);
$array['params'] = (string) $registry;
}
if (isset($array['metadata']) && is_array($array['metadata']))
{
$registry = new Registry;
$registry->loadArray($array['metadata']);
$array['metadata'] = (string) $registry;
}
if (!$user->authorise('core.admin', 'com_circolari.circolare.' . $array['id']))
{
$actions = Access::getActionsFromFile(
JPATH_ADMINISTRATOR . '/components/com_circolari/access.xml',
"/access/section[@name='circolare']/"
);
$default_actions = Access::getAssetRules('com_circolari.circolare.' . $array['id'])->getData();
$array_jaccess = array();
foreach ($actions as $action)
{
if (key_exists($action->name, $default_actions))
{
$array_jaccess[$action->name] = $default_actions[$action->name];
}
}
$array['rules'] = $this->JAccessRulestoArray($array_jaccess);
}
// Bind the rules for ACL where supported.
if (isset($array['rules']) && is_array($array['rules']))
{
$this->setRules($array['rules']);
}
return parent::bind($array, $ignore);
}
/**
* Method to store a row in the database from the Table instance properties.
*
* If a primary key value is set the row with that primary key value will be updated with the instance property values.
* If no primary key value is set a new row will be inserted into the database with the properties from the Table instance.
*
* @param boolean $updateNulls True to update fields even if they are null.
*
* @return boolean True on success.
*
* @since 1.0.0
*/
public function store($updateNulls = true)
{
return parent::store($updateNulls);
}
/**
* This function convert an array of Access objects into an rules array.
*
* @param array $jaccessrules An array of Access objects.
*
* @return array
*/
private function JAccessRulestoArray($jaccessrules)
{
$rules = array();
foreach ($jaccessrules as $action => $jaccess)
{
$actions = array();
if ($jaccess)
{
foreach ($jaccess->getData() as $group => $allow)
{
$actions[$group] = ((bool)$allow);
}
}
$rules[$action] = $actions;
}
return $rules;
}
/**
* Overloaded check function
*
* @return bool
*/
public function check()
{
// If there is an ordering column and this is a new row then get the next ordering value
if (property_exists($this, 'ordering') && $this->id == 0)
{
$this->ordering = self::getNextOrder();
}
return parent::check();
}
/**
* Define a namespaced asset name for inclusion in the #__assets table
*
* @return string The asset name
*
* @see Table::_getAssetName
*/
protected function _getAssetName()
{
$k = $this->_tbl_key;
return $this->typeAlias . '.' . (int) $this->$k;
}
/**
* Returns the parent asset's id. If you have a tree structure, retrieve the parent's id using the external key field
*
* @param Table $table Table name
* @param integer $id Id
*
* @see Table::_getAssetParentId
*
* @return mixed The id on success, false on failure.
*/
protected function _getAssetParentId($table = null, $id = null)
{
// We will retrieve the parent-asset from the Asset-table
$assetParent = Table::getInstance('Asset');
// Default: if no asset-parent can be found we take the global asset
$assetParentId = $assetParent->getRootId();
// The item has the component as asset-parent
$assetParent->loadByName('com_circolari');
// Return the found asset-parent-id
if ($assetParent->id)
{
$assetParentId = $assetParent->id;
}
return $assetParentId;
}
//XXX_CUSTOM_TABLE_FUNCTION
/**
* Delete a record by id
*
* @param mixed $pk Primary key value to delete. Optional
*
* @return bool
*/
public function delete($pk = null)
{
$this->load($pk);
$result = parent::delete($pk);
return $result;
}
}

View File

@ -0,0 +1,279 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Eddy Prosperi <eddy.prosperi@protocollicreativi.it>
* @copyright 2024 Eddy Prosperi
* @license GNU General Public License versione 2 o successiva; vedi LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\Table;
// No direct access
defined('_JEXEC') or die;
use \Joomla\Utilities\ArrayHelper;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Access\Access;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Table\Table as Table;
use \Joomla\CMS\Versioning\VersionableTableInterface;
use Joomla\CMS\Tag\TaggableTableInterface;
use Joomla\CMS\Tag\TaggableTableTrait;
use \Joomla\Database\DatabaseDriver;
use \Joomla\CMS\Filter\OutputFilter;
use \Joomla\CMS\Filesystem\File;
use \Joomla\Registry\Registry;
use \Pcrt\Component\Circolari\Administrator\Helper\CircolariHelper;
use \Joomla\CMS\Helper\ContentHelper;
/**
* Etichetta table
*
* @since 1.0.0
*/
class FirmatipoTable extends Table implements VersionableTableInterface, TaggableTableInterface
{
use TaggableTableTrait;
/**
* Indicates that columns fully support the NULL value in the database
*
* @var boolean
* @since 4.0.0
*/
protected $_supportNullValue = true;
/**
* Constructor
*
* @param JDatabase &$db A database connector object
*/
public function __construct(DatabaseDriver $db)
{
$this->typeAlias = 'com_circolari.firmaTipo';
parent::__construct('#__circolari_firmetipi', 'id', $db);
$this->setColumnAlias('published', 'state');
}
/**
* Get the type alias for the history table
*
* @return string The alias as described above
*
* @since 1.0.0
*/
public function getTypeAlias()
{
return $this->typeAlias;
}
/**
* Overloaded bind function to pre-process the params.
*
* @param array $array Named array
* @param mixed $ignore Optional array or list of parameters to ignore
*
* @return boolean True on success.
*
* @see Table:bind
* @since 1.0.0
* @throws \InvalidArgumentException
*/
public function bind($array, $ignore = '')
{
$date = Factory::getDate();
$task = Factory::getApplication()->input->get('task');
$user = Factory::getApplication()->getIdentity();
$input = Factory::getApplication()->input;
$task = $input->getString('task', '');
if ($array['id'] == 0 && empty($array['created_by']))
{
$array['created_by'] = Factory::getUser()->id;
}
if ($array['id'] == 0 && empty($array['modified_by']))
{
$array['modified_by'] = Factory::getUser()->id;
}
if ($task == 'apply' || $task == 'save')
{
$array['modified_by'] = Factory::getUser()->id;
}
if (isset($array['params']) && is_array($array['params']))
{
$registry = new Registry;
$registry->loadArray($array['params']);
$array['params'] = (string) $registry;
}
if (isset($array['metadata']) && is_array($array['metadata']))
{
$registry = new Registry;
$registry->loadArray($array['metadata']);
$array['metadata'] = (string) $registry;
}
if (!$user->authorise('core.admin', 'com_circolari.firmaTipo.' . $array['id']))
{
$actions = Access::getActionsFromFile(
JPATH_ADMINISTRATOR . '/components/com_circolari/access.xml',
"/access/section[@name='firmaTipo']/"
);
$default_actions = Access::getAssetRules('com_circolari.firmaTipo.' . $array['id'])->getData();
$array_jaccess = array();
foreach ($actions as $action)
{
if (key_exists($action->name, $default_actions))
{
$array_jaccess[$action->name] = $default_actions[$action->name];
}
}
$array['rules'] = $this->JAccessRulestoArray($array_jaccess);
}
// Bind the rules for ACL where supported.
if (isset($array['rules']) && is_array($array['rules']))
{
$this->setRules($array['rules']);
}
return parent::bind($array, $ignore);
}
/**
* Method to store a row in the database from the Table instance properties.
*
* If a primary key value is set the row with that primary key value will be updated with the instance property values.
* If no primary key value is set a new row will be inserted into the database with the properties from the Table instance.
*
* @param boolean $updateNulls True to update fields even if they are null.
*
* @return boolean True on success.
*
* @since 1.0.0
*/
public function store($updateNulls = true)
{
return parent::store($updateNulls);
}
/**
* This function convert an array of Access objects into an rules array.
*
* @param array $jaccessrules An array of Access objects.
*
* @return array
*/
private function JAccessRulestoArray($jaccessrules)
{
$rules = array();
foreach ($jaccessrules as $action => $jaccess)
{
$actions = array();
if ($jaccess)
{
foreach ($jaccess->getData() as $group => $allow)
{
$actions[$group] = ((bool)$allow);
}
}
$rules[$action] = $actions;
}
return $rules;
}
/**
* Overloaded check function
*
* @return bool
*/
public function check()
{
// If there is an ordering column and this is a new row then get the next ordering value
if (property_exists($this, 'ordering') && $this->id == 0)
{
$this->ordering = self::getNextOrder();
}
return parent::check();
}
/**
* Define a namespaced asset name for inclusion in the #__assets table
*
* @return string The asset name
*
* @see Table::_getAssetName
*/
protected function _getAssetName()
{
$k = $this->_tbl_key;
return $this->typeAlias . '.' . (int) $this->$k;
}
/**
* Returns the parent asset's id. If you have a tree structure, retrieve the parent's id using the external key field
*
* @param Table $table Table name
* @param integer $id Id
*
* @see Table::_getAssetParentId
*
* @return mixed The id on success, false on failure.
*/
protected function _getAssetParentId($table = null, $id = null)
{
// We will retrieve the parent-asset from the Asset-table
$assetParent = Table::getInstance('Asset');
// Default: if no asset-parent can be found we take the global asset
$assetParentId = $assetParent->getRootId();
// The item has the component as asset-parent
$assetParent->loadByName('com_circolari');
// Return the found asset-parent-id
if ($assetParent->id)
{
$assetParentId = $assetParent->id;
}
return $assetParentId;
}
//XXX_CUSTOM_TABLE_FUNCTION
/**
* Delete a record by id
*
* @param mixed $pk Primary key value to delete. Optional
*
* @return bool
*/
public function delete($pk = null)
{
$this->load($pk);
$result = parent::delete($pk);
return $result;
}
}

View File

@ -0,0 +1,114 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\View\Circolare;
// No direct access
defined('_JEXEC') or die;
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
use \Joomla\CMS\Toolbar\ToolbarHelper;
use \Joomla\CMS\Factory;
use \Pcrt\Component\Circolari\Administrator\Helper\CircolariHelper;
use \Joomla\CMS\Language\Text;
/**
* View class for a single Circolare.
*
* @since 1.0.0
*/
class HtmlView extends BaseHtmlView
{
protected $state;
protected $item;
protected $form;
/**
* Display the view
*
* @param string $tpl Template name
*
* @return void
*
* @throws Exception
*/
public function display($tpl = null)
{
$this->state = $this->get('State');
$this->item = $this->get('Item');
$this->form = $this->get('Form');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
throw new \Exception(implode("\n", $errors));
}
$this->addToolbar();
parent::display($tpl);
}
/**
* Add the page title and toolbar.
*
* @return void
*
* @throws Exception
*/
protected function addToolbar()
{
Factory::getApplication()->input->set('hidemainmenu', true);
$user = Factory::getApplication()->getIdentity();
$isNew = ($this->item->id == 0);
if (isset($this->item->checked_out))
{
$checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $user->get('id'));
}
else
{
$checkedOut = false;
}
$canDo = CircolariHelper::getActions();
ToolbarHelper::title(Text::_('COM_CIRCOLARI_TITLE_CIRCOLARE'), "generic");
// If not checked out, can save the item.
if (!$checkedOut && ($canDo->get('core.edit') || ($canDo->get('core.create'))))
{
ToolbarHelper::apply('circolare.apply', 'JTOOLBAR_APPLY');
ToolbarHelper::save('circolare.save', 'JTOOLBAR_SAVE');
}
if (!$checkedOut && ($canDo->get('core.create')))
{
ToolbarHelper::custom('circolare.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
}
// If an existing item, can save to a copy.
if (!$isNew && $canDo->get('core.create'))
{
ToolbarHelper::custom('circolare.save2copy', 'save-copy.png', 'save-copy_f2.png', 'JTOOLBAR_SAVE_AS_COPY', false);
}
if (empty($this->item->id))
{
ToolbarHelper::cancel('circolare.cancel', 'JTOOLBAR_CANCEL');
}
else
{
ToolbarHelper::cancel('circolare.cancel', 'JTOOLBAR_CLOSE');
}
}
}

View File

@ -0,0 +1,183 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\View\Circolares;
// No direct access
defined('_JEXEC') or die;
use \Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
use \Pcrt\Component\Circolari\Administrator\Helper\CircolariHelper;
use \Joomla\CMS\Toolbar\Toolbar;
use \Joomla\CMS\Toolbar\ToolbarHelper;
use \Joomla\CMS\Language\Text;
use \Joomla\Component\Content\Administrator\Extension\ContentComponent;
use \Joomla\CMS\Form\Form;
use \Joomla\CMS\HTML\Helpers\Sidebar;
/**
* View class for a list of Circolares.
*
* @since 1.0.0
*/
class HtmlView extends BaseHtmlView
{
protected $items;
protected $pagination;
protected $state;
/**
* Display the view
*
* @param string $tpl Template name
*
* @return void
*
* @throws Exception
*/
public function display($tpl = null)
{
$this->state = $this->get('State');
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
$this->filterForm = $this->get('FilterForm');
$this->activeFilters = $this->get('ActiveFilters');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
throw new \Exception(implode("\n", $errors));
}
$this->addToolbar();
$this->sidebar = Sidebar::render();
parent::display($tpl);
}
/**
* Add the page title and toolbar.
*
* @return void
*
* @since 1.0.0
*/
protected function addToolbar()
{
$state = $this->get('State');
$canDo = CircolariHelper::getActions();
ToolbarHelper::title(Text::_('COM_CIRCOLARI_TITLE_CIRCOLARES'), "generic");
$toolbar = Toolbar::getInstance('toolbar');
// Check if the form exists before showing the add/edit buttons
$formPath = JPATH_COMPONENT_ADMINISTRATOR . '/src/View/Circolares';
if (file_exists($formPath))
{
if ($canDo->get('core.create'))
{
$toolbar->addNew('circolare.add');
}
}
if ($canDo->get('core.edit.state'))
{
$dropdown = $toolbar->dropdownButton('status-group')
->text('JTOOLBAR_CHANGE_STATUS')
->toggleSplit(false)
->icon('fas fa-ellipsis-h')
->buttonClass('btn btn-action')
->listCheck(true);
$childBar = $dropdown->getChildToolbar();
if (isset($this->items[0]->state))
{
$childBar->publish('circolares.publish')->listCheck(true);
$childBar->unpublish('circolares.unpublish')->listCheck(true);
$childBar->archive('circolares.archive')->listCheck(true);
}
elseif (isset($this->items[0]))
{
// If this component does not use state then show a direct delete button as we can not trash
$toolbar->delete('circolares.delete')
->text('JTOOLBAR_EMPTY_TRASH')
->message('JGLOBAL_CONFIRM_DELETE')
->listCheck(true);
}
$childBar->standardButton('duplicate')
->text('JTOOLBAR_DUPLICATE')
->icon('fas fa-copy')
->task('circolares.duplicate')
->listCheck(true);
if (isset($this->items[0]->checked_out))
{
$childBar->checkin('circolares.checkin')->listCheck(true);
}
if (isset($this->items[0]->state))
{
$childBar->trash('circolares.trash')->listCheck(true);
}
}
// Show trash and delete for components that uses the state field
if (isset($this->items[0]->state))
{
if ($this->state->get('filter.state') == ContentComponent::CONDITION_TRASHED && $canDo->get('core.delete'))
{
$toolbar->delete('circolares.delete')
->text('JTOOLBAR_EMPTY_TRASH')
->message('JGLOBAL_CONFIRM_DELETE')
->listCheck(true);
}
}
if ($canDo->get('core.admin'))
{
$toolbar->preferences('com_circolari');
}
// Set sidebar action
Sidebar::setAction('index.php?option=com_circolari&view=circolares');
}
/**
* Method to order fields
*
* @return void
*/
protected function getSortFields()
{
return array(
'a.`id`' => Text::_('JGRID_HEADING_ID'),
'a.`state`' => Text::_('JSTATUS'),
'a.`ordering`' => Text::_('JGRID_HEADING_ORDERING'),
);
}
/**
* Check if state is set
*
* @param mixed $state State
*
* @return bool
*/
public function getState($state)
{
return isset($this->state->{$state}) ? $this->state->{$state} : false;
}
}

View File

@ -0,0 +1,114 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Eddy Prosperi <eddy.prosperi@protocollicreativi.it>
* @copyright 2024 Eddy Prosperi
* @license GNU General Public License versione 2 o successiva; vedi LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\View\Firmatipo;
// No direct access
defined('_JEXEC') or die;
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
use \Joomla\CMS\Toolbar\ToolbarHelper;
use \Joomla\CMS\Factory;
use \Pcrt\Component\Circolari\Administrator\Helper\CircolariHelper;
use \Joomla\CMS\Language\Text;
/**
* View class HtmlView a single Firmatipo.
*
* @since 1.0.0
*/
class HtmlView extends BaseHtmlView
{
protected $state;
protected $item;
protected $form;
/**
* Display the view
*
* @param string $tpl Template name
*
* @return void
*
* @throws Exception
*/
public function display($tpl = null)
{
$this->state = $this->get('State');
$this->item = $this->get('Item');
$this->form = $this->get('Form');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
throw new \Exception(implode("\n", $errors));
}
$this->addToolbar();
parent::display($tpl);
}
/**
* Add the page title and toolbar.
*
* @return void
*
* @throws Exception
*/
protected function addToolbar()
{
Factory::getApplication()->input->set('hidemainmenu', true);
$user = Factory::getApplication()->getIdentity();
$isNew = ($this->item->id == 0);
if (isset($this->item->checked_out))
{
$checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $user->get('id'));
}
else
{
$checkedOut = false;
}
$canDo = CircolariHelper::getActions();
ToolbarHelper::title(Text::_('Firma'), "generic");
// If not checked out, can save the item.
if (!$checkedOut && ($canDo->get('core.edit') || ($canDo->get('core.create'))))
{
ToolbarHelper::apply('firmatipo.apply', 'JTOOLBAR_APPLY');
ToolbarHelper::save('firmatipo.save', 'JTOOLBAR_SAVE');
}
if (!$checkedOut && ($canDo->get('core.create')))
{
ToolbarHelper::custom('firmatipo.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
}
// If an existing item, can save to a copy.
if (!$isNew && $canDo->get('core.create'))
{
ToolbarHelper::custom('firmatipo.save2copy', 'save-copy.png', 'save-copy_f2.png', 'JTOOLBAR_SAVE_AS_COPY', false);
}
if (empty($this->item->id))
{
ToolbarHelper::cancel('firmatipo.cancel', 'JTOOLBAR_CANCEL');
}
else
{
ToolbarHelper::cancel('firmatipo.cancel', 'JTOOLBAR_CLOSE');
}
}
}

View File

@ -0,0 +1,177 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Eddy Prosperi <eddy.prosperi@protocollicreativi.it>
* @copyright 2024 Eddy Prosperi
* @license GNU General Public License versione 2 o successiva; vedi LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Administrator\View\Firmetipi;
// No direct access
defined('_JEXEC') or die;
use \Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
use \Pcrt\Component\Circolari\Administrator\Helper\CircolariHelper;
use \Joomla\CMS\Toolbar\Toolbar;
use \Joomla\CMS\Toolbar\ToolbarHelper;
use \Joomla\CMS\Language\Text;
use \Joomla\Component\Content\Administrator\Extension\ContentComponent;
use \Joomla\CMS\Form\Form;
use \Joomla\CMS\HTML\Helpers\Sidebar;
/**
* View class HtmlView a list of Firmetipi.
*
* @since 1.0.0
*/
class HtmlView extends BaseHtmlView
{
protected $items;
protected $pagination;
protected $state;
/**
* Display the view
*
* @param string $tpl Template name
*
* @return void
*
* @throws Exception
*/
public function display($tpl = null)
{
$this->state = $this->get('State');
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
$this->filterForm = $this->get('FilterForm');
$this->activeFilters = $this->get('ActiveFilters');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
throw new \Exception(implode("\n", $errors));
}
$this->addToolbar();
$this->sidebar = Sidebar::render();
parent::display($tpl);
}
/**
* Add the page title and toolbar.
*
* @return void
*
* @since 1.0.0
*/
protected function addToolbar()
{
$state = $this->get('State');
$canDo = CircolariHelper::getActions();
ToolbarHelper::title(Text::_('Firme'), "generic");
$toolbar = Toolbar::getInstance('toolbar');
// Check if the form exists before showing the add/edit buttons
$formPath = JPATH_COMPONENT_ADMINISTRATOR . '/src/View/Firmetipi';
if (file_exists($formPath))
{
if ($canDo->get('core.create'))
{
$toolbar->addNew('firmatipo.add');
}
}
if ($canDo->get('core.edit.state'))
{
$dropdown = $toolbar->dropdownButton('status-group')
->text('JTOOLBAR_CHANGE_STATUS')
->toggleSplit(false)
->icon('fas fa-ellipsis-h')
->buttonClass('btn btn-action')
->listCheck(true);
$childBar = $dropdown->getChildToolbar();
if (isset($this->items[0]->state))
{
$childBar->publish('firmetipi.publish')->listCheck(true);
$childBar->unpublish('firmetipi.unpublish')->listCheck(true);
$childBar->archive('firmetipi.archive')->listCheck(true);
}
$childBar->standardButton('duplicate')
->text('JTOOLBAR_DUPLICATE')
->icon('fas fa-copy')
->task('firmetipi.duplicate')
->listCheck(true);
if (isset($this->items[0]->checked_out))
{
$childBar->checkin('firmetipi.checkin')->listCheck(true);
}
if (isset($this->items[0]->state))
{
$childBar->trash('firmetipi.trash')->listCheck(true);
}
}
// Show trash and delete for components that uses the state field
if (isset($this->items[0]->state))
{
if ($this->state->get('filter.state') == ContentComponent::CONDITION_TRASHED && $canDo->get('core.delete'))
{
$toolbar->delete('firmetipi.delete')
->text('JTOOLBAR_EMPTY_TRASH')
->message('JGLOBAL_CONFIRM_DELETE')
->listCheck(true);
}
}
if ($canDo->get('core.admin'))
{
$toolbar->preferences('com_circolari');
}
// Set sidebar action
Sidebar::setAction('index.php?option=com_circolari&view=firmetipi');
}
/**
* Method to order fields
*
* @return void
*/
protected function getSortFields()
{
return array(
'a.`id`' => Text::_('JGRID_HEADING_ID'),
'a.`state`' => Text::_('JSTATUS'),
'a.`ordering`' => Text::_('JGRID_HEADING_ORDERING'),
'a.`nome`' => Text::_('COM_HIGHLIGHTS_ETICHETTE_NOME'),
'a.`lingua`' => Text::_('COM_HIGHLIGHTS_ETICHETTE_LINGUA'),
);
}
/**
* Check if state is set
*
* @param mixed $state State
*
* @return bool
*/
public function getState($state)
{
return isset($this->state->{$state}) ? $this->state->{$state} : false;
}
}

View File

@ -0,0 +1,32 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Anand
* @author Super User <dev@component-creator.com>
* @copyright 2023 Super User
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access
defined('_JEXEC') or die;
use \Joomla\CMS\HTML\HTMLHelper;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Uri\Uri;
use \Joomla\CMS\Router\Route;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Session\Session;
use Joomla\Utilities\ArrayHelper;
?>
<div class="item_fields">
<table class="table">
</table>
</div>

View File

@ -0,0 +1,52 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access
defined('_JEXEC') or die;
use \Joomla\CMS\HTML\HTMLHelper;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Uri\Uri;
use \Joomla\CMS\Router\Route;
use \Joomla\CMS\Language\Text;
$wa = $this->document->getWebAssetManager();
$wa->useScript('keepalive')
->useScript('form.validate');
HTMLHelper::_('bootstrap.tooltip');
?>
<form
action="<?php echo Route::_('index.php?option=com_circolari&layout=edit&id=' . (int) $this->item->id); ?>"
method="post" enctype="multipart/form-data" name="adminForm" id="circolare-form" class="form-validate form-horizontal">
<?php echo HTMLHelper::_('uitab.startTabSet', 'myTab', array('active' => 'Circolari')); ?>
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'Circolari', Text::_('COM_CIRCOLARI_TAB_CIRCOLARI', true)); ?>
<div class="row-fluid">
<div class="col-md-12 form-horizontal">
<fieldset class="adminform">
<legend><?php echo Text::_('COM_CIRCOLARI_FIELDSET_CIRCOLARI'); ?></legend>
<?php echo $this->form->renderField('title'); ?>
<?php echo $this->form->renderField('description'); ?>
<?php echo $this->form->renderField('attachment'); ?>
<?php echo $this->form->renderField('image'); ?>
<?php echo $this->form->renderField('tipologia_firma'); ?>
</fieldset>
</div>
</div>
<?php echo HTMLHelper::_('uitab.endTab'); ?>
<input type="hidden" name="jform[id]" value="<?php echo isset($this->item->id) ? $this->item->id : ''; ?>" />
<input type="hidden" name="jform[state]" value="<?php echo isset($this->item->state) ? $this->item->state : ''; ?>" />
<?php echo $this->form->renderField('created_by'); ?>
<?php echo $this->form->renderField('modified_by'); ?>
<?php echo HTMLHelper::_('uitab.endTabSet'); ?>
<input type="hidden" name="task" value=""/>
<?php echo HTMLHelper::_('form.token'); ?>
</form>

View File

@ -0,0 +1,148 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access
defined('_JEXEC') or die;
use \Joomla\CMS\HTML\HTMLHelper;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Uri\Uri;
use \Joomla\CMS\Router\Route;
use \Joomla\CMS\Layout\LayoutHelper;
use \Joomla\CMS\Language\Text;
use Joomla\CMS\Session\Session;
HTMLHelper::_('bootstrap.tooltip');
HTMLHelper::_('behavior.multiselect');
// Import CSS
$wa = $this->document->getWebAssetManager();
$wa->useStyle('com_circolari.admin')
->useScript('com_circolari.admin');
$user = Factory::getApplication()->getIdentity();
$userId = $user->get('id');
$listOrder = $this->state->get('list.ordering');
$listDirn = $this->state->get('list.direction');
$canOrder = $user->authorise('core.edit.state', 'com_circolari');
$saveOrder = $listOrder == 'a.ordering';
if (!empty($saveOrder)) {
$saveOrderingUrl = 'index.php?option=com_circolari&task=circolares.saveOrderAjax&tmpl=component&' . Session::getFormToken() . '=1';
HTMLHelper::_('draggablelist.draggable');
}
?>
<form action="<?php echo Route::_('index.php?option=com_circolari&view=circolares'); ?>" method="post"
name="adminForm" id="adminForm">
<div class="row">
<div class="col-md-12">
<div id="j-main-container" class="j-main-container">
<?php echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this)); ?>
<div class="clearfix"></div>
<table class="table table-striped" id="circolareList">
<thead>
<tr>
<th class="w-1 text-center">
<input type="checkbox" autocomplete="off" class="form-check-input" name="checkall-toggle" value=""
title="<?php echo Text::_('JGLOBAL_CHECK_ALL'); ?>" onclick="Joomla.checkAll(this)" />
</th>
<th>
<?php echo HTMLHelper::_('searchtools.sort', 'Titolo', 'a.title', $listDirn, $listOrder); ?>
</th>
<th><?php echo Text::_("COM_CIRCOLARI_FIELD_TIPOLOGIA_FIRMA_LABEL"); ?></th>
<th> <?php echo HTMLHelper::_('searchtools.sort', 'Firma Obbligatoria', 'a.firma_obbligatoria', $listDirn, $listOrder); ?>
</th>
<th>Scadenza</th>
<?php if (isset($this->items[0]->ordering)): ?>
<th scope="col" class="w-1 text-center d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', '', 'a.ordering', $listDirn, $listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-menu-2'); ?>
</th>
<?php endif; ?>
<th scope="col" class="w-1 text-center">
<?php echo HTMLHelper::_('searchtools.sort', 'JSTATUS', 'a.state', $listDirn, $listOrder); ?>
</th>
<th scope="col" class="w-3 d-none d-lg-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?> </th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="<?php echo isset($this->items[0]) ? count(get_object_vars($this->items[0])) : 10; ?>">
<?php echo $this->pagination->getListFooter(); ?>
</td>
</tr>
</tfoot>
<tbody>
<?php foreach ($this->items as $i => $item) :
$canEdit = $user->authorise('core.edit', 'com_circolari');
$canChange = $user->authorise('core.edit.state', 'com_circolari');
?>
<tr class="row<?php echo $i % 2; ?>" data-draggable-group="1">
<td class="text-center">
<?php echo HTMLHelper::_('grid.id', $i, $item->id); ?>
</td>
<td>
<a href="<?php echo Route::_('index.php?option=com_circolari&task=circolare.edit&id=' . (int) $item->id); ?>">
<?php echo htmlspecialchars($item->title, ENT_QUOTES, 'UTF-8'); ?>
</a>
</td>
<td><?php echo htmlspecialchars($item->tipologia_firma, ENT_QUOTES, "UTF-8"); ?></td>
<td><?php echo $item->firma_obbligatoria ? 'Sì' : 'No'; ?></td>
<td><?php echo $item->scadenza; ?></td>
<?php if (isset($this->items[0]->ordering)) : ?>
<td class="text-center d-none d-md-table-cell">
<?php
$iconClass = '';
if (!$canChange) {
$iconClass = ' inactive';
} elseif (!$saveOrder) {
$iconClass = ' inactive" title="' . Text::_('JORDERINGDISABLED');
} ?> <span class="sortable-handler<?php echo $iconClass ?>">
<span class="icon-ellipsis-v" aria-hidden="true"></span>
</span>
<?php if ($canChange && $saveOrder) : ?>
<input type="text" name="order[]" size="5" value="<?php echo $item->ordering; ?>" class="width-20 text-area-order hidden">
<?php endif; ?>
</td>
<?php endif; ?>
<td class="text-center"><?php echo HTMLHelper::_('jgrid.published', $item->state, $i, 'circolares.', $canChange, 'cb'); ?></td>
<td class="text-center"><?php echo (int) $item->id; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="list[fullorder]" value="<?php echo $listOrder; ?> <?php echo $listDirn; ?>" />
<?php echo HTMLHelper::_('form.token'); ?>
</div>
</div>
</div>
</form>

View File

@ -0,0 +1,32 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Anand
* @author Super User <dev@component-creator.com>
* @copyright 2023 Super User
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access
defined('_JEXEC') or die;
use \Joomla\CMS\HTML\HTMLHelper;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Uri\Uri;
use \Joomla\CMS\Router\Route;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Session\Session;
use Joomla\Utilities\ArrayHelper;
?>
<div class="item_fields">
<table class="table">
</table>
</div>

View File

@ -0,0 +1,55 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Highlights
* @author Eddy Prosperi <eddy.prosperi@protocollicreativi.it>
* @copyright 2024 Eddy Prosperi
* @license GNU General Public License versione 2 o successiva; vedi LICENSE.txt
*/
// No direct access
defined('_JEXEC') or die;
use \Joomla\CMS\HTML\HTMLHelper;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Uri\Uri;
use \Joomla\CMS\Router\Route;
use \Joomla\CMS\Language\Text;
$wa = $this->document->getWebAssetManager();
$wa->useScript('keepalive')
->useScript('form.validate');
HTMLHelper::_('bootstrap.tooltip');
?>
<form
action="<?php echo Route::_('index.php?option=com_circolari&layout=edit&id=' . (int) $this->item->id); ?>"
method="post" enctype="multipart/form-data" name="adminForm" id="etichetta-form" class="form-validate form-horizontal">
<?php echo HTMLHelper::_('uitab.startTabSet', 'myTab', array('active' => 'etichetta')); ?>
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'etichetta', Text::_('COM_CIRCOLARI_TAB_ETICHETTA', true)); ?>
<div class="row-fluid">
<div class="col-md-12 form-horizontal">
<fieldset class="adminform">
<legend><?php echo Text::_('COM_CIRCOLARI_FIELDSET_ETICHETTA'); ?></legend>
<?php echo $this->form->renderField('nome'); ?>
<?php echo $this->form->renderField('lingua'); ?>
</fieldset>
</div>
</div>
<?php echo HTMLHelper::_('uitab.endTab'); ?>
<input type="hidden" name="jform[id]" value="<?php echo isset($this->item->id) ? $this->item->id : ''; ?>" />
<input type="hidden" name="jform[state]" value="<?php echo isset($this->item->state) ? $this->item->state : ''; ?>" />
<?php echo $this->form->renderField('created_by'); ?>
<?php echo $this->form->renderField('modified_by'); ?>
<?php echo HTMLHelper::_('uitab.endTabSet'); ?>
<input type="hidden" name="task" value=""/>
<?php echo HTMLHelper::_('form.token'); ?>
</form>

View File

@ -0,0 +1,47 @@
<?php
\defined('_JEXEC') or die;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\Factory;
$user = Factory::getApplication()->getIdentity();
$listOrder = $this->state->get('list.ordering');
$listDirn = $this->state->get('list.direction');
?>
<form action="<?php echo Route::_('index.php?option=com_circolari&view=firmetipi'); ?>" method="post" name="adminForm" id="adminForm">
<div class="row">
<div class="col-12">
<table class="table table-striped">
<thead>
<tr>
<th width="1%">#</th>
<th><?php echo Text::_('Nome'); ?></th>
<th><?php echo Text::_('Descrizione'); ?></th>
<th width="1%"><?php echo Text::_('ID'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($this->items as $i => $item) : ?>
<tr>
<td><?php echo $i + 1; ?></td>
<td>
<a href="<?php echo Route::_('index.php?option=com_circolari&task=firmatipo.edit&id=' . (int) $item->id); ?>">
<?php echo htmlspecialchars($item->nome, ENT_QUOTES, 'UTF-8'); ?>
</a>
</td>
<td><?php echo htmlspecialchars($item->descrizione, ENT_QUOTES, 'UTF-8'); ?></td>
<td><?php echo (int) $item->id; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
<input type="hidden" name="task" value="" />
</form>

View File

@ -0,0 +1,30 @@
<?php
\defined('_JEXEC') or die;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Language\Text;
HTMLHelper::_('behavior.formvalidator');
HTMLHelper::_('formbehavior.chosen', 'select');
HTMLHelper::_('formbehavior.tooltip');
?>
<form action="<?php echo Route::_('index.php?option=com_circolari&layout=edit&id=' . (int) $this->item->id); ?>"
method="post" name="adminForm" id="adminForm" class="form-validate">
<div class="row">
<div class="col-12">
<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
<?php $fields = $this->form->getFieldset($fieldset->name); ?>
<?php foreach ($fields as $field) : ?>
<div class="mb-3">
<?php echo $field->label; ?>
<?php echo $field->input; ?>
</div>
<?php endforeach; ?>
<?php endforeach; ?>
</div>
</div>
<input type="hidden" name="task" value="firmetipi.save">
<?php echo HTMLHelper::_('form.token'); ?>
</form>

View File

@ -0,0 +1 @@
<html><body></body></html>

91
circolari.xml Normal file
View File

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="4.0" method="upgrade">
<name>com_circolari</name>
<creationDate>2025-07-22</creationDate>
<copyright>2025 Tommaso Cippitelli</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<author>Tommaso Cippitelli</author>
<authorEmail>tommaso.cippitelli@protocollicreativi.it</authorEmail>
<authorUrl>http://</authorUrl>
<version>CVS: 1.0.0</version>
<description></description>
<namespace path="src">Pcrt\Component\Circolari</namespace>
<install> <!-- Runs on install -->
<sql>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>
</sql>
</install>
<update> <!-- Runs on update -->
<schemas>
<schemapath type="mysql">sql/updates</schemapath>
</schemas>
</update>
<uninstall> <!-- Runs on uninstall -->
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
</sql>
</uninstall>
<files folder="site">
<folder>src</folder>
<folder>tmpl</folder>
</files>
<media destination="com_circolari" folder="media">
<folder>css</folder>
<folder>js</folder>
<filename>joomla.asset.json</filename>
</media>
<languages folder="site/languages">
<language tag="en-GB">en-GB/com_circolari.ini</language>
<language tag="it-IT">it-IT/com_circolari.ini</language>
</languages>
<administration>
<menu>COM_CIRCOLARI</menu>
<submenu>
<menu link="option=com_circolari&amp;view=circolares" view="circolares" alt="Circolari/Circolares">COM_CIRCOLARI_TITLE_CIRCOLARES</menu>
<menu link="option=com_circolari&amp;view=firmetipi" view="firmetipi" alt="Circolari/Firmetipi">COM_CIRCOLARI_TITLE_FIRMETIPI</menu>
</submenu>
<files folder="administrator">
<filename>access.xml</filename>
<filename>config.xml</filename>
<folder>forms</folder>
<folder>src</folder>
<folder>tmpl</folder>
<folder>services</folder>
<folder>presets</folder>
<folder>sql</folder>
</files>
<languages folder="administrator/languages">
<language tag="en-GB">en-GB/com_circolari.ini</language>
<language tag="en-GB">en-GB/com_circolari.sys.ini</language>
<language tag="it-IT">it-IT/com_circolari.ini</language>
<language tag="it-IT">it-IT/com_circolari.sys.ini</language>
</languages>
</administration>
<config>
<fields name="params">
<fieldset name="component">
<field name="save_history" default="0" />
</fieldset>
</fields>
</config>
<plugins>
</plugins>
<updateservers>
<server type="extension" priority="1" name="com_circolari">https://nocdn.component-creator.com/index.php?task=builder.preupdatecheckhook&amp;option=com_combuilder&amp;component=NzY0NjYtMjE1NzU5</server>
</updateservers>
</extension>
<!-- Component built by the Joomla Component Creator -->
<!-- http://www.component-creator.com/ -->

1
installer/index.html Normal file
View File

@ -0,0 +1 @@
<html><body></body></html>

11
media/css/admin.css Normal file
View File

@ -0,0 +1,11 @@
.jcc-color-box {
float: left;
width: 15px;
height: 15px;
margin-right: 5px;
border: 1px solid rgba(0, 0, 0, .2);
}
.other-filters{
padding: 0 14px;
}

7
media/css/list.css Normal file
View File

@ -0,0 +1,7 @@
/**
* @version CVS: 1.0.0
* @package com_circolari
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
*/

29
media/joomla.asset.json Normal file
View File

@ -0,0 +1,29 @@
{
"$schema": "https://developer.joomla.org/schemas/json-schema/web_assets.json",
"name": "com_circolari",
"version": "CVS: 1.0.0",
"license": "GNU General Public License version 2 or later; see LICENSE.txt",
"assets": [
{
"name": "com_circolari.admin",
"type": "style",
"uri": "com_circolari/admin.css"
},
{
"name": "com_circolari.admin",
"type": "script",
"uri": "com_circolari/admin.js",
"dependencies": [
"jquery"
],
"attributes": {
"defer": true
}
},
{
"name": "com_circolari.list",
"type": "style",
"uri": "com_circolari/list.css"
}
]
}

32
media/js/admin.js Normal file
View File

@ -0,0 +1,32 @@
window.Joomla = window.Joomla || {};
(function (window, Joomla) {
Joomla.toggleField = function (id, task, field) {
var f = document.adminForm, i = 0, cbx, cb = f[ id ];
if (!cb) return false;
while (true) {
cbx = f[ 'cb' + i ];
if (!cbx) break;
cbx.checked = false;
i++;
}
var inputField = document.createElement('input');
inputField.type = 'hidden';
inputField.name = 'field';
inputField.value = field;
f.appendChild(inputField);
cb.checked = true;
f.boxchecked.value = 1;
Joomla.submitform(task);
return false;
};
})(window, Joomla);

1
site/forms/index.html Normal file
View File

@ -0,0 +1 @@
<html><body></body></html>

View File

@ -0,0 +1,43 @@
COM_CIRCOLARI = "Circolari"
COM_CIRCOLARI_ITEM_SAVED_SUCCESSFULLY = "Item saved successfully"
COM_CIRCOLARI_ITEM_DELETED_SUCCESSFULLY = "Item deleted successfully"
COM_CIRCOLARI_ITEM_DELETED_UNSUCCESSFULLY = "Could not delete item"
COM_CIRCOLARI_ITEM_DOESNT_EXIST = "Item does not exist"
COM_CIRCOLARI_ITEM_NOT_LOADED = "Could not load the item"
COM_CIRCOLARI_VIEW_FILE = "[View File]"
COM_CIRCOLARI_ADD_ITEM = "Add"
COM_CIRCOLARI_EDIT_ITEM = "Edit"
COM_CIRCOLARI_DELETE_ITEM = "Delete"
COM_CIRCOLARI_DELETE_MESSAGE = "Are you sure that you want delete this item?"
COM_CIRCOLARI_DELETE_CONFIRM = "You're about to delete the item <strong>#%s</strong>. Are you sure?"
COM_CIRCOLARI_PUBLISH_ITEM = "Publish"
COM_CIRCOLARI_UNPUBLISH_ITEM = "Unpublish"
COM_CIRCOLARI_NO_ITEMS = "There are no items in the list"
COM_CIRCOLARI_SEARCH_TOOLS = "Search Tools"
COM_CIRCOLARI_SEARCH_TOOLS_DESC = ""
COM_CIRCOLARI_SEARCH_FILTER_SUBMIT = "Search"
COM_CIRCOLARI_SEARCH_FILTER_CLEAR = "Clear"
COM_CIRCOLARI_SEARCH_FILTER_DATE_FORMAT = "Dates should be in this format: \"YYYY-MM-DD\". Some filter fields have been ignored."
COM_CIRCOLARI_ERROR_MESSAGE_NOT_AUTHORISED = "You don't have permission to access this. Please contact a website administrator if this is incorrect."
COM_CIRCOLARI_ADD_ITEM_TITLE = "Add"
COM_CIRCOLARI_EDIT_ITEM_TITLE = "Edit %s"
COM_CIRCOLARI_ACTION_PERMISSIONS_LABEL = "Permissions"
COM_CIRCOLARI_VALIDATION_FORM_FAILED = "Invalid form"
COM_CIRCOLARI_CHECKEDIN_SUCCESSFULLY = "Item successfully checked in"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ID="ID"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_STATE="State"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ORDERING="Order"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CHECKED_OUT="N/A"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CHECKED_OUT_TIME="N/A"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CREATED_BY="Created by"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_MODIFIED_BY="Modified by"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_TITLE="Title"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_DESCRIPTION="Description"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ATTACHMENT="Attachment"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_IMAGE="Image"

View File

@ -0,0 +1,43 @@
COM_CIRCOLARI = "Circolari"
COM_CIRCOLARI_ITEM_SAVED_SUCCESSFULLY = "Item saved successfully"
COM_CIRCOLARI_ITEM_DELETED_SUCCESSFULLY = "Item deleted successfully"
COM_CIRCOLARI_ITEM_DELETED_UNSUCCESSFULLY = "Could not delete item"
COM_CIRCOLARI_ITEM_DOESNT_EXIST = "Item does not exist"
COM_CIRCOLARI_ITEM_NOT_LOADED = "Could not load the item"
COM_CIRCOLARI_VIEW_FILE = "[View File]"
COM_CIRCOLARI_ADD_ITEM = "Add"
COM_CIRCOLARI_EDIT_ITEM = "Edit"
COM_CIRCOLARI_DELETE_ITEM = "Delete"
COM_CIRCOLARI_DELETE_MESSAGE = "Are you sure that you want delete this item?"
COM_CIRCOLARI_DELETE_CONFIRM = "You're about to delete the item <strong>#%s</strong>. Are you sure?"
COM_CIRCOLARI_PUBLISH_ITEM = "Publish"
COM_CIRCOLARI_UNPUBLISH_ITEM = "Unpublish"
COM_CIRCOLARI_NO_ITEMS = "There are no items in the list"
COM_CIRCOLARI_SEARCH_TOOLS = "Search Tools"
COM_CIRCOLARI_SEARCH_TOOLS_DESC = ""
COM_CIRCOLARI_SEARCH_FILTER_SUBMIT = "Search"
COM_CIRCOLARI_SEARCH_FILTER_CLEAR = "Clear"
COM_CIRCOLARI_SEARCH_FILTER_DATE_FORMAT = "Dates should be in this format: \"YYYY-MM-DD\". Some filter fields have been ignored."
COM_CIRCOLARI_ERROR_MESSAGE_NOT_AUTHORISED = "You don't have permission to access this. Please contact a website administrator if this is incorrect."
COM_CIRCOLARI_ADD_ITEM_TITLE = "Add"
COM_CIRCOLARI_EDIT_ITEM_TITLE = "Edit %s"
COM_CIRCOLARI_ACTION_PERMISSIONS_LABEL = "Permissions"
COM_CIRCOLARI_VALIDATION_FORM_FAILED = "Invalid form"
COM_CIRCOLARI_CHECKEDIN_SUCCESSFULLY = "Item successfully checked in"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ID="ID"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_STATE="State"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ORDERING="Order"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CHECKED_OUT="N/A"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CHECKED_OUT_TIME="N/A"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_CREATED_BY="Created by"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_MODIFIED_BY="Modified by"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_TITLE="Title"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_DESCRIPTION="Description"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_ATTACHMENT="Attachment"
COM_CIRCOLARI_FORM_LBL_CIRCOLARE_IMAGE="Image"

View File

@ -0,0 +1,64 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Controller;
\defined('_JEXEC') or die;
use Joomla\CMS\Component\ComponentHelper;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
/**
* Display Component Controller
*
* @since 1.0.0
*/
class DisplayController extends \Joomla\CMS\MVC\Controller\BaseController
{
/**
* Constructor.
*
* @param array $config An optional associative array of configuration settings.
* Recognized key values include 'name', 'default_task', 'model_path', and
* 'view_path' (this list is not meant to be comprehensive).
* @param MVCFactoryInterface $factory The factory.
* @param CMSApplication $app The JApplication for the dispatcher
* @param Input $input Input
*
* @since 1.0.0
*/
public function __construct($config = array(), ?MVCFactoryInterface $factory = null, $app = null, $input = null)
{
parent::__construct($config, $factory, $app, $input);
}
/**
* Method to display a view.
*
* @param boolean $cachable If true, the view output will be cached.
* @param boolean $urlparams An array of safe URL parameters and their variable types, for valid values see {@link InputFilter::clean()}.
*
* @return \Joomla\CMS\MVC\Controller\BaseController This object to support chaining.
*
* @since 1.0.0
*/
public function display($cachable = false, $urlparams = false)
{
$view = $this->input->getCmd('view', 'circolares');
$view = $view == "featured" ? 'circolares' : $view;
$this->input->set('view', $view);
parent::display($cachable, $urlparams);
return $this;
}
}

View File

@ -0,0 +1,67 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Form\FormField;
use \Joomla\CMS\User\UserFactoryInterface;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class CreatedbyField extends FormField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'createdby';
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function getInput()
{
// Initialize variables.
$html = array();
// Load user
$user_id = $this->value;
if ($user_id)
{
$container = \Joomla\CMS\Factory::getContainer();
$userFactory = $container->get(UserFactoryInterface::class);
$user = $userFactory->loadUserById($user_id);
}
else
{
$user = Factory::getApplication()->getIdentity();
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $user->id . '" />';
}
if (!$this->hidden)
{
$html[] = "<div>" . $user->name . " (" . $user->username . ")</div>";
}
return implode($html);
}
}

View File

@ -0,0 +1,296 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\HTML\HTMLHelper;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Form\Field\ListField;
/**
* Supports a value from an external table
*
* @since 1.0.0
*/
class ForeignKeyField extends ListField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'foreignkey';
protected $layout = 'joomla.form.field.list-fancy-select';
/**
* The translate.
*
* @var boolean
* @since 1.0.0
*/
protected $translate = true;
protected $header = false;
private $input_type;
private $table;
private $key_field;
private $value_field;
private $option_key_field;
private $option_value_field;
private $condition;
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function processQuery()
{
// Type of input the field shows
$this->input_type = $this->getAttribute('input_type');
// Database Table
$this->table = $this->getAttribute('table');
// The field that the field will save on the database
$this->key_field = (string) $this->getAttribute('key_field');
// The column that the field shows in the input
$this->value_field = (string) $this->getAttribute('value_field');
// The option field that the field will save on the database
$this->option_key_field = (string) $this->getAttribute('option_key_field');
// The option value that the field shows in the input
$this->option_value_field = (string) $this->getAttribute('option_value_field');
// Flag to identify if the fk_value is multiple
$this->value_multiple = (int) $this->getAttribute('value_multiple', 0);
$this->required = (string) $this->getAttribute('required', 0);
// Flag to identify if the fk_value hides the trashed items
$this->hideTrashed = (int) $this->getAttribute('hide_trashed', 0);
// Flag to identify if the fk_value hides the unpublished items
$this->hideUnpublished = (int) $this->getAttribute('hide_unpublished', 0);
// Flag to identify if the fk_value hides the published items
$this->hidePublished = (int) $this->getAttribute('hide_published', 0);
// Flag to identify if the fk_value hides the archived items
$this->hideArchived = (int) $this->getAttribute('hide_archived', 0);
// Flag to identify if the fk has default order
$this->fk_ordering = (string) $this->getAttribute('fk_ordering');
// The where SQL for foreignkey
$this->condition = (string) $this->getAttribute('condition');
// Flag for translate options
$this->translate = (bool) $this->getAttribute('translate');
// Initialize variables.
$html = '';
$fk_value = '';
// Load all the field options
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->getQuery(true);
// Support for multiple fields on fk_values
if ($this->value_multiple == 1)
{
// Get the fields for multiple value
$this->value_fields = (string) $this->getAttribute('value_field_multiple');
$this->value_fields = explode(',', $this->value_fields);
$this->separator = (string) $this->getAttribute('separator');
$fk_value = ' CONCAT(';
foreach ($this->value_fields as $field)
{
$fk_value .= $db->quoteName($field) . ', \'' . $this->separator . '\', ';
}
$fk_value = substr($fk_value, 0, -(strlen($this->separator) + 6));
$fk_value .= ') AS ' . $db->quoteName($this->value_field);
}
else
{
$fk_value = $db->quoteName($this->value_field);
}
$query
->select(
array(
$db->quoteName($this->key_field),
$fk_value
)
)
->from($this->table);
if ($this->hideTrashed)
{
$query->where($db->quoteName('state') . ' != -2');
}
if ($this->hideUnpublished)
{
$query->where($db->quoteName('state') . ' != 0');
}
if ($this->hidePublished)
{
$query->where($db->quoteName('state') . ' != 1');
}
if ($this->hideArchived)
{
$query->where($db->quoteName('state') . ' != 2');
}
if ($this->fk_ordering)
{
$query->order($this->fk_ordering);
}
if($this->condition)
{
$query->where($this->condition);
}
return $query;
}
/**
* Method to get the field input for a foreignkey field.
*
* @return string The field input.
*
* @since 1.0.0
*/
protected function getInput()
{
$data = $this->getLayoutData();
if (!\is_array($this->value) && !empty($this->value))
{
if (\is_object($this->value))
{
$this->value = get_object_vars($this->value);
}
// String in format 2,5,4
if (\is_string($this->value))
{
$this->value = explode(',', $this->value);
}
// Integer is given
if (\is_int($this->value))
{
$this->value = array($this->value);
}
$data['value'] = $this->value;
}
$data['options'] = $this->getOptions();
return $this->getRenderer($this->layout)->render($data);
}
/**
* Method to get the field options.
*
* @return array The field option objects.
*
* @since 1.0.0
*/
protected function getOptions()
{
$options = array();
$db = Factory::getContainer()->get('DatabaseDriver');
try
{
$db->setQuery($this->processQuery());
$results = $db->loadObjectList();
}
catch (ExecutionFailureException $e)
{
Factory::getApplication()->enqueueMessage(Text::_('JERROR_AN_ERROR_HAS_OCCURRED'), 'error');
}
// Add header.
if (!empty($this->header))
{
$options[] = (object) ["value" => '', "text" => Text::_($this->header)];
}
if(!empty($this->option_value_field) || !empty($this->option_key_field))
{
$options[] = (object) ["value" => $this->option_key_field, "text" => Text::_($this->option_value_field)];
}
// Build the field options.
if (!empty($results))
{
foreach ($results as $item)
{
$options[] = (object) [
"value" => $item->{$this->key_field},
"text" => $this->translate == true ? Text::_($item->{$this->value_field}) : $item->{$this->value_field}
];
}
}
// Merge any additional options in the XML definition.
$options = array_merge(parent::getOptions(), $options);
return $options;
}
/**
* Wrapper method for getting attributes from the form element
*
* @param string $attr_name Attribute name
* @param mixed $default Optional value to return if attribute not found
*
* @return mixed The value of the attribute if it exists, null otherwise
*/
public function getAttribute($attr_name, $default = null)
{
if (!empty($this->element[$attr_name]))
{
return $this->element[$attr_name];
}
else
{
return $default;
}
}
}

View File

@ -0,0 +1,53 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Form\FormField;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class ModifiedbyField extends FormField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'modifiedby';
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function getInput()
{
// Initialize variables.
$html = array();
$user = Factory::getApplication()->getIdentity();
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $user->id . '" />';
if (!$this->hidden)
{
$html[] = "<div>" . $user->name . " (" . $user->username . ")</div>";
}
return implode($html);
}
}

View File

@ -0,0 +1,83 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Field;
defined('JPATH_BASE') or die;
use Joomla\CMS\Helper\UserGroupsHelper;
use \Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class NestedparentField extends ListField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'nestedparent';
/**
* Method to get the field options.
*
* @return array The field option objects.
*
* @since 1.0.0
*/
protected function getOptions()
{
$options = array();
$table = $this->getAttribute('table');
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->getQuery(true)
->select('DISTINCT(a.id) AS value, a.title AS text, a.level, a.lft')
->from($table . ' AS a');
// Prevent parenting to children of this item.
if ($id = $this->form->getValue('id'))
{
$query->join('LEFT', $db->quoteName($table) . ' AS p ON p.id = ' . (int) $id)
->where('NOT(a.lft >= p.lft AND a.rgt <= p.rgt)');
}
$query->order('a.lft ASC');
// Get the options.
$db->setQuery($query);
try
{
$options = $db->loadObjectList();
}
catch (\RuntimeException $e)
{
\JError::raiseWarning(500, $e->getMessage());
}
// Pad the option text with spaces using depth level as a multiplier.
for ($i = 0, $n = count($options); $i < $n; $i++)
{
$options[$i]->text = str_repeat('- ', $options[$i]->level) . $options[$i]->text;
}
// Merge any additional options in the XML definition.
$options = array_merge(parent::getOptions(), $options);
return $options;
}
}

View File

@ -0,0 +1,49 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Field;
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Form\FormField;
/**
* Class SubmitField
*
* @since 1.0.0
*/
class SubmitField extends FormField
{
protected $type = 'submit';
protected $value;
protected $for;
/**
* Get a form field markup for the input
*
* @return string
*/
public function getInput()
{
$this->value = $this->getAttribute('value');
return '<button id="' . $this->id . '"'
. ' name="submit_' . $this->for . '"'
. ' value="' . $this->value . '"'
. ' title="' . Text::_('JSEARCH_FILTER_SUBMIT') . '"'
. ' class="btn" style="margin-top: -10px;">'
. Text::_('JSEARCH_FILTER_SUBMIT')
. ' </button>';
}
}

View File

@ -0,0 +1,65 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Form\FormField;
use \Joomla\CMS\Date\Date;
use Joomla\CMS\HTML\HTMLHelper;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class TimecreatedField extends FormField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'timecreated';
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function getInput()
{
// Initialize variables.
$html = array();
$time_created = $this->value;
if (!strtotime($time_created))
{
$time_created = Factory::getDate()->toSql();
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $time_created . '" />';
}
$hidden = (boolean) $this->element['hidden'];
if ($hidden == null || !$hidden)
{
$pretty_date = HTMLHelper::_('date', $time_created, Text::_('DATE_FORMAT_LC2'), true);
$html[] = "<div>" . $pretty_date . "</div>";
}
return implode($html);
}
}

View File

@ -0,0 +1,68 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Field;
defined('JPATH_BASE') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\Language\Text;
use \Joomla\CMS\Form\FormField;
use \Joomla\CMS\Date\Date;
use Joomla\CMS\HTML\HTMLHelper;
/**
* Supports an HTML select list of categories
*
* @since 1.0.0
*/
class TimeupdatedField extends FormField
{
/**
* The form field type.
*
* @var string
* @since 1.0.0
*/
protected $type = 'timeupdated';
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 1.0.0
*/
protected function getInput()
{
// Initialize variables.
$html = array();
$old_time_updated = $this->value;
$hidden = (boolean) $this->element['hidden'];
if ($hidden == null || !$hidden)
{
if (!strtotime($old_time_updated))
{
$html[] = '-';
}
else
{
$pretty_date = HTMLHelper::_('date', $old_time_updated, Text::_('DATE_FORMAT_LC2'), true);
$html[] = "<div>" . $pretty_date . "</div>";
}
}
$time_updated = Factory::getDate()->toSql();
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $time_updated . '" />';
return implode($html);
}
}

View File

@ -0,0 +1 @@
<html><body></body></html>

View File

@ -0,0 +1,71 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Helper;
defined('_JEXEC') or die;
use \Joomla\CMS\Factory;
use \Joomla\CMS\MVC\Model\BaseDatabaseModel;
/**
* Class CircolariFrontendHelper
*
* @since 1.0.0
*/
class CircolariHelper
{
/**
* Gets the files attached to an item
*
* @param int $pk The item's id
*
* @param string $table The table's name
*
* @param string $field The field's name
*
* @return array The files
*/
public static function getFiles($pk, $table, $field)
{
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->getQuery(true);
$query
->select($field)
->from($table)
->where('id = ' . (int) $pk);
$db->setQuery($query);
return explode(',', $db->loadResult());
}
/**
* Gets the edit permission for an user
*
* @param mixed $item The item
*
* @return bool
*/
public static function canUserEdit($item)
{
$permission = false;
$user = Factory::getApplication()->getIdentity();
if ($user->authorise('core.edit', 'com_circolari') || (isset($item->created_by) && $user->authorise('core.edit.own', 'com_circolari') && $item->created_by == $user->id) || $user->authorise('core.create', 'com_circolari'))
{
$permission = true;
}
return $permission;
}
}

View File

@ -0,0 +1 @@
<html><body></body></html>

View File

@ -0,0 +1,21 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Service;
// No direct access
defined('_JEXEC') or die;
use \Joomla\CMS\Categories\Categories;
/**
* Content Component Category Tree
*
* @since 1.0.0
*/

View File

@ -0,0 +1,95 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Site\Service;
// No direct access
defined('_JEXEC') or die;
use Joomla\CMS\Component\Router\RouterViewConfiguration;
use Joomla\CMS\Component\Router\RouterView;
use Joomla\CMS\Component\Router\Rules\StandardRules;
use Joomla\CMS\Component\Router\Rules\NomenuRules;
use Joomla\CMS\Component\Router\Rules\MenuRules;
use Joomla\CMS\Factory;
use Joomla\CMS\Categories\Categories;
use Joomla\CMS\Application\SiteApplication;
use Joomla\CMS\Categories\CategoryFactoryInterface;
use Joomla\CMS\Categories\CategoryInterface;
use Joomla\Database\DatabaseInterface;
use Joomla\CMS\Menu\AbstractMenu;
use Joomla\CMS\Component\ComponentHelper;
/**
* Class CircolariRouter
*
*/
class Router extends RouterView
{
private $noIDs;
/**
* The category factory
*
* @var CategoryFactoryInterface
*
* @since 1.0.0
*/
private $categoryFactory;
/**
* The category cache
*
* @var array
*
* @since 1.0.0
*/
private $categoryCache = [];
public function __construct(SiteApplication $app, AbstractMenu $menu, CategoryFactoryInterface $categoryFactory, DatabaseInterface $db)
{
$params = ComponentHelper::getParams('com_circolari');
$this->noIDs = (bool) $params->get('sef_ids');
$this->categoryFactory = $categoryFactory;
parent::__construct($app, $menu);
$this->attachRule(new MenuRules($this));
$this->attachRule(new StandardRules($this));
$this->attachRule(new NomenuRules($this));
}
/**
* Method to get categories from cache
*
* @param array $options The options for retrieving categories
*
* @return CategoryInterface The object containing categories
*
* @since 1.0.0
*/
private function getCategories(array $options = []): CategoryInterface
{
$key = serialize($options);
if (!isset($this->categoryCache[$key]))
{
$this->categoryCache[$key] = $this->categoryFactory->createCategory($options);
}
return $this->categoryCache[$key];
}
}

1
site/tmpl/index.html Normal file
View File

@ -0,0 +1 @@
<html><body></body></html>

View File

@ -0,0 +1,37 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Api\Controller;
\defined('_JEXEC') or die;
use Joomla\CMS\MVC\Controller\ApiController;
/**
* The XXX_UCFIRST_INTERNAL_NAME_FORCE_LIST_XXX controller
*
* @since 1.0.0
*/
class XXX_UCFIRST_INTERNAL_NAME_FORCE_LIST_XXXController extends ApiController
{
/**
* The content type of the item.
*
* @var string
* @since 1.0.0
*/
protected $contentType = 'XXX_INTERNAL_NAME_FORCE_LIST_XXX';
/**
* The default view for the display method.
*
* @var string
* @since 1.0.0
*/
protected $default_view = 'XXX_INTERNAL_NAME_FORCE_LIST_XXX';
}

View File

@ -0,0 +1,42 @@
<?php
/**
* @version CVS: 1.0.0
* @package Com_Circolari
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
* @copyright 2025 Tommaso Cippitelli
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Pcrt\Component\Circolari\Api\View\XXX_UCFIRST_INTERNAL_NAME_XXX;
\defined('_JEXEC') or die;
use Joomla\CMS\MVC\View\JsonApiView as BaseApiView;
/**
* The XXX_UCFIRST_INTERNAL_NAME_FORCE_LIST_XXX view
*
* @since 1.0.0
*/
class JsonApiView extends BaseApiView
{
/**
* The fields to render item in the documents
*
* @var array
* @since 1.0.0
*/
protected $fieldsToRenderItem = [
//XXX_FIELDS_TO_RENDER_ITEM
];
/**
* The fields to render items in the documents
*
* @var array
* @since 1.0.0
*/
protected $fieldsToRenderList = [
//XXX_FIELDS_TO_RENDER_LIST
];
}