Данный список приведен исключительно в ознакомительных целях, чтобы вы получили представление о моих предпочтениях. Он не лишает вас права проявить фантазию и самим решить, что я хочу) Читая эту строку вы соглашаетесь с условиями лицензионного соглашения, согласно которому, после смерти ваша душа отправиться на съедение Летающему Макаронному Монстру.
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 | |
| // География задачи | |
| const COAST_A = 'Coast A'; | |
| const COAST_B = 'Coast B'; | |
| /** | |
| * Class Log | |
| * Класс для создания сообщений | |
| */ |
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 | |
| require_once 'base.php'; | |
| ini_set('error_reporting', E_ALL); | |
| ini_set('display_errors', 'on'); | |
| $family = array(); | |
| $family[] = new Adult('Homer'); | |
| $family[] = new Adult('Marge'); | |
| $family[] = new Child('Bart'); | |
| $family[] = new Child('Lisa'); |
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 | |
| /** | |
| * Модель для редактирования комнат на планировках - добавление, удаление, разделение и объединение комнат | |
| */ | |
| class ConfsEditForm extends CFormModel | |
| { | |
| public $price; | |
| public $date; | |
| public $floor_id; |
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
| function sys_update() | |
| { | |
| make_xedit(); | |
| make_slider(); | |
| make_ajax_link(); | |
| make_ajax_form(); | |
| make_dialog_form(); | |
| $('.numeric').ForceNumericOnly().removeClass('numeric'); | |
| $('.datepicker').datepicker({format: 'yyyy-mm-dd'}).removeClass('.datepicker'); | |
| $('.selectpicker').selectpicker(); |
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
| CDS: | |
| - Товары: | |
| id: 1 | |
| name: "Молоток" | |
| count: 1 | |
| county: "Россия" | |
| producer: "ООО Молотки" | |
| id: 101 | |
| name: "Комплетк пастельного белья" |
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
| CDS: | |
| - Товары: | |
| id: 1 | |
| name: "Молоток" | |
| count: 1 | |
| county: 1 | |
| producer: 3 | |
| id: 101 | |
| name: "Комплетк пастельного белья" |
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 | |
| namespace HLService\LightImport\Adapters { | |
| use HLService\LightImport\Helpers\Status; | |
| use HLService\LightImport\Helpers\File; | |
| use PHPExcelReader\SpreadsheetReader; | |
| class Sinerghenta | |
| { | |
| protected static $url = '{mail.nic.ru:143}'; |
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
| public function actionAllTimeoutChange() | |
| { | |
| $companiesPath = Yii::app()->getBasePath() . '/companies/*'; | |
| $dirs = array_filter(glob($companiesPath), 'is_dir'); | |
| foreach ($dirs as $dir) { | |
| $companyName = ''; | |
| if (preg_match('/([^\/]+)$/', $dir, $matches)) { | |
| try { |
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
| public function actionRoles() | |
| { | |
| return $this->exportAll(Role::find()->all(), 0); | |
| } |
OlderNewer