* @link https://www.bitweaver.org/wiki/function_smartlink function.smartlink
*/
/**
* Smarty {smartlink} function plugin
*
* Type: function
* Name: smartlink
* Input:
* - ititle (required) words that are displayed
* - iatitle (optional) alternative text for the link title (rollover, etc.)
* - ianchor (optional) set the anchor where the link should point to
* - isort (optional) name of the sort column without the orientation (e.g.: title)
* - isort_mode(optional) this can be used to manually pass the sort mode to smartlink
* overrides the value given in $_REQUEST['sort_mode'], which is the default
* - iorder (optional) if set to asc or desc, it sets the default sorting order of this particular column
* asc is default
* - idefault (optional) if set, it will highlight this link if no $isort_mode is given
* this should only be set once per sorting group since it represents the default sorting column
* - itra (optional) if present then don't translate
* - itype (optional) can be set to
* url --> outputs only url
* li --> outputs link as <li><a ... ></li>
* - ionclick (optional) pass in any actions that should occur onclick
* - ibiticon (optional) if you want to display an icon instead of text use ibiticon
* format is: '<ipackage>/<iname>'
* e.g.: 'liberty/edit'
* - iforce (optional) pass iforce parameter through to biticon
* - iurl (optional) pass in a full url
* - ifile (optional) set the file where the link should point (default is the current file)
* - ipackage (optional) set the package the link should point to (default is the current package)
* - icontrol (optional) the hash sent out by postGetList()
* - * (optional) anything else that gets added to the pile of items is appended using &$key=$val
* - ihash (optional) you can pass in all the above as an array called ihash or secondary * items common to all links
* Output: any kind of link. especially useful when it comes to links used to sort a table, due to the simplified syntax and loss of cumbersome if clauses
* also useful if the you want to display an icon as link since smartlink takes biticon parameters
* Example - {smartlink ititle="Page Name" isort="title"}
* - {smartlink ititle="Page Name" isort="title" iorder="desc" idefault=1}
* setting iorder and idefault here, makes this link sort in a descending order by default (iorder)
* and it is highlighted when $isort_mode ( or $_REQUEST['sort_mode'] ) is not set (idefault)
* Note Be careful if ititle is generated dynamically since it is passed through KernelTools::tra() by default, use itra to override
*/
function smarty_function_smartlink( $pParams, &$pSmarty=NULL ) {
global $gBitSystem;
if( !empty( $pParams['ihash'] ) ) {
$hash = array_merge( $pParams['ihash'], $pParams );
$hash['ihash'] = NULL;
} else {
// maybe params were passed in separately
$hash = &$pParams;
}
if( !isset( $hash['ititle'] ) ) {
return 'You need to supply "ititle" for {smartlink} to work.';
}
// work out what the url is
if( !empty( $hash['iurl'] ) ) {
$url = $hash['iurl'];
} elseif( !empty( $hash['ifile'] ) ) {
$url = !empty( $hash['ipackage'] )
? ( $hash['ipackage'] == 'root'
? $url = BIT_ROOT_URL.$hash['ifile']
: constant( strtoupper( $hash['ipackage'] ).'_PKG_URL' ).$hash['ifile'] )
: constant( strtoupper( $gBitSystem->getActivePackage() ).'_PKG_URL' ).$hash['ifile'];
} else {
$url = $_SERVER['SCRIPT_NAME'];
}
$url_params = NULL;
if( isset( $hash['itra'] ) && !empty( $hash['itra'] ) ) {
// present and non-zero value
$ititle = $hash['ititle'];
$iatitle = empty( $hash['iatitle'] ) ? $ititle : $hash['iatitle'];
} else {
$ititle = KernelTools::tra( $hash['ititle'] );
$iatitle = empty( $hash['iatitle'] ) ? $ititle : KernelTools::tra( $hash['iatitle'] );
}
$atitle = 'title="'.$iatitle.'"';
// if isort is set, we need to deal with all the sorting stuff
if( !empty( $hash['isort'] ) ) {
$isort_mode = $hash['isort_mode'] ?? ($_REQUEST['sort_mode'] ?? NULL);
$sort_asc = $hash['isort'].'_asc';
$sort_desc = $hash['isort'].'_desc';
$atitle = 'title="'.KernelTools::tra( 'Sort by' ).": ".$iatitle.'"';
$url .= '?';
$url_params .= 'sort_mode=';
// check if we have to highlight this link, when $isort_mode isn't set
if( isset( $hash['idefault'] ) && empty( $isort_mode ) ) {
$isort_mode .= $hash['isort'].'_'.( $hash['iorder'] ?? 'asc' );
}
// check if sort_mode has anything to do with our link
if( $sort_asc == $isort_mode ) {
$sorticon = [
'ipackage' => 'icons',
'iname' => 'view-sort-ascending',
'iexplain' => 'ascending',
'iforce' => 'icon',
];
$url_params .= $sort_desc;
} elseif( $sort_desc == $isort_mode ) {
$sorticon = [
'ipackage' => 'icons',
'iname' => 'view-sort-descending',
'iexplain' => 'descending',
'iforce' => 'icon',
];
$url_params .= $sort_asc;
} else {
$url_params .= $hash['isort'].'_'.( $hash['iorder'] ?? 'asc' );
}
}
$ignore = [ 'iatitle', 'icontrol', 'isort', 'ianchor', 'isort_mode', 'iorder', 'ititle', 'idefault', 'ifile', 'ipackage', 'itype', 'iurl', 'ionclick', 'ibiticon', 'booticon', 'biticon', 'iforce', 'itra' ];
// append any other paramters that were passed in
foreach( $hash as $key => $val ) {
if( !empty( $val ) && !in_array( $key, $ignore ) ) {
// normally the key is a string
if( !is_array( $val ) ){
$url_params .= empty( $url_params ) ? '?' : '&';
$url_params .= $key."=".$val;
// but sometimes it can be an array
}else{
foreach( $val as $v ){
$url_params .= empty( $url_params ) ? '?' : '&';
$url_params .= $key."[]=".$v;
}
}
}
}
if( !empty( $hash['icontrol'] ) && is_array( $hash['icontrol'] ) ) {
$sep = empty( $url_params ) ? '?' : '&';
$url_params .= !empty( $hash['icontrol']['current_page'] ) ? $sep.'list_page='.$hash['icontrol']['current_page'] : '';
$sep = empty( $url_params ) ? '?' : '&';
$url_params .= !empty( $hash['icontrol']['find'] ) ? $sep.'find='.$hash['icontrol']['find'] : '';
if( !empty( $hash['icontrol']['parameters'] ) && is_array( $hash['icontrol']['parameters'] ) ) {
foreach( $hash['icontrol']['parameters'] as $key => $value ) {
if( !empty( $value )) {
$sep = empty( $url_params ) ? '?' : '&';
$url_params .= $sep.$key."=".$value;
}
}
}
}
// encode quote marks so we not break href="" construction
$url_params = preg_replace('/"/', '%22', $url_params ?? '');
if( isset( $hash['itype'] ) && $hash['itype'] == 'url' ) {
$ret = $url.$url_params;
} else {
$ret = '';
// if we want to display an icon instead of text, do that
if( isset( $hash['biticon'] ) || isset( $hash['booticon'] ) ) {
$iname = $hash['biticon'] ?? $hash['booticon'];
$biticon = [
'ipackage' => 'icons',
'iname' => $iname,
'iexplain' => $hash['ititle'],
];
if( !empty( $hash['iforce'] ) ) {
$biticon['iforce'] = $hash['iforce'];
}
$ret .= smarty_function_biticon( $biticon );
} elseif( isset( $hash['ibiticon'] ) ) {
$tmp = explode( '/', $hash['ibiticon'] );
if( !empty( $tmp[2] )) {
$tmp[1] .= "/".$tmp[2];
}
$ibiticon = [
'ipackage' => $tmp[0],
'iname' => $tmp[1],
'iexplain' => $hash['ititle'], // use untranslated ititle - biticon has a KernelTools::tra()
];
if( !empty( $hash['iforce'] ) ) {
$ibiticon['iforce'] = $hash['iforce'];
}
$ret .= smarty_function_biticon( $ibiticon );
} else {
$ret .= $ititle;
}
if( isset( $sorticon ) ) {
$ret .= ' '.smarty_function_biticon( $sorticon );
}
$ret .= '';
}
if( isset( $pParams['itype'] ) && $pParams['itype'] == 'li' ) {
$ret = '