atomik icon indicating copy to clipboard operation
atomik copied to clipboard

Micro framework for PHP 5.3+ [UNMAINTAINED]

Results 12 atomik issues
Sort by recently updated
recently updated
newest added

will atomik support PHP 7 ?

$this->_('hello')); work as described in the doc but get Fatal error: Call to undefined function __() when using the shortcut __('hello');

selectValue($tableName, $column, $where = null) is implemented as $stmt = $this->executeSelect($tableName, $column, $where,$afterwhere); return $stmt->fetchColumn(); $afterwhere is not declared so this gives errors when errors are enabled. The solution is...

Le champ **select** ne permet pas de présélectionner plusieurs **valeurs par défaut** (argument $value). Le troisième argument $value pourrait devenir un tableau $values. Dans ce cas, il suffirait de changer...

Hi I'm using the Controller plugin and I believe the documentation is wrong. It says : "When using the router, the action parameter is mandatory. This plugin adds another mandatory...

Bonjour, Dans la doc : https://github.com/maximebf/atomik/blob/master/docs/error_log_debug.md Je tente de mettre en place une page d'erreur 404 personnalisée. Dans config.php :

Hello when I first install Atomik with composer, I have this error : Fatal error: Cannot redeclare class kintParser in /home/franck/www/atomik/vendor/raveren/kint/parsers/parser.class.php on line 3 I'm using php 5.5 and apache2.4

1 - Ready

Hi, I discovered Atomik few days ago and I LOVE it! Now, I'm making a website for my classmates, just a little web game, and I need to execute a...

Few grammatical, spelling or presentation errors corrected.

``` Atomik::set('app.routes', array( 'archive/:year/:month' => array( '@name' => 'archives', 'action' => 'archives/index', 'month' => 'all' ) ); echo Atomik::url('@archives', array('year' => 2014)); ``` Before fix : ``` archives/2014/:month ``` After...