This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $dictionary["MyModule"] = [ | |
| "table" => "mymodule", | |
| "audited" => true, | |
| "fields" => [ | |
| // Core module fields would follow here... | |
| ], | |
| "indices" => [ | |
| // Core module indexes would follow here... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hello world |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $dictionary['MyModule'] = [ | |
| 'table' => 'mymodule', | |
| 'audited' => true, | |
| 'fields' => [ | |
| // Core module fields would follow here... | |
| ], | |
| 'indices' => [ | |
| // Core module indexes would follow here... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $dictionary['MyModule'] = [ | |
| 'table' => 'mymodule', | |
| 'audited' => true, | |
| 'fields' => [ | |
| // Core module fields would follow here... | |
| ], | |
| 'indices' => [ | |
| // Core module indexes would follow here... |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*.log | |
| /*.php | |
| /*.json | |
| /*.swp | |
| /*.xml | |
| **/.DS_Store | |
| /LICENSE | |
| /pdf.php | |
| /image.php | |
| /install/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //Use an unlimited amount of memory, we probably shouldn't do this but that is how I roll | |
| ini_set('memory_limit', '-1'); | |
| //Our program allows us to skip over rows in the data file and only load a sub-set of rows | |
| if (count($argv) < 3 || ! is_numeric($argv[1]) || ! is_numeric($argv[2])) { | |
| echo "Usage php -f $argv[0] skip max" . PHP_EOL; | |
| echo " skip - number of rows to skip when processing" . PHP_EOL; | |
| echo " max - number of rows to import when processing" . PHP_EOL; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/php | |
| <?php | |
| /* | |
| * Copyright 2013 | |
| * Jeff Bickart | |
| * @bickart | |
| * jeff @ neposystems.com | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <img src="https://nepo.box.com/shared/static/d3wqfhyoaizu8146vlyc.png" /> | |
| <h3>Twitter: @bickart</h3> | |
| <h3>Twitter: @bickart</h3> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| * Created on Aug 27, 2012 | |
| * | |
| * Jeff Bickart | |
| * @bickart | |
| * NEPO Systems, LLC | |
| * | |
| * custom/Extension/application/Ext/TableDictionary/custom_indexes.php | |
| */ |
NewerOlder