'teachPress 2021', 'description' => 'A new mobile friendly 4 line style template for publication lists.', 'author' => 'Michael Winkler', 'version' => '1.0', 'button_separator' => ' | ', 'menu_label_tags' => __('Tags') . ': ', 'menu_label_links' => __('Links','teachpress') . ': ', 'meta_label_in' => __('In','teachpress') . ': ', 'citation_style' => 'teachPress' ); } /** * Returns the body element for a publication list * @param string $content The content of the publication list itself * @param array $args An array with some basic settings for the publication list * @return string */ public function get_body ($content, $args = array() ) { return '
' . $content . '
'; } /** * Returns the headline for a publication list or a part of that * @param type $content The content of the headline * @param type $args An array with some basic settings for the publication list (source: shortcode settings) * @return string */ public function get_headline ($content, $args = array()) { $id = ( isset( $args['id'] ) ) ? $args['id'] : $content; return '

' . $content . '

'; } /** * Returns the headline (second level) for a publication list or a part of that * @param string $content The content of the headline * @param array $args An array with some basic settings for the publication list (source: shortcode settings) * @return string */ public function get_headline_sl ($content, $args = array()) { $id = ( isset( $args['id'] ) ) ? $args['id'] : $content; return '

' . $content . '

'; } /** * Returns the container for publication images * @param string $content The image element * @param string $position The image position: left, right or buttom * @param string $optional_attributes Optional attributes for the framing container element * @return string */ public function get_image($content, $position, $optional_attributes = '') { return '
' . $content . '
'; } /** * Returns the single entry of a publication list * * Contents of the interface data array (available over $interface->get_data()): * 'row' => An array of the related publication data * 'title' => The title of the publication (completely prepared for HTML output) * 'images' => The images array (HTML code for left, bottom, right) * 'tag_line' => The HTML tag string * 'settings' => The settings array (shortcode options) * 'counter' => The publication counter (integer) * 'all_authors' => The prepared author string * 'keywords' => An array of related keywords * 'container_id' => The ID of the HTML container * 'template_settings' => The template settings array (name, description, author, citation_style) * * @param object $interface The interface object * @return string */ public function get_entry ($interface) { $class = ' tp_publication_' . $interface->get_type(''); $s = '
'; $s .= $interface->get_number('
', '.
'); $s .= $interface->get_images('left'); $s .= '
'; $s .= $interface->get_author('

', '

'); $s .= '

' . $interface->get_title(); $award = $interface->get_award(true); if ($award != ""){ $s .= ' ' . $award; } $s .= ' ' . $interface->get_type() . ' ' . $interface->get_label('status', array('forthcoming') ) . '

'; $s .= '

' . $interface->get_meta() . '

'; $s .= '

' . $interface->get_menu_line() . '

'; $s .= $interface->get_infocontainer(); $s .= $interface->get_images('bottom'); $s .= '
'; $s .= $interface->get_images('right'); $s .= '
'; return $s; } }