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
<Directory /var/www/pool/public> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
# AuthType Basic | |
# AuthName "Restricted" | |
# AuthBasicProvider file | |
# AuthUserFile /home/ubuntu/users | |
# Require user karirotest |
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
Uygulamayı henüz indirmedim ama ekran görüntülerinden gördüğüm kadarı ile dipnotların ekranda verilmesi, kullanım kolaylığını olumsuz etkiler. Bunun yerine, okuyucu arzu ettiği takdirde dipnotlara ulaşabilmeli ve bu dipnotlar açılır bir ekranda görüntülenmeli. Bu hususta yıllardır emek veren Hasenat isimli programın tecrübelerinden, kullanıcı deneyimlerinden istifade edilebilir. Bir mobil uygulama için fiyatı da yüksek buldum. | |
Başarılar dilerim. Selamlar. |
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
testPassword = function (password) { | |
var minLengthMet = password.length >= 8, | |
hasUpper = (/[A-Z]+/).test(password), | |
hasLower = (/[a-z]+/).test(password), | |
hasNumber = (/[0-9]+/).test(password), | |
letterBegin = (/^[A-Za-z]/).test(password), | |
noSpecials = !(/[^A-Za-z0-9]+/).test(password); | |
logIndividualTests(minLengthMet, hasUpper, hasLower, hasNumber, letterBegin, noSpecials); | |
return minLengthMet && hasUpper && hasLower && hasNumber && letterBegin && noSpecials; | |
}; |
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
<form id="signUpForm" method="post" class="form-horizontal"> | |
<div id="sign_up_wrapper" class="clean_form in_landing clearfix hidden_on_mobile"> | |
<div class="via_form"> | |
<div id="signup_form" class="" data-view="CleanForm" data-error_message=""> | |
<form accept-charset="UTF-8" action="/candidate" class="simple_form candidate" data-km-params="{"sendFormFields": false}" data-km="click_landing_create_account_submit" id="new_candidate" method="post"> | |
<div class="small_inputs"> | |
<div class="input string optional first_name"><label class="string optional" for="firstname"> Ad Soyad</label> | |
<input id="firstname" name="firstname" placeholder="Ad Soyad *" required size="50" type="text"></div> |
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
var tmp = getModel().events.items(); | |
$.each(tmp, function(key, value){ | |
tmp[key].id=parseInt(tmp[key].id); | |
tmp[key].projectId=parseInt(tmp[key].projectId); | |
tmp[key].expertId=parseInt(tmp[key].expertId); | |
tmp[key].isAllDay=parseInt(tmp[key].isAllDay); | |
tmp[key].start = kendo.parseDate(new Date(tmp[key].start)); | |
tmp[key].end = kendo.parseDate(new Date(tmp[key].end)); | |
tmp[key].title=tmp[key].title; |
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 | |
Route::group(array('module'=>'Applicant','namespace' => 'Modules\Applicant\Controllers','middleware'=>'AdminMiddleware'), function() { | |
//what you want to do. | |
}); |
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 | |
Route::group(array('module'=>'Admin','namespace' => 'Modules\Admin\Controllers'), function() { | |
Route::get('admin/dashboard',function(){ | |
return view("admin::test"); | |
}); | |
}); |
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 | |
Route::group(array('module'=>'Admin','namespace' => 'Modules\Admin\Controllers'), function() { | |
//Your routes belong to this module. | |
}); |
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 App\Modules; | |
class ServiceProvider extends \Illuminate\Support\ServiceProvider | |
{ | |
public function boot() | |
{ | |
$modules = config("module.modules"); | |
while (list(,$module) = each($modules)) { | |
if(file_exists(__DIR__.'/'.$module.'/routes.php')) { | |
include __DIR__.'/'.$module.'/routes.php'; |
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 | |
return [ | |
'modules'=>array( | |
"admin", | |
"applicant", | |
"employer", | |
"home", | |
"auth" | |
), | |
]; |