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 | |
// How to create horizontal tabs programmatically in Drupal 8, requires Field Group module | |
$form = array(); | |
$form['my_field'] = array( | |
'#type' => 'horizontal_tabs', | |
'#tree' => TRUE, | |
'#prefix' => '<div id="unique-wrapper">', | |
'#suffix' => '</div>', | |
); | |
$items = array( |
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
#!/bin/sh | |
apt-get install unzip | |
apt-get -y install alien | |
mkdir isdct | |
cd isdct | |
wget https://downloadmirror.intel.com/23931/eng/DataCenterTool_3_0_0_Linux.zip | |
unzip DataCenterTool_3_0_0_Linux.zip | |
alien --to-deb isdct-3.0.0.400-15.x86_64.rpm | |
dpkg -i isdct_3.0.0.400-16_amd64.deb |