// one to many result
{
"id": 1,
"first_name": "john",
"phones": [
{
"id": 1,
"number": "40939394"
}
This file contains 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
javascript:( | |
function(){ | |
var links = document.getElementsByClassName("bV"); | |
for(var i = 0; i < links.length; i++) | |
{ | |
var link = (links.item(i)); | |
if (link.text == 'View ticket') { | |
window.open(link.getAttribute('href')); | |
} else { | |
console.log('not expected' + link.text); |
This file contains 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
echo "mysql-server-5.5 mysql-server/root_password password root" | sudo debconf-set-selections | |
echo "mysql-server-5.5 mysql-server/root_password_again password root" | sudo debconf-set-selections | |
sudo apt-get update | |
sudo apt-get install -y \ | |
curl \ | |
vim \ | |
man-db \ | |
mysql-server \ | |
git \ | |
php5 \ |
This file contains 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 | |
$pairs = []; | |
$dataSet = []; | |
const SCHOOL_ID_COL = 0; | |
const GROUP_ID_COL = 1; | |
// load data | |
$fileName = __DIR__ . '/matching_problem.csv'; |
Your account at civihr has been activated.
You may now log in by clicking this link or copying and pasting it into your browser:
This file contains 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
{ | |
"siteUrl": "compucorp.civihrhosting.co.uk", | |
"siteName": "Compucorp", | |
"lastLoginByRole": { | |
"civihr_staff": "2012-04-23T18:25:43+0000", | |
"civihr_manager": "2012-04-23T18:25:43+0000", | |
"civihr_admin": "2012-04-23T18:25:43+0000", | |
"civihr_local_admin": "2012-04-23T18:25:43+0000", | |
"administrator": "2012-04-23T18:25:43+0000", | |
"custom_role": "2012-04-23T18:25:43+0000", |
This file contains 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 | |
interface FabricatorInterface { | |
/** | |
* @param array $params | |
* | |
* @return array | |
*/ | |
public function fabricate($params = []); |
These definitions are from the docblock comment on the DAO properties. A quick search for public $is_reserved
showed 10 entities with this property, but I will focus on these three for now.
is_reserved
: Is this a predefined system option group (i.e. it can not be deleted)?is_locked
: A lock to remove the ability to add new options via the UI.
OlderNewer