Download the PHP package t3cs/t3cs_sessions without Composer

On this page you can find all versions of the php package t3cs/t3cs_sessions. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package t3cs_sessions

Extension t3cs_sessions

This extension was created to provide a session plan for the TYPO3camp Stuttgart. With the help of Responsive Guru Sven Wolfermann this extension shows the sessions by time and not (like others) by room, so that you see all next sessions in a good overview even on a mobile phone.

Features

Version 1.0.0

Version 2.0.0

Version 2.1.0

Version 2.2.0

Version 2.3.0

Update script for step 1.0.0 => 2.0.0

This you have to do before the extension update! Due to table field changes you have to convert the MySQL datetime field values to Unix timestamps:

  1. Create new temporary table fields:
    
        ALTER TABLE tx_t3cssessions_domain_model_slot ADD begin_backup int(11) DEFAULT '0' NOT NULL;
        ALTER TABLE tx_t3cssessions_domain_model_slot ADD end_backup int(11) DEFAULT '0' NOT NULL;
        
  2. Convert existing records from datetime to Unix timestamp:
    
        UPDATE tx_t3cssessions_domain_model_slot SET begin_backup = UNIX_TIMESTAMP(begin);
        UPDATE tx_t3cssessions_domain_model_slot SET end_backup = UNIX_TIMESTAMP(end);
        
  3. Do the extension update (Fields "begin" and "end" will be changed from datetime to int(11))
  4. Now save the timestamps back:
    
        UPDATE tx_t3cssessions_domain_model_slot SET begin = begin_backup;
        UPDATE tx_t3cssessions_domain_model_slot SET end = end_backup;
        
  5. Due to the bug of the difference of 2 hours from database to frontend, add 2 hours:
    
        UPDATE tx_t3cssessions_domain_model_slot SET begin = begin + 7200;
        UPDATE tx_t3cssessions_domain_model_slot SET end = end + 7200;
        

Twitter integration

You have to create a Twitter App with the nice HowTo on http://www.pontikis.net/blog/auto_post_on_twitter_with_php. After finishing the HowTo you just have to set your Twitter credentials into the extension configuration (in Extension Manager)


All versions of t3cs_sessions with dependencies

PHP Build Version
Package Version
Requires typo3/cms-core Version ^9.5
jublonet/codebird-php Version ^3.1
minishlink/web-push Version ^5.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package t3cs/t3cs_sessions contains the following files

Loading the files please wait ....